MathTransformTestCase changes for revisions 1080:1082

Omitted that test in Apache SIS.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r1080:1082 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/test/java/org/geotools/referencing/operation/TransformTestBase.java
Revision 1080Revision 1082
/**
 * Base class for test classes.
 *
 * @version $Id: TransformationTest.java,v 1.3 2002/07/12 20:40:41 desruisseaux Exp $
 * @author Martin Desruisseaux
 */
public class TransformationTest extends TestCase
/**
 * Base class for test classes.
 *
 * @version $Id: TransformationTest.java,v 1.5 2002/07/13 17:05:07 jmacgill Exp $
 * @author Martin Desruisseaux
 */
public class TransformationTest extends TestCase
}

/**
 * Convenience method for checking if a boolean value is false.
 */
public static void assertFalse(final boolean value) {
}

/**
 * Quick self test, in part to give this test suite a test
 * and also the test the internal method.
 */
public void testAssertPointsEqual(){
    String name = "self test";
    double a[] = {10,10};
    double b[] = {10.1,10.1};
    double delta[] = {0.2,0.2};
    assertPointsEqual(name,a,b,delta);
}

/**
 * Convenience method for checking if a boolean value is false.
 */
public static void assertFalse(final boolean value) {