Lines Matching refs:self
25 def __init__(self, configs):
26 self.TAG = self.__class__.__name__
27 TestCase.__init__(self, self.TAG, configs)
28 self.tests = [
31 self.driver = UiDriver(self.device1)
32 self.sn = self.device1.device_sn
33 self.source_path = {}
35 def setup(self):
36 self.log.info("case17_dysaprofile002 start")
39 self.source_path = get_source_path(need_source=need_source, casename="level0/case17_dysaprofile002")
40 push_source(source_path=self.source_path, driver=self.driver, sn=self.sn)
42 def test_step(self):
43 driver = self.driver
48 def teardown(self):
49 remove_source(source_path=self.source_path, driver=self.driver, sn=self.sn)
50 self.log.info("case17_dysaprofile002 down")