OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sub_tests_path
(Results
1 - 4
of
4
) sorted by null
/development/testrunner/test_defs/
gtest.py
66
def CreateTests(self,
sub_tests_path
=None):
67
"""Create tests found in
sub_tests_path
.
79
if not
sub_tests_path
:
80
sub_tests_path
= self.GetTestRootPath()
82
if os.path.isfile(
sub_tests_path
):
83
self._EvaluateFile(test_file_list, os.path.basename(
sub_tests_path
))
85
os.path.walk(
sub_tests_path
, self._CollectTestSources, test_file_list)
instrumentation_test.py
228
def CreateTests(self,
sub_tests_path
=None):
238
if
sub_tests_path
:
240
if self._IsJavaFile(
sub_tests_path
):
241
class_name_arg = self._GetClassNameFromFile(
sub_tests_path
)
243
elif self._IsJavaPackage(
sub_tests_path
):
244
java_package_name = self._GetPackageNameFromDir(
sub_tests_path
)
test_suite.py
129
def CreateTests(self,
sub_tests_path
=None):
135
sub_tests_path
: the child path of test_root_path containing the tests to
test_walker.py
177
return factory.CreateTests(
sub_tests_path
=path)
Completed in 254 milliseconds