ContributionsMost RecentMost LikesSolutionsRe: SoapUI Pro :: Test Case Reports :: How display test cases that passHi Anastasia, Can those reports be generated in Jenkins using Test Runner? Right now I have it setup so that anyone in my team can kick off SoapUI Test Cases inside Jenkins. Upon completion the reports are generated and exported to a web server for everyone along with emailed links. Can Data Export or Printable report be generated using the command line?SoapUI Pro :: Test Case Reports :: How display test cases that pass Hi, I'm generating HTML/JUnit Test Case reports using Jenkins. My report returns failures, errors, and Success Rate. Refer to attached. However, this report can only tell me about test cases that failed. I can see which endpoints fail but not which endpoints passed. Is there a way to see the test cases that PASSED. I just want to be able to report both pass AND failed results. I'm using SoapUI Pro. Re: SoapUI :: Get Test Step Count for all test cases in a project Great! Thank you groovyguy . This is just what I needed. SoapUI :: Get Test Step Count for all test cases in a project Hi, my name is Ali, I'm new to the forums but been using SoapUI/ReadyAPI for over a year now. I'm gonna jump straight to my question. I need help with a script to get a count of all the test steps in a projects across all test suites and test cases. I did a search but found the groovy script for the test step count for only one test case. I have over 100 test cases nested in over a dozen test suites so it's not ideal to individually drill down into each test case. The following code gets the count test steps in 1 test case: def totalSteps = testRunner.testCase.getTestStepCount() for(i=0; i<totalSteps; i++) { def flag = testRunner.testCase.getTestStepAt(i).disabled if(flag == "false") { counter = counter + 1 } } log.info "Total Test Step: " + totalSteps Solved