Test Array1 array constructor
(self)
| 32 | self.assertTrue(isinstance(self.array1, Array.Array1)) |
| 33 | |
| 34 | def testConstructor2(self): |
| 35 | "Test Array1 array constructor" |
| 36 | na = np.arange(self.length) |
| 37 | aa = Array.Array1(na) |
| 38 | self.assertTrue(isinstance(aa, Array.Array1)) |
| 39 | |
| 40 | def testConstructor3(self): |
| 41 | "Test Array1 copy constructor" |