OSDN Git Service

本番スキーマ移行
[mikutoga/Vmd2XML.git] / src / test / java / testdata / vmd110820 / motion / MotionTest.java
1 /*
2  */
3
4 package testdata.vmd110820.motion;
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 import static testdata.CnvAssert.*;
13
14 /**
15  *
16  */
17 public class MotionTest {
18
19     static Class<?> THISCLASS = MotionTest.class;
20
21     public MotionTest() {
22         assert this.getClass() == THISCLASS;
23         return;
24     }
25
26     @BeforeClass
27     public static void setUpClass() {
28     }
29
30     @AfterClass
31     public static void tearDownClass() {
32     }
33
34     @Before
35     public void setUp() {
36     }
37
38     @After
39     public void tearDown() {
40     }
41
42     @Test
43     public void vmd2xml() throws Exception{
44         System.out.println("vmd2xml");
45         assertVmd2OldXml(THISCLASS, "motion.vmd", "motion.xml");
46         return;
47     }
48
49     @Test
50     public void xml2vmd() throws Exception{
51         System.out.println("xml2vmd");
52         assertXml2Vmd(THISCLASS, "motion.xml", "motion.vmd");
53         return;
54     }
55
56 }