Searched refs:logcatStrings (Results 1 – 1 of 1) sorted by relevance
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/ |
D | LogcatInspector.java | 54 String filterSpec, int maxTimeoutInSeconds, String... logcatStrings) in assertLogcatContainsInOrder() argument 58 numberOfLogcatStringsFound(filterSpec, maxTimeoutInSeconds, logcatStrings); in assertLogcatContainsInOrder() 59 if (nextStringIndex < logcatStrings.length) { in assertLogcatContainsInOrder() 62 + logcatStrings[nextStringIndex] in assertLogcatContainsInOrder() 64 ? " after " + logcatStrings[nextStringIndex - 1] in assertLogcatContainsInOrder() 82 public void assertLogcatDoesNotContainInOrder(int timeInSeconds, String... logcatStrings) in assertLogcatDoesNotContainInOrder() argument 85 int stringsFound = numberOfLogcatStringsFound("", timeInSeconds, logcatStrings); in assertLogcatDoesNotContainInOrder() 86 if (stringsFound == logcatStrings.length) { in assertLogcatDoesNotContainInOrder() 87 fail("Found " + Joiner.on(", ").join(logcatStrings) + " that weren't expected"); in assertLogcatDoesNotContainInOrder() 95 String filterSpec, int timeInSeconds, String... logcatStrings) in numberOfLogcatStringsFound() argument [all …]
|