Class CRSTest


  • @Deprecated
    public class CRSTest
    extends ReferencingTestCase
    Deprecated.
    Tests CoordinateReferenceSystem and related objects from the org.opengis.referencing.crs package. CRS instances are created using the authority factory given at construction time.
    Usage example: in order to specify their factories and run the tests in a JUnit framework, implementors can define a subclass in their own test suite as in the example below:
    import org.junit.runner.RunWith;
    import org.junit.runners.JUnit4;
    import org.opengis.test.referencing.CRSTest;
    
    @RunWith(JUnit4.class)
    public class MyTest extends CRSTest {
        public MyTest() {
            super(new MyCRSAuthorityFactory());
        }
    }
    Since:
    2.3