Home
last modified time | relevance | path

Searched refs:testResults (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Virtualization/tests/testapk/src/java/com/android/microdroid/test/
DMicrodroidTests.java190 TestResults testResults = in createAndConnectToVmHelper() local
201 testResults.assertNoException(); in createAndConnectToVmHelper()
202 assertThat(testResults.mAddInteger).isEqualTo(123 + 456); in createAndConnectToVmHelper()
203 assertThat(testResults.mAppRunProp).isEqualTo("true"); in createAndConnectToVmHelper()
204 assertThat(testResults.mSublibRunProp).isEqualTo("true"); in createAndConnectToVmHelper()
205 assertThat(testResults.mApkContentsPath).isEqualTo("/mnt/apk"); in createAndConnectToVmHelper()
206 assertThat(testResults.mEncryptedStoragePath).isEqualTo(""); in createAndConnectToVmHelper()
330 TestResults testResults = in createAndRunNoDebugVm() local
332 testResults.assertNoException(); in createAndRunNoDebugVm()
333 assertThat(testResults.mAddInteger).isEqualTo(37 + 73); in createAndRunNoDebugVm()
[all …]
/packages/modules/Virtualization/tests/helper/src/java/com/android/microdroid/test/device/
DMicrodroidDeviceTestBase.java609 TestResults testResults = new TestResults(); in runVmTestService() local
626 testResults.mException = e; in runVmTestService()
633 testsToRun.runTests(mTestService, testResults); in runVmTestService()
635 testResults.mException = e; in runVmTestService()
643 testResults.mException = e; in runVmTestService()
673 return testResults; in runVmTestService()
678 void runTests(ITestService testService, TestResults testResults) throws Exception; in runTests() argument
/packages/modules/Virtualization/tests/benchmark/src/java/com/android/microdroid/benchmark/
DMicrodroidBenchmarks.java738 TestResults testResults = in testRpcBinderLatency() local
764 testResults.assertNoException(); in testRpcBinderLatency()
765 assertThat(testResults.mAddInteger).isEqualTo(579); in testRpcBinderLatency()
766 for (long duration : testResults.mTimings) { in testRpcBinderLatency()
786 TestResults testResults = in testVsockLatency() local
825 testResults.assertNoException(); in testVsockLatency()
826 assertThat(testResults.mFileContent).isEqualTo("olleh"); in testVsockLatency()
827 for (long duration : testResults.mTimings) { in testVsockLatency()
/packages/modules/NetworkStack/tests/hostlib/src/com/android/testutils/host/
DDeflakeHostTestBase.kt138 val stackTrace = testResults[it]?.stackTrace in <lambda>()
/packages/modules/Connectivity/staticlibs/testutils/host/com/android/testutils/
DConnectivityTestTargetPreparer.kt126 val errorMsg = runResult.testResults.mapNotNull { (testDescription, testResult) -> in <lambda>()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java2589 List<ScanResult> testResults = mManager.getMatchingScanResults(config, scanResults); in getMatchingScanResultsTestWithRoamingMatch() local
2591 assertEquals(1, testResults.size()); in getMatchingScanResultsTestWithRoamingMatch()
2611 List<ScanResult> testResults = mManager.getMatchingScanResults(config, scanResults); in getMatchingScanResultsTestWithHomeMatch() local
2613 assertEquals(1, testResults.size()); in getMatchingScanResultsTestWithHomeMatch()
2636 List<ScanResult> testResults = mManager.getMatchingScanResults(config, scanResults); in getMatchingScanResultsTestWithNonMatch() local
2638 assertEquals(0, testResults.size()); in getMatchingScanResultsTestWithNonMatch()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiManagerTest.java3314 List<WifiConfiguration> testResults = new ArrayList<>(); in testGetWifiConfigsForMatchedNetworkSuggestions() local
3315 testResults.add(new WifiConfiguration()); in testGetWifiConfigsForMatchedNetworkSuggestions()
3318 .thenReturn(testResults); in testGetWifiConfigsForMatchedNetworkSuggestions()
3319 assertEquals(testResults, mWifiManager in testGetWifiConfigsForMatchedNetworkSuggestions()