Author: echatellier Date: 2011-04-22 09:51:03 +0200 (Fri, 22 Apr 2011) New Revision: 355 Url: http://nuiton.org/repositories/revision/nuiton-matrix/355 Log: Remove timer Modified: trunk/nuiton-matrix-gui/src/test/java/org/nuiton/math/matrix/gui/MatrixPanelEditorTest.java Modified: trunk/nuiton-matrix-gui/src/test/java/org/nuiton/math/matrix/gui/MatrixPanelEditorTest.java =================================================================== --- trunk/nuiton-matrix-gui/src/test/java/org/nuiton/math/matrix/gui/MatrixPanelEditorTest.java 2011-04-14 09:30:03 UTC (rev 354) +++ trunk/nuiton-matrix-gui/src/test/java/org/nuiton/math/matrix/gui/MatrixPanelEditorTest.java 2011-04-22 07:51:03 UTC (rev 355) @@ -111,6 +111,14 @@ } @Test + public void testModelNDDim2() { + MatrixND matrix = getMatrixTest(2); + MatrixPanelEditor editor = new MatrixPanelEditor(); + editor.setMatrix(matrix); + show(editor); + } + + @Test public void testModelNDDim3() { MatrixND matrix = getMatrixTest(3); MatrixPanelEditor editor = new MatrixPanelEditor(); @@ -125,8 +133,17 @@ editor.setMatrix(matrix); show(editor); } - + @Test + public void testModelLinearNDDim2() { + MatrixND matrix = getMatrixTest(2); + MatrixPanelEditor editor = new MatrixPanelEditor(); + editor.setLinearModel(true); + editor.setMatrix(matrix); + show(editor); + } + + @Test public void testModelLinearDim3() { MatrixND matrix = getMatrixTest(3); MatrixPanelEditor editor = new MatrixPanelEditor();