Hey,
i found the problem.
My cmd script looked like this:
@echo off
cls
setlocal
path %path%;D:\tools\eviware\soapUI-Pro-3.5.1\bin
cmd.exe /C testrunner.bat -R"TestSuite Report" -fD:\_export\ -FPDF "D:\_xml\test.xml"
endlocal
There is one parameter missing that is needed to create a PDF Report.
-s"TestSuite-Name"I didn't add this one because the ambition of the script file was to run all xml soapUI projectfiles within a folder:
dir %XMLPath%*.xml
for %%k in (%XMLPath%*.xml) do (
@echo %%k
cmd.exe /C testrunner.bat -h"%TestSystem%" -R"TestSuite Report" -f%ReportPath% -FPDF "%%k"
)
All TestSuites of each project are tested but i don't see a possibility to set the changing TestSuitename so that a Report can be created.
Thanks a lot for your help.
Jonas