(self, methodName="runTest")
| 18 | class FlatTestCase(unittest.TestCase): |
| 19 | |
| 20 | def __init__(self, methodName="runTest"): |
| 21 | unittest.TestCase.__init__(self, methodName) |
| 22 | self.typeStr = "double" |
| 23 | self.typeCode = "d" |
| 24 | |
| 25 | # Test the (type* INPLACE_ARRAY_FLAT, int DIM_FLAT) typemap |
| 26 | def testProcess1D(self): |