Forum Discussion
- tristaanogreEsteemed Contributor
What I do is use a combination of Log.AppendFolder and Log.PopFolder. Put the first at the beginning of your loop and the second at the end of the loop. What you'll get in your test log, then, is 100 sub-items in the log tree to represent your 100 test cases.
- vicsilvaNew Contributor
Yes,I actually did that, but I also want to reflect on graphs (pass and fail) and number of test cases in report like when you run a normal set of test cases in test complete.
- tristaanogreEsteemed Contributor
No, there is not, not natively in TestComplete. Those graphs and charts are built off of the test items that are done under "Organize Tests". So, if you only have 1 test item, you only see one item in those charts. To get those kinds of stats and charts in a more custom framework environment, you'll need to write custom code to output the statistics. Perhaps write pass/fail etc. stats to an SQL database, run a query, and then have a mini-front end web page that converts the query results to a chart.