Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / org.gvsig.geocoding / src-test / org / gvsig / normalization / AllTests.java @ 32479

History | View | Annotate | Download (498 Bytes)

1
/**
2
 * 
3
 */
4
package org.gvsig.normalization;
5

    
6
import junit.framework.Test;
7
import junit.framework.TestCase;
8
import junit.framework.TestSuite;
9

    
10

    
11

    
12
/**
13
 * @author jorge
14
 *
15
 */
16
public class AllTests  extends TestCase{
17
        public static Test suite() {
18
                TestSuite suite = new TestSuite("Test for Normalization");
19
                //$JUnit-BEGIN$
20
                suite.addTest(org.gvsig.normalization.operations.AllTests.suite());
21
                suite.addTest(org.gvsig.normalization.patterns.AllTests.suite());
22
                //$JUnit-END$
23
                return suite;
24
        }
25
}