MCPcopy Create free account
hub / github.com/GStreamer/gst-python / testDebug

Method testDebug

testsuite/old/test_element.py:211–218  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

209
210class 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")

Callers

nothing calls this directly

Calls 1

errorMethod · 0.80

Tested by

no test coverage detected