Statistics
| Revision:

root / trunk / extensions / extGeoprocessingExtensions / src-test / com / iver / cit / gvsig / geoprocess / AllTests.java @ 13503

History | View | Annotate | Download (340 Bytes)

1
package com.iver.cit.gvsig.geoprocess;
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(
10
                                "Test for com.iver.cit.gvsig.geoprocess");
11
                //$JUnit-BEGIN$
12
                suite.addTestSuite(LineCleanTest.class);
13
                //$JUnit-END$
14
                return suite;
15
        }
16

    
17
}