Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.swing / org.gvsig.tools.swing.impl / src / test / java / org / gvsig / tools / AppTest.java @ 168

History | View | Annotate | Download (643 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 
11
    extends TestCase
12
{
13
    /**
14
     * @return the suite of tests being tested
15
     */
16
    public static Test suite()
17
    {
18
        return new TestSuite( AppTest.class );
19
    }
20

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

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