(self, methodName="runTests")
| 16 | class FortranTestCase(unittest.TestCase): |
| 17 | |
| 18 | def __init__(self, methodName="runTests"): |
| 19 | unittest.TestCase.__init__(self, methodName) |
| 20 | self.typeStr = "double" |
| 21 | self.typeCode = "d" |
| 22 | |
| 23 | # Test (type* IN_FARRAY2, int DIM1, int DIM2) typemap |
| 24 | def testSecondElementFortran(self): |