Home | History | Annotate | Download | only in base

Lines Matching refs:test_type

26   def __init__(self, name, test_type, log=''):
31 test_type: Type of the test result as defined in ResultType.
35 assert test_type in ResultType.GetTypes()
37 self._test_type = test_type
83 for test_type in ResultType.GetTypes():
84 if test_type != ResultType.PASS:
85 for t in sorted(self._GetType(test_type)):
88 s.append('[%s] %s:' % (test_type, t))
127 for test_type in ResultType.GetTypes():
128 s.append('%s: %d' % (test_type, len(self._GetType(test_type))))
166 def _GetType(self, test_type):
168 return set(t for t in self._results if t.GetType() == test_type)