Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libTools / src-test / org / gvsig / tools / exception / AllTests.java @ 23150

History | View | Annotate | Download (377 Bytes)

1
package org.gvsig.tools.exception;
2

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

    
6
public class AllTests {
7

    
8
        public static Test suite() {
9
                TestSuite suite = new TestSuite("Test for org.gvsig.exceptions");
10
                //$JUnit-BEGIN$
11
                suite.addTestSuite(ListBaseExceptionTest.class);
12
                suite.addTestSuite(BaseExceptionTest.class);
13
                //$JUnit-END$
14
                return suite;
15
        }
16

    
17
}