本文整理汇总了Python中tests.recorder.base.Base类的典型用法代码示例。如果您正苦于以下问题:Python Base类的具体用法?Python Base怎么用?Python Base使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Base类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_record_multi
def test_record_multi(self):
bins = self.v4l2_bin + self.getVideoTestBin() + self.getAudioTestBin()
Base.test_record_multi(self, bins)
示例2: test_stop_on_paused
def test_stop_on_paused(self):
bins = self.autoaudio_bin
Base.test_stop_on_paused(self, bins)
示例3: test_record_error
def test_record_error(self):
bins = self.autoaudio_bin
Base.test_record_error(self, bins)
示例4: tearDown
def tearDown(self):
Base.tearDown(self)
示例5: test_preview_and_record
def test_preview_and_record(self):
bins = self.autoaudio_bin
Base.test_preview_and_record(self, bins)
示例6: test_preview_error
def test_preview_error(self):
bins = self.firewire_renc_bin
Base.test_preview_error(self, bins)
示例7: test_pause_error
def test_pause_error(self):
bins = self.firewire_renc_bin
Base.test_pause_error(self, bins)
示例8: test_preview_multi
def test_preview_multi(self):
bins = self.pulse_bin + self.getVideoTestBin()
Base.test_preview_multi(self, bins)
示例9: test_preview_and_record
def test_preview_and_record(self):
bins = self.pulse_bin
Base.test_preview_and_record(self, bins)
示例10: test_pause_error
def test_pause_error(self):
bins = self.v4l2_bin
Base.test_pause_error(self, bins)
示例11: setUp
def setUp(self):
Base.setUp(self)
self.pulse_bin[0]['path'] = self.tmppath
示例12: test_record_error
def test_record_error(self):
bins = self.v4l2_bin
Base.test_record_error(self, bins)
示例13: test_preview_error
def test_preview_error(self):
bins = self.v4l2_bin
Base.test_preview_error(self, bins)
示例14: test_stop_on_paused
def test_stop_on_paused(self):
bins = self.v4l2_bin
Base.test_stop_on_paused(self, bins)
示例15: test_record_multi
def test_record_multi(self):
bins = self.firewire_renc_bin + self.getVideoTestBin() + self.getAudioTestBin()
Base.test_record_multi(self, bins)