Test Array1 length method
(self)
| 48 | self.assertRaises(ValueError, Array.Array1, -4) |
| 49 | |
| 50 | def testLength(self): |
| 51 | "Test Array1 length method" |
| 52 | self.assertTrue(self.array1.length() == self.length) |
| 53 | |
| 54 | def testLen(self): |
| 55 | "Test Array1 __len__ method" |