Class AffineTransformTest

Object
TestCase
TransformTestCase
AffineTransformTest

Tests affine transforms from the org.opengis.referencing.operation package. Math transform instances are created using the 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.AffineTransformTest;

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