Home
last modified time | relevance | path

Searched refs:Prefixes (Results 1 – 2 of 2) sorted by relevance

/cts/tools/junit/src/com/android/cts/junit/
DSingleJUnitTestRunListener.java25 private static class Prefixes { class in SingleJUnitTestRunListener
41 String status = result.wasSuccessful() ? Prefixes.OK_TEST_MARKER in testRunFinished()
42 : Prefixes.FAILED_TEST_MARKER; in testRunFinished()
48 System.out.println(String.format("%s %s.%s", Prefixes.START_TEST_MARKER, in testStarted()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DGeeTestResultParser.java190 private static class Prefixes { class in GeeTestResultParser
271 if (mTestRunInProgress || line.startsWith(Prefixes.TEST_RUN_MARKER)) { in parse()
272 if (line.startsWith(Prefixes.START_TEST_MARKER)) { in parse()
274 message = line.substring(Prefixes.START_TEST_MARKER.length()).trim(); in parse()
277 else if (line.startsWith(Prefixes.OK_TEST_MARKER)) { in parse()
279 message = line.substring(Prefixes.OK_TEST_MARKER.length()).trim(); in parse()
283 else if (line.startsWith(Prefixes.FAILED_TEST_MARKER)) { in parse()
285 message = line.substring(Prefixes.FAILED_TEST_MARKER.length()).trim(); in parse()
289 else if (line.startsWith(Prefixes.START_TEST_RUN_MARKER)) { in parse()
292 message = line.substring(Prefixes.TEST_RUN_MARKER.length()).trim(); in parse()
[all …]