Test Array1 default constructor
(self)
| 22 | self.array1 = Array.Array1(self.length) |
| 23 | |
| 24 | def testConstructor0(self): |
| 25 | "Test Array1 default constructor" |
| 26 | a = Array.Array1() |
| 27 | self.assertTrue(isinstance(a, Array.Array1)) |
| 28 | self.assertTrue(len(a) == 0) |
| 29 | |
| 30 | def testConstructor1(self): |
| 31 | "Test Array1 length constructor" |