Пример #1
0
 def _parse_javascript_test_list(self, content):
     """Simple wrapper of _parse_test_list for JavaScript testing."""
     return extract_google_test_list._parse_test_list(
         StringIO.StringIO(content),
         extract_google_test_list._JAVASCRIPT_TEST_METHOD_PATTERN)
Пример #2
0
 def _parse_javascript_test_list(self, content):
   """Simple wrapper of _parse_test_list for JavaScript testing."""
   return extract_google_test_list._parse_test_list(
       StringIO.StringIO(content),
       extract_google_test_list._JAVASCRIPT_TEST_METHOD_PATTERN)
Пример #3
0
 def _parse_cpp_test_list(self, content):
     """Simple wrapper of _parse_test_list for C++ testing."""
     return extract_google_test_list._parse_test_list(
         StringIO.StringIO(content),
         extract_google_test_list._CPP_TEST_METHOD_PATTERN)
Пример #4
0
 def _parse_cpp_test_list(self, content):
   """Simple wrapper of _parse_test_list for C++ testing."""
   return extract_google_test_list._parse_test_list(
       StringIO.StringIO(content),
       extract_google_test_list._CPP_TEST_METHOD_PATTERN)