Lines Matching refs:self
26 def __init__(self, configs):
27 self.TAG = self.__class__.__name__
28 TestCase.__init__(self, self.TAG, configs)
29 self.tests = [
32 self.driver = UiDriver(self.device1)
33 self.sn = self.device1.device_sn
34 self.source_path = {}
36 def setup(self):
37 self.log.info("case16_dysaprofile001 start")
40 self.source_path = get_source_path(need_source=need_source, casename="level0/case16_dysaprofile001")
41 push_source(source_path=self.source_path, driver=self.driver, sn=self.sn)
43 def test_step(self):
44 driver = self.driver
49 def teardown(self):
50 remove_source(source_path=self.source_path, driver=self.driver, sn=self.sn)
51 self.log.info("case16_dysaprofile001 down")