OSDN Git Service

8b4a9525596659edf865ce91c4b53fec8394c51e
[mikutoga/Pmd2XML.git] / src / test / java / testdata / TestDriver.java
1 /*
2  */
3
4 package testdata;
5
6 import org.junit.After;
7 import org.junit.AfterClass;
8 import org.junit.Before;
9 import org.junit.BeforeClass;
10 import org.junit.Test;
11
12 /**
13  * 使い捨てテスト用ドライバ。
14  */
15 public class TestDriver {
16
17     static{
18         assert Test.class != null;
19     }
20
21     @BeforeClass
22     public static void setUpClass() {
23     }
24
25     @AfterClass
26     public static void tearDownClass() {
27     }
28
29     @Before
30     public void setUp() {
31     }
32
33     @After
34     public void tearDown() {
35     }
36
37     /**
38      * 使い捨てテスト本体。
39      * <p>テストが終わったら必ず元に戻して
40      * アノテーション"Test"をコメントアウトするように。
41      * @throws Exception テスト失敗
42      */
43     //@Test
44     public void main() throws Exception{
45     }
46
47 }