OSDN Git Service

ユニットテスト下請け修正
[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.Ignore;
11 import org.junit.Test;
12
13 import static org.junit.Assert.*;
14
15 /**
16  * 使い捨てテスト用ドライバ。
17  */
18 public class TestDriver {
19
20     @BeforeClass
21     public static void setUpClass() {
22     }
23
24     @AfterClass
25     public static void tearDownClass() {
26     }
27
28     @Before
29     public void setUp() {
30     }
31
32     @After
33     public void tearDown() {
34     }
35
36     /**
37      * 使い捨てテスト本体。
38      * <p>テストを行う時は
39      * アノテーション"Ignore"をコメントアウト。
40      * @throws Exception テスト失敗
41      */
42     @Test
43     @Ignore
44     public void main() throws Exception{
45         assertTrue(true);
46 //        fail();
47         return;
48     }
49
50 }