Lines Matching refs:self
33 def __init__(self): argument
34 test_suite.AbstractTestSuite.__init__(self)
35 self._target_exec_path = None
37 def GetTargetExecPath(self): argument
39 return self._target_exec_path
41 def SetTargetExecPath(self, path): argument
42 self._target_exec_path = path
43 return self
45 def Run(self, options, adb): argument
52 shell_cmd = adb.PreviewShellCommand(self.GetTargetExecPath())
62 def __init__(self, test_root_path, build_path): argument
63 test_suite.AbstractTestFactory.__init__(self, test_root_path,
66 def CreateTests(self, sub_tests_path=None): argument
79 sub_tests_path = self.GetTestRootPath()
82 self._EvaluateFile(test_file_list, os.path.basename(sub_tests_path))
84 os.path.walk(sub_tests_path, self._CollectTestSources, test_file_list)
91 suite.SetBuildPath(self.GetBuildPath())
97 def _CollectTestSources(self, test_list, dirname, files): argument
113 self._EvaluateFile(test_list, f)
115 def _EvaluateFile(self, test_list, file): argument