Page History
...
JUnit is a testing framework for Java, mostly focused on for unit testing.
It is also used for writing integration and acceptance tests, making use of other libraries such as Selenium.
...
In JUnit, you have Tests and (Test) Suites. A Suite is a way of aggregating a group of tests together, along with their results. This applies not just to the original Java’s JUnit but also for other implementations that generate the JUnit XML report.
In Java, Tests are created within a Test Case class, which will contain the Tests, implemented as class methods (and properly annotated).
...
If a Test already exists with the same Generic Test Definition, then it a duplicate is not created again.
Test Cases are imported to a new (or user-specified) Test Execution in the context of some project, along with their respective execution results.
...
Note: Test Cases with the status FAIL may have an error/failure message, which can be seen in the Test Run screen, under the Results section.
...
Condition | Overall status of the Test Run |
---|---|
If all the mapped results of the Test Case was were PASS | PASS |
If any of the mapped results of the Test Case was FAIL | FAIL |
Other cases | TODO |
...