Searched refs:TestResultTable (Results 1 – 3 of 3) sorted by relevance
32 public static boolean checkIfTestResultMatch(TestResultTable result1, in checkIfTestResultMatch()33 TestResultTable result2, boolean withPowerPolicyData) { in checkIfTestResultMatch()43 TestResultTable.RecordEntry entry1 = result1.get(i); in checkIfTestResultMatch()44 TestResultTable.RecordEntry entry2 = result2.get(i); in checkIfTestResultMatch()54 public TestResultTable snapshotTestResult() throws Exception { in snapshotTestResult()59 public TestResultTable getLatestTestResultEntry() throws Exception { in getLatestTestResultEntry()64 private TestResultTable getTestResults(String shellOutput, boolean onlyLastEntry) in getTestResults()66 TestResultTable snapshot = new TestResultTable(); in getTestResults()80 private void parseAndAddTestEntry(TestResultTable results, String line) throws Exception { in parseAndAddTestEntry()103 public static TestResultTable getDiff(TestResultTable result1, TestResultTable result2) { in getDiff()[all …]
23 private final TestResultTable mExpected = new TestResultTable();24 private TestResultTable mStartSnapshot;25 private TestResultTable mEndSnapshot;62 TestResultTable testResult; in checkFullTestResult()77 TestResultTable.RecordEntry lastEntry = mTestAnalyzer.snapshotTestResult().getLastEntry(); in checkLastTestResultEntry()85 TestResultTable expected = new TestResultTable(); in checkLastTestResultEntry()87 TestResultTable.RecordEntry lastEntry1 = expected.getLastEntry(); in checkLastTestResultEntry()88 TestResultTable.RecordEntry lastEntry2 = mTestAnalyzer.snapshotTestResult().getLastEntry(); in checkLastTestResultEntry()95 TestResultTable expected = new TestResultTable(); in checkLastTestResultEntryData()97 TestResultTable.RecordEntry lastEntry1 = expected.getLastEntry(); in checkLastTestResultEntryData()[all …]
30 public final class TestResultTable { class