(self)
| 209 | |
| 210 | class DebugTest(TestCase): |
| 211 | def testDebug(self): |
| 212 | e = gst.element_factory_make('fakesrc') |
| 213 | e.error('I am an error string') |
| 214 | e.warning('I am a warning string') |
| 215 | e.info('I am an info string') |
| 216 | e.debug('I am a debug string') |
| 217 | e.log('I am a log string') |
| 218 | e.debug('I am a formatted %s %s' % ('log', 'string')) |
| 219 | |
| 220 | def testElementDebug(self): |
| 221 | e = TestElement("testelement") |