Class CRSTest

Object

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, implementers can define a subclass in their own test suite as in the example below:
import org.opengis.test.referencing.CRSTest;

public class MyTest extends CRSTest {
    public MyTest() {
        super(new MyCRSAuthorityFactory());
    }
}
Since:
2.3