Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.swing / org.gvsig.tools.swing.api / src / test / java / org / gvsig / tools / AppTest.java @ 298

History | View | Annotate | Download (638 Bytes)

1
package org.gvsig.tools;
2

    
3
import junit.framework.Test;
4
import junit.framework.TestCase;
5
import junit.framework.TestSuite;
6

    
7
/**
8
 * Unit test for simple App.
9
 */
10
public class AppTest extends TestCase {
11

    
12
    /**
13
     * @return the suite of tests being tested
14
     */
15
    public static Test suite() {
16
        return new TestSuite(AppTest.class);
17
    }
18

    
19
    /**
20
     * Create the test case
21
     * 
22
     * @param testName
23
     *            name of the test case
24
     */
25
    public AppTest(String testName) {
26
        super(testName);
27
    }
28

    
29
    /**
30
     * Rigourous Test :-)
31
     */
32
    public void testApp() {
33
        assertTrue(true);
34
    }
35
}