TestStatistics stats = testStatisticsProvider.statisticsForTests(With.title(testOutcome.getTitle())); or TestStatistics stats = testStatisticsProvider.statisticsForTests(With.tag("A story)); Then, you can obtain various statistics about the test (or group of tests): Double passRateForAllTests = stats.getOverallPassRate(); Double recentPassRate = stats.getPassRate().overTheLast(5).testRuns();
| |
| |
| |