ContributionsMost RecentMost LikesSolutionsRe: [R]HOW TO STOP working whole testSuite in testSuite-setupScrSo is there any update on this?Re: soapUI web service test never failsThis may be an obvious question, but do you have any assertions set up on the test step in question? If not then how would it know to fail? Try adding a simple assertion that checks the content of a positive response.Re: How to increment a parameter value by 1 for each requestTry this......set up a project property, so that it's value is a random number generator e.g mobileNo = ${=(int)(Math.random()*10000000) and then set the the parameter in the xml to this project property i.e ${#Project#mobileNo}Re: delete propertiesCan't you just do: if ( (!name.toString().startsWith("cseq")) || (!name.toString().startsWith("callid")) || (!name.toString().startsWith("contactUri")) || (!name.toString().startsWith("nc")) || (!name.toString().startsWith("nonce")) || (!name.toString().startsWith("status")) ) { testCase.removeProperty(name); }Re: Getting Hermes Setup for Validating JMS messagesDoes this not help you? http://www.soapui.org/JMS/getting-started.htmlRe: Creating groovy class to be used across test casesThis post was of great help to me for just creating the class within soapUI viewtopic.php?f=1&t=15744&p=40600&hilit=class#p40600Re: set hermes jms home in global preferencesI had no end of problems trying to get Hermes and maven working together: viewtopic.php?f=1&t=16923&p=39661&hilit=maven+hermes#p39661 In the end I dropped using hermes at all and wrote my own jms producer and consumer groovy scriptsRe: Running single testsuite from maven cmd lineThanks I figured out that putting this in the pom: <testSuite>${testSuite}</testSuite> And then use the following to run a single testsuite -DtestSuite="testSuiteName" but not providing this would still run all of the testsuites thanksRe: Could not initialize class groovy.net.http.ParserRegistryI am also having this same issue, is anyone able to help?Running single testsuite from maven cmd lineHello, I am trying to figure out how to run just one of the testsuites in my project from the maven cmd line. I have tried putting the testSuite property in the pom, but am having no joy passing the required testsuite name on the cmd line. thanks