Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 47e5ad3b374ff9a7c8cef6321595b11823b965b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package p1;
public enum TR implements P {
	PASSED, FAILED;
	/**
	 * Runs the test
	 * @param test the test to run
	 * @deprecated Use {@link p1.TC#run(p1.TR)} instead
	 */
	protected void run(final TC test) {
		test.run(this);
	}

	void handleRun(TC test) {
	}

	void runProtected(TC test, P p) {
	}

	void endTest(TC test) {
	}

	void startTest(TC test) {
	}

}

Back to the top