ContributionsMost RecentMost LikesSolutionsRe: Custom Report for TestSuite with DataSink I have a similar requirement but I need to reference the Datasink Teststep data of a specific testsuit, testcase at the project level report. Please, can you tell me how can I do that? I tried the above code but does not work. Thanks Re: Data driven tests reporting nmrao thanks for the suggestion, I am reviewing them and trying out ways to implement a solution. I will post to this group once I have a solution. Specifically.... I am trying out a solution using "datasink" to capture the test steps status while the test case loops through the data source and execute the test steps. Datasink type subreport, which can later be used to generate the test case report. The challenge is each row from datasource is a test case (datasource loop 1) with multiple test steps (data source loop 2), I am trying to capture the test results for each test step (loop 2) and roll that status up to get the final status of the test case row (loop 1) in the datasource, which is not easily available. I will try to see if I can create a simple project and upload it here so that the community can see the challenge and provide some input. Thanks sas Re: Generating Test Results for a Data Driven Test nmrao I want to add to my earlier response... I think, you can write a single test case in SOAP-UI that is highly parameterized and templatized and that can use data from a data source to run different type types of tests. Essentially, you are writing a test engine and fueling it with data. That's the power of data-driven testing. Now, one can say that if one test fails then we have to report as a test case as failed for the whole data source. I think end-users should be able to decide how to deal with the failed tests in the data source. Maybe there is flexibility in generating the test data for the data source... few thoughts... Re: Generating Test Results for a Data Driven Test I get that, but I should be able to customize the report to show what data is being tested in the iteration from the data source. In that case, the question is how can I customize the report to show the data element on the reports? Data driven tests reporting I have written data-driven tests (excel file data source) with one SOAPUI test case, This test case loops through each excel row (which is a test case) iteratively and executes the test steps. However, when I look at the report it shows one test case was executed with 'n' number of test steps. For example: My SOAP-UI test has 4 test steps. Test Step 1 - Groovy Script Test Step 2 - POST Test Step 3 - GET (This step has multiple assertions on Response) Test Step 4 - DELETE Say, My excel data source has 3 test cases, say (testcase.xlsx) file looks like this. TestCase Parm1 Parm2 This is Test Case 1 P1-A P2-A This is Test Case 2 P1-B P2-B This is Test Case 3 P1-C P2-C and as my SOAP-UI Test is looping and executing these tests... I want my report to look like this... Test Case 1 test step 1 was executed - Passed - in ##ms test step 2 was executed - Passed - in ##ms test step 3 was executed - Passed - in ##ms Assertion 1 - Passed Assertion 2 - Passed test step 4 was executed - Passed - in ##ms Test Case 2 test step 1 was executed - Passed - in ##ms test step 2 was executed - Passed - in ##ms test step 3 was executed - Passed - in ##ms Assertion 1 - Passed Assertion 2 - Passed test step 4 was executed - Passed - in ##ms Test Case 3 test step 1 was executed - Passed - in ##ms test step 2 was executed - Passed - in ##ms test step 3 was executed - Passed - in ##ms Assertion 1 - Passed Assertion 2 - Passed test step 4 was executed - Passed - in ##ms How can I get report output for data-driven tests? Your help is much appreciated. Thanks Re: Generating Test Results for a Data Driven Test I have a similar use case. Wondering what was the resolution? Re: Data driven test report Was there resolved? If so can you please share. I have similar use case. Re: Junit-Style Report | Runs same Test Case with diffident set of Test Data. No, the question is related to reporting on Data-Driven Test cases by each iteration when the current report only generates only as one test case. I have a similar use case, and I am looking through all the similar questions on the topic for the last few years, surprisingly, no topic provides a resolution for such a use case. Re: SOAP UI data driven testsuit's custom Junit report using plugin Do you have a resolution to this question? I have a similar use case.