Test Array2 array constructor
(self)
| 133 | self.assertTrue(isinstance(self.array2, Array.Array2)) |
| 134 | |
| 135 | def testConstructor2(self): |
| 136 | "Test Array2 array constructor" |
| 137 | na = np.zeros((3, 4), dtype="l") |
| 138 | aa = Array.Array2(na) |
| 139 | self.assertTrue(isinstance(aa, Array.Array2)) |
| 140 | |
| 141 | def testConstructor3(self): |
| 142 | "Test Array2 copy constructor" |