(self, methodName="runTest")
| 315 | |
| 316 | class uintTestCase(TensorTestCase): |
| 317 | def __init__(self, methodName="runTest"): |
| 318 | TensorTestCase.__init__(self, methodName) |
| 319 | self.typeStr = "uint" |
| 320 | self.typeCode = "I" |
| 321 | self.result = int(self.result) |
| 322 | |
| 323 | ###################################################################### |
| 324 |