-
Type:
New Feature
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: junit-plugin
Background
When we use JUnit for acceptance testing, sometimes lot of tests are failed due to the same problems. This happens especially when we integrate big changes. For example, 10 causes can make 100 tests failed. In this circumstance, we need to easily find which tests are failed by which causes. It would help us to quickly report failed tests.
Suggestion
- Group failed tests by error
- Failed tests with the same problem might have similar error message.
For example
| Error | Failed Tests |
|---|---|
| Some Exception | test1 |
| test2 | |
| test3 | |
| Some Exception2 | testA |
| testB |