Package org.apache.sis.test.mock

Examples of org.apache.sis.test.mock.MatrixMock


    /**
     * Tests (indirectly) {@link Formatter#append(Matrix)}.
     */
    @Test
    public void testAppendMatrix() {
        final Matrix m = new MatrixMock(4, 4,
                1, 0, 4, 0,
               -2, 1, 0, 0,
                0, 0, 1, 7,
                0, 0, 0, 1);
        assertWktEquals(
View Full Code Here

TOP

Related Classes of org.apache.sis.test.mock.MatrixMock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.