Test det function
(self)
| 23 | |
| 24 | # Test (type IN_ARRAY2[ANY][ANY]) typemap |
| 25 | def testDet(self): |
| 26 | "Test det function" |
| 27 | print(self.typeStr, "... ", end=' ', file=sys.stderr) |
| 28 | det = Matrix.__dict__[self.typeStr + "Det"] |
| 29 | matrix = [[8, 7], [6, 9]] |
| 30 | self.assertEqual(det(matrix), 30) |
| 31 | |
| 32 | # Test (type IN_ARRAY2[ANY][ANY]) typemap |
| 33 | def testDetBadList(self): |