Test of set method, of class TestImp.
()
| 756 | * Test of set method, of class TestImp. |
| 757 | */ |
| 758 | @Test |
| 759 | public void testSet() |
| 760 | { |
| 761 | TestImp toSet = new TestImp(A.rows(), A.cols()); |
| 762 | |
| 763 | for(int i = 0; i < A.rows(); i++) |
| 764 | for(int j = 0; j < A.cols(); j++) |
| 765 | toSet.set(i, j, A.get(i, j)); |
| 766 | |
| 767 | assertEquals(A, toSet); |
| 768 | } |
| 769 | |
| 770 | /** |
| 771 | * Test of rows method, of class TestImp. |