Home
last modified time | relevance | path

Searched refs:temporaryFile (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/cpp/watchdog/server/tests/
DOveruseConfigurationXmlHelperTest.cpp190 TemporaryFile temporaryFile; in TEST() local
191 ASSERT_NE(temporaryFile.fd, -1); in TEST()
193 ASSERT_RESULT_OK(OveruseConfigurationXmlHelper::writeXmlFile(expected, temporaryFile.path)); in TEST()
195 auto actual = OveruseConfigurationXmlHelper::parseXmlFile(temporaryFile.path); in TEST()
202 temporaryFile.release(); in TEST()
236 TemporaryFile temporaryFile; in TEST() local
237 ASSERT_NE(temporaryFile.fd, -1); in TEST()
239 ASSERT_RESULT_OK(OveruseConfigurationXmlHelper::writeXmlFile(expected, temporaryFile.path)); in TEST()
241 auto actual = OveruseConfigurationXmlHelper::parseXmlFile(temporaryFile.path); in TEST()
248 temporaryFile.release(); in TEST()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
DCarStorageMonitoringTest.java228 try (TemporaryFile temporaryFile = new TemporaryFile(TAG)) { in testWearEstimateRecordJson() argument
231 try (JsonWriter jsonWriter = new JsonWriter(new FileWriter(temporaryFile.getFile()))) { in testWearEstimateRecordJson()
235 new String(Files.readAllBytes(temporaryFile.getPath()))); in testWearEstimateRecordJson()
258 try (TemporaryFile temporaryFile = new TemporaryFile(TAG)) { in testWearHistoryJson() argument
270 try (JsonWriter jsonWriter = new JsonWriter(new FileWriter(temporaryFile.getFile()))) { in testWearHistoryJson()
274 new String(Files.readAllBytes(temporaryFile.getPath()))); in testWearHistoryJson()
471 try (TemporaryFile temporaryFile = new TemporaryFile(TAG)) { in testUidIoStatEntryJson() argument
475 try (JsonWriter jsonWriter = new JsonWriter(new FileWriter(temporaryFile.getFile()))) { in testUidIoStatEntryJson()
479 new String(Files.readAllBytes(temporaryFile.getPath()))); in testUidIoStatEntryJson()
661 try (TemporaryFile temporaryFile = new TemporaryFile(TAG)) { in testUidIoStatsDeltaJson() argument
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/systeminterface/
DSystemPowerControlHelperTest.java124 try (TemporaryFile temporaryFile = new TemporaryFile(POWER_STATE_FILE)) { in testSystemSupportsSuspend_NoControlFile() argument
125 fileName = temporaryFile.getFile().getAbsolutePath(); in testSystemSupportsSuspend_NoControlFile()