ContributionsMost RecentMost LikesSolutionsPerformance test report options?1) the statistics report generated by the load / performance test spit out a summary / averages for the run. Are there any options that would allow for me to get the details - the stats for each run? 2) are there any other options for generating the reports that might be interesting? The guide refers to setting options for the report, but not sure where to find what I can pass here?Re: Passing properties to the test project via the command line runnerproject setupRe: Passing properties to the test project via the command line runnerDo you think this is a bug?Re: 2 way SSL?anyone know the answer to this?Re: updating endpoint dynamicallyUsha, the way the I am accomplishing this is to create a test case, and run it multiple times from command line (in my case from ant), passing in the host name that I want to execute against.2 way SSL?Does soapui support 2 way ssl for either sending or mocking?Re: Passing properties to the test project via the command line runnerI tried this but still no luck - still comes back blankRe: Passing properties to the test project via the command line runnerI just tried on 3.5 as well, same issue. "C:\Program Files (x86)\eviware\soapUI-Pro-3.5\bin\loadtestrunner.bat" -sDocQueryLoadTestSuite -cDocQuery-ThreeDocuments -n1 -m10 -r -fResults -Pk1=v1 -Pk2=v2 C:\Projects\nhinc\Current\Product\IntegrationTest\PerformanceTest\LoadTestWithLightWeightAdapterComponents.xmlPassing properties to the test project via the command line runnerIf I kick off a test using the command line runner (i.e. loadtestrunner.bat), the documentation [http://www.soapui.org/userguide/commandline/loadtestrunner.html] indicates that I can set a project property using the -P parameter. I did the following: "C:\Program Files (x86)\eviware\soapUI-Pro-3.0.1\bin\loadtestrunner.bat" LoadTestWithLightWeightAdapterComponents.xml -n1 -m10 -r -fResults -Ppropertyname=value I would think I should be able to read the property using this syntax: log.info("read commandline value = " + project.getPropertyValue("propertyname") ); But my log indicates that the value is null: 2010-04-08 11:52:59,197 INFO [log] read commandline value = null Is my thinking correct on how to use this? Something that I am missing?Re: Issue with context.findProperty using load test runningIf I understand, the method you propose would find the property if you know where it is (i.e. it is in the scope of the test case) where this method traverses several locations (context.getProperty, then testCase.getPropertyValue, then test suite, then project). Unless I am mistaken, there is not an existing soapui method that does this, right? delegate.getProperty(propertyName) ?: delegate.testCase.getPropertyValue(propertyName) ?: delegate.testCase.testSuite.getPropertyValue(propertyName) ?: delegate.testCase.testSuite.project.getPropertyValue(propertyName) (the other thing that I didn't mention on this post is that this was a simplified version of the true use of it - there really is a desire to find properties at various levels to allow for optional override of values)