Forum Discussion

jonv's avatar
jonv
Occasional Contributor
8 years ago

TestRunner.bat TestSuite Properties

Hi,

 

Is it possible to set the testsuite custom properties via the command line (TestRunner.bat) ?

 

We have our end points stored at this level and need to alter them per environment.

 

I have tried -P but this looks to be a level above at the project level.

 

Thanks

1 Reply

  • nmrao's avatar
    nmrao
    Champion Level 3

    Yes, it is possible to do so, here is excerpt from SoapUI's documentation:

    ----

    An extended possibility to override/set properties at the project/testsuite/testcase/mockservice level is also available by adding a

    soapui.properties.=pathtopropertiesfile

     

    value to the global or system properties, where shortened-name-of-object is the name of the corresponding object with only characters. For example if you have a TestSuite in your project named "TestSuite 1", you can set

     

    -Dsoapui.properties.TestSuite1=testsuite1props.properties

     

    which will load the properties in the specified file ("testsuite1props.properties") into the "TestSuite 1" TestSuite properties (please note that any TestSuite names "TestSuite 1" in any of your projects will be affected).

    ----

     

    So, the commad-line apears as:

    testrunner.bat/sh -Dsoapui.properties.TestSuite1=testsuite1props.properties [and the other options currently that are in use]