(self, methodName="runTest")
| 306 | |
| 307 | class intTestCase(TensorTestCase): |
| 308 | def __init__(self, methodName="runTest"): |
| 309 | TensorTestCase.__init__(self, methodName) |
| 310 | self.typeStr = "int" |
| 311 | self.typeCode = "i" |
| 312 | self.result = int(self.result) |
| 313 | |
| 314 | ###################################################################### |
| 315 |
no outgoing calls
no test coverage detected