Class WKTParserTest

Object

public class WKTParserTest extends ReferencingTestCase
Tests the Well-Known Text (WKT) parser of Coordinate Reference System (CRS) objects. For running this test, vendors need to implement the CRSFactory.createFromWKT(String) method. That method will be given various WKT strings from the OGC 12-063r5 — Well-known text representation of coordinate reference systems specification. The object returned by createFromWKT(String) will be checked for the following properties:

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.WKTParserTest;

public class MyTest extends WKTParserTest {
    public MyTest() {
        super(new MyCRSFactory());
    }
}
Since:
3.1
See Also: