Searched refs:testCase (Results 1 – 3 of 3) sorted by relevance
/platform_testing/libraries/timeresult-helper/src/android/support/test/timeresulthelper/ |
D | TimeResultLogger.java | 30 public static void writeTimeStamp(String logType, String testCase, long delay, File destFile) in writeTimeStamp() argument 32 writeTimeStamp(logType, testCase, System.currentTimeMillis(), delay, destFile); in writeTimeStamp() 35 public static void writeTimeStamp(String logType, String testCase, long time, in writeTimeStamp() argument 39 logType, testCase)); in writeTimeStamp() 43 public static void writeTimeStampLogStart(String testCase, File destFile) throws IOException { in writeTimeStampLogStart() argument 44 writeTimeStamp("AUTOTEST_TEST_BEGIN", testCase, 5 * 1000, destFile); in writeTimeStampLogStart() 47 public static void writeTimeStampLogEnd(String testCase, File destFile) throws IOException { in writeTimeStampLogEnd() argument 48 writeTimeStamp("AUTOTEST_TEST_SUCCESS", testCase, 0, destFile); in writeTimeStampLogEnd() 51 public static void writeResultToFile(String testCase, File destFile, Bundle result) in writeResultToFile() argument 54 outputWriter.write(String.format("Result %s\n", testCase)); in writeResultToFile()
|
/platform_testing/libraries/power-helper/src/com/android/helper/ |
D | PowerTestHelper.java | 132 protected void writePowerLog(String logType, String testCase, long delay) in writePowerLog() argument 134 writePowerLog(logType, testCase, System.currentTimeMillis(), delay); in writePowerLog() 147 protected void writePowerLog(String logType, String testCase, long time, in writePowerLog() argument 151 logType, testCase)); in writePowerLog() 155 protected void writePowerLogStart(String testCase) throws IOException { in writePowerLogStart() argument 156 writePowerLog("AUTOTEST_TEST_BEGIN", testCase, 5 * 1000); in writePowerLogStart() 159 protected void writePowerLogEnd(String testCase) throws IOException { in writePowerLogEnd() argument 160 writePowerLog("AUTOTEST_TEST_SUCCESS", testCase, 0); in writePowerLogEnd() 163 protected void writePowerLogIdleStart(String testCase, long delay) throws IOException { in writePowerLogIdleStart() argument 164 writePowerLog("AUTOTEST_TEST_BEGIN", testCase, delay); in writePowerLogIdleStart() [all …]
|
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
D | DexTestRunner.java | 109 for (final TestCase testCase : mScheduler.apply(mTestCases)) { in runTest() 118 mTestCase = testCase; in runTest() 128 testCase.run(testResult); in runTest() 139 onError(testCase, e.getCause()); in runTest()
|