(self, methodName="runTests")
| 18 | class TensorTestCase(unittest.TestCase): |
| 19 | |
| 20 | def __init__(self, methodName="runTests"): |
| 21 | unittest.TestCase.__init__(self, methodName) |
| 22 | self.typeStr = "double" |
| 23 | self.typeCode = "d" |
| 24 | self.result = sqrt(28.0 / 8) |
| 25 | |
| 26 | # Test (type IN_ARRAY3[ANY][ANY][ANY]) typemap |
| 27 | def testNorm(self): |