File: TC.java

package info (click to toggle)
eclipse-jdt-ui 4.10-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 82,480 kB
  • sloc: java: 694,753; xml: 12,788; jsp: 33; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (4)
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
26
27
28
29
package p1;

import static java.lang.Math.PI;

import java.util.List;

public class TC {
	public void runBare() {
	}

	/**
	 * Runs the test
	 * @param tr TODO
	 */
	protected void run(final TR tr) {
		List<Integer> integers= null;
		tr.startTest(this);
		P p= new P() {
			public void protect() throws Throwable {
				runBare();
				tr.handleRun(TC.this);
				double d= PI;
			}
		};
		tr.runProtected(this, p);
	
		tr.endTest(this);
	}
}