(self)
| 40 | self.assertTrue(t.HasError()) |
| 41 | |
| 42 | def testAddAccessedProperty(self): |
| 43 | t = trace.FireTrace('initial object') |
| 44 | args = ('example', 'args') |
| 45 | t.AddAccessedProperty('new component', 'prop', args, 'sample.py', 12) |
| 46 | self.assertEqual( |
| 47 | str(t), |
| 48 | '1. Initial component\n2. Accessed property "prop" (sample.py:12)') |
| 49 | |
| 50 | def testAddCalledCallable(self): |
| 51 | t = trace.FireTrace('initial object') |
nothing calls this directly
no test coverage detected