Forum Discussion

seasagar's avatar
seasagar
New Contributor
11 years ago

Generate consolidated report

Hi All,

Is there any way we can generate consolidated report for all projects in one fill (PDF or HTML). I am able to genrerate single file for all project using maven but client need single report for all projects...


Please help!!

Thanks...
  • redfish4ktc2's avatar
    redfish4ktc2
    Super Contributor
    Hi can you provide your maven configuration please?
    AFAIK, SoapUI does not provide such a feature. The root element in soapui is the project, not the workspace nor a collection of project
  • seasagar's avatar
    seasagar
    New Contributor
    Hi,
    Below is the script I am using to generate pdf for individual projects..
    call %SOAPUI_HOME%\testrunner.bat -FPDF -f %OUTPUT_FOLDER%/test -GDatapath=%GLOBAL_PATH% 
    -R"Project Report" %PROJECT_FOLDER%/test.xml

    call %SOAPUI_HOME%\testrunner.bat -FPDF -f %OUTPUT_FOLDER%/test1 -GDatapath=%GLOBAL_PATH%
    -R"Project Report" %PROJECT_FOLDER%/test1.xml


    this two scripts gets call when I execute maven install command..parameter inside %% tag are input parameter from pom.xml. Sorry I cannot provide pom.xml as it is on client machine...

    Above script will generate two pdf files for two projects...but requirement is to generate one consolidated report for all projects...


    Is there any script (third party script) which can help to generate one pdf for all projects?