> For the complete documentation index, see [llms.txt](https://n-saikiran.gitbook.io/soapuingpro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://n-saikiran.gitbook.io/soapuingpro/continuous-integration/5.2-run-tests-from-jenkins.md).

# 5.2 CreateTests from Jenkins

Creation of tests in the form of free style projects.

***Steps to create tests***

1. Create new job from Jenkins
2. Navigate to Dashboard Click on New Item

![](https://3366762497-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4S6_S5IqCkozmHtjBa%2F-M4S6bk0ebMCh4xLUKaP%2F-M4S6jGEHLavcYSunmWr%2FCreateProject.png?generation=1586405260516926\&alt=media)

1. Go to Build section. Select Execute Windows batch command

![](https://3366762497-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4S6_S5IqCkozmHtjBa%2F-M4S6bk0ebMCh4xLUKaP%2F-M4S6jGGBZCopDPW2Ymv%2FCreateProject_2.png?generation=1586405260909080\&alt=media)

**Enter the following commands into it**

```
cd C:\Program Files\SmartBear\ReadyAPI-1.9.0\bin
testrunner.bat -FPDF -f "C:\Test\Reports" -R"ProjectReport" C:\Test\<projectName>.xml
```

If you want to rename the report from Project report to a desired name it is not possible directly in soapui ng pro. However, we can create an additional build step in jenkins to rename using the following command wherein the %ReportName% depicts the String parameter used in Jenkins project.

```
cd C:\Test\Reports
rename "ProjectReport.pdf" "%ReportName%.pdf"
```

Save the project.
