Class ObjectFactoryTest

Object
TestCase
ReferencingTestCase
ObjectFactoryTest
Direct Known Subclasses:
ReferencingTest

Tests the creation of referencing objects from the object factories 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.ObjectFactoryTest;

public class MyTest extends ObjectFactoryTest {
    public MyTest() {
        super(new MyDatumFactory(), new MyCSFactory(), new MyCRSFactory(), new MyOpFactory());
    }
}
Since:
2.3
See Also: