Lines Matching full:run
6 * A test case defines the fixture to run multiple tests. To define a test case<br>
35 * Once the methods are defined you can run them. The framework supports
36 * both a static type safe and more dynamic way to run a test.
45 * test.run();
50 * to be run.
53 * test.run();
55 * The tests to be run can be collected into a TestSuite. JUnit provides
56 * different <i>test runners</i> which can run a test suite and collect the results.
58 * point to get a test to run or it will extract the suite automatically.
90 * Counts the number of test cases executed by run(TestResult result).
104 * A convenience method to run this test, collecting the results with a
109 public TestResult run() {
111 run(result);
117 public void run(TestResult result) {
118 result.run(this);
134 * Override to run the test and assert its state.