(self)
| 97 | self.assertEqual(t.GetCommand(), 'example args') |
| 98 | |
| 99 | def testGetCommandWithQuotes(self): |
| 100 | t = trace.FireTrace('initial object') |
| 101 | args = ('example', 'spaced arg') |
| 102 | t.AddCalledComponent('result', 'run', args, 'sample.py', 12, False, |
| 103 | action=trace.CALLED_ROUTINE) |
| 104 | self.assertEqual(t.GetCommand(), "example 'spaced arg'") |
| 105 | |
| 106 | def testGetCommandWithFlagQuotes(self): |
| 107 | t = trace.FireTrace('initial object') |
nothing calls this directly
no test coverage detected