OSDN Git Service

workerのパッケージを移動
[coroid/inqubus.git] / frontend / test / saccubus / worker / ConverterTest.java
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 package saccubus.worker;
6
7 import saccubus.worker.Download;
8 import org.junit.After;
9 import org.junit.AfterClass;
10 import org.junit.Before;
11 import org.junit.BeforeClass;
12 import org.junit.Test;
13
14 /**
15  *
16  * @author yuki
17  */
18 public class ConverterTest {
19
20     @BeforeClass
21     public static void setUpClass() throws Exception {
22     }
23
24     @AfterClass
25     public static void tearDownClass() throws Exception {
26     }
27
28     @Before
29     public void setUp() {
30     }
31
32     @After
33     public void tearDown() {
34     }
35
36     @Test
37     public void testConverter() throws Exception {
38         Download conv = new Download(null, "sm7139747");
39         conv.call();
40     }
41 //    /**
42 //     * Test of call method, of class Converter.
43 //     */
44 //    @Test
45 //    public void testCall() throws Exception {
46 //        System.out.println("call");
47 //        Converter instance = null;
48 //        Boolean expResult = null;
49 //        Boolean result = instance.call();
50 //        assertEquals(expResult, result);
51 //        // TODO review the generated test code and remove the default call to fail.
52 //        fail("The test case is a prototype.");
53 //    }
54 //
55 //    /**
56 //     * Test of run method, of class Converter.
57 //     */
58 //    @Test
59 //    public void testRun() {
60 //        System.out.println("run");
61 //        Converter instance = null;
62 //        instance.run();
63 //        // TODO review the generated test code and remove the default call to fail.
64 //        fail("The test case is a prototype.");
65 //    }
66 //
67 //    /**
68 //     * Test of isConverted method, of class Converter.
69 //     */
70 //    @Test
71 //    public void testIsConverted() {
72 //        System.out.println("isConverted");
73 //        Converter instance = null;
74 //        boolean expResult = false;
75 //        boolean result = instance.isConverted();
76 //        assertEquals(expResult, result);
77 //        // TODO review the generated test code and remove the default call to fail.
78 //        fail("The test case is a prototype.");
79 //    }
80 //
81 //    /**
82 //     * Test of getStopFlag method, of class Converter.
83 //     */
84 //    @Test
85 //    public void testGetStopFlag() {
86 //        System.out.println("getStopFlag");
87 //        Converter instance = null;
88 //        ConvertStopFlag expResult = null;
89 //        ConvertStopFlag result = instance.getStopFlag();
90 //        assertEquals(expResult, result);
91 //        // TODO review the generated test code and remove the default call to fail.
92 //        fail("The test case is a prototype.");
93 //    }
94 }