Test of clone method, of class TestImp.
()
| 809 | * Test of clone method, of class TestImp. |
| 810 | */ |
| 811 | @Test |
| 812 | public void testCopy() |
| 813 | { |
| 814 | Matrix ACopy = A.clone(); |
| 815 | |
| 816 | assertEquals(A, ACopy); |
| 817 | assertEquals(A.multiply(B), ACopy.multiply(B)); |
| 818 | } |
| 819 | |
| 820 | /** |
| 821 | * Test of swapRows method, of class TestImp. |