Lines Matching refs:self
25 def __init__(self, controllers):
26 self.TAG = self.__class__.__name__
27 super().__init__(self.TAG, controllers)
29 def setup(self):
32 def process(self):
34 installHapResult = self.device1.execute_shell_command("bm install -p /data/local/tmp/unsigned.hap")
36 bundleNames = self.device1.execute_shell_command("bm dump -a").strip()
38 installHapResult = self.device1.execute_shell_command("bm install -p /data/local/tmp/signed.hap")
40 bundleNames = self.device1.execute_shell_command("bm dump -a").strip()
43 def teardown(self):