(self)
| 66 | '1. Initial component\n2. Called routine "run" (sample.py:12)') |
| 67 | |
| 68 | def testAddInstantiatedClass(self): |
| 69 | t = trace.FireTrace('initial object') |
| 70 | args = ('example', 'args') |
| 71 | t.AddCalledComponent( |
| 72 | 'Classname', 'classname', args, 'sample.py', 12, False, |
| 73 | action=trace.INSTANTIATED_CLASS) |
| 74 | target = """1. Initial component |
| 75 | 2. Instantiated class "classname" (sample.py:12)""" |
| 76 | self.assertEqual(str(t), target) |
| 77 | |
| 78 | def testAddCompletionScript(self): |
| 79 | t = trace.FireTrace('initial object') |
nothing calls this directly
no test coverage detected