Package org.opengis.test

The GeoAPI conformance testing framework. This package does not provide any test by itself, but provides the base classes for all tests defined in sub-packages. The classes in this package can be grouped in 6 categories:
  • Test cases
    TestCase is the base class of all GeoAPI tests. Implementors can extend directly the TestCase subclasses of their choice for gaining some control, for example in order to specify whether math transform derivatives are supported by their implementation.

  • Test suite
    TestSuite groups all GeoAPI TestCases in a single point. This is not the easiest class to use since implementations typically support only a subset of GeoAPI functionalities. But TestSuite can provide some help for implementors defining their own test suite.

  • Validation
    Validators class provides static validate(…) methods that can be used for validating existing instances of various kinds. Those methods can be conveniently imported in a test class with the following Java statement:

    import static org.opengis.test.Validators.*;

    Validator and ValidatorContainer are support classes for the above, but usually do not need to be considered unless the validation process needs to be customized.

  • Assertions
    Assert extends org.junit.Assert class with additional assertion methods.

  • Configuration
    Configuration, CalculationType, ToleranceModifier, FactoryFilter and ImplementationDetails allow implementors to alter the tests.

  • Events
    TestListener, TestEvent and ComputationFailure allow implementors to be notified about test executions, successes or failures.

Since:
2.2