Test of length method, of class ShiftedVec.
()
| 133 | * Test of length method, of class ShiftedVec. |
| 134 | */ |
| 135 | @Test |
| 136 | public void testLength() |
| 137 | { |
| 138 | System.out.println("length"); |
| 139 | ShiftedVec a = new ShiftedVec(a_base, shift_a); |
| 140 | assertEquals(a_base.length(), a.length()); |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Test of get method, of class ShiftedVec. |