Searched refs:expectedConfig (Results 1 - 9 of 9) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiApConfigStoreTest.java139 WifiConfiguration expectedConfig = setupApConfig(
145 writeApConfigFile(expectedConfig);
148 verifyApConfig(expectedConfig, store.getApConfiguration());
159 WifiConfiguration expectedConfig = setupApConfig(
165 writeApConfigFile(expectedConfig);
168 verifyApConfig(expectedConfig, store.getApConfiguration());
186 WifiConfiguration expectedConfig = setupApConfig(
192 store.setApConfiguration(expectedConfig);
193 verifyApConfig(expectedConfig, store.getApConfiguration());
H A DWifiStateMachineTest.java1407 WifiConfiguration expectedConfig = new WifiConfiguration();
1408 expectedConfig.SSID = "TestSSID";
1410 .thenReturn(expectedConfig);
1415 assertEquals(expectedConfig.SSID, actualConfig.SSID);
/frameworks/base/libs/androidfw/tests/
H A DSplit_test.cpp82 ResTable_config expectedConfig; local
83 memset(&expectedConfig, 0, sizeof(expectedConfig));
96 EXPECT_EQ(0, expectedConfig.compare(config));
102 ResTable_config expectedConfig; local
103 makeConfigFrench(&expectedConfig);
106 table.setParameters(&expectedConfig);
120 EXPECT_EQ(0, expectedConfig.compare(config));
126 ResTable_config expectedConfig; local
127 makeConfigFrench(&expectedConfig);
[all...]
/frameworks/base/tools/aapt/tests/
H A DResourceFilter_test.cpp175 ConfigDescription expectedConfig; local
176 expectedConfig.density = 160;
177 expectedConfig.version = 4;
178 ASSERT_TRUE(filter.match(expectedConfig));
196 ConfigDescription expectedConfig; local
197 expectedConfig.density = 160;
198 expectedConfig.version = 4;
199 ASSERT_TRUE(filter.match(expectedConfig));
/frameworks/base/core/tests/coretests/src/android/content/res/
H A DResourcesManagerTest.java149 final Configuration expectedConfig = new Configuration();
150 expectedConfig.setToDefaults();
151 expectedConfig.setLocales(LocaleList.getAdjustedDefault());
152 expectedConfig.densityDpi = mDisplayMetrics.densityDpi;
153 expectedConfig.orientation = Configuration.ORIENTATION_LANDSCAPE;
155 assertEquals(expectedConfig, resources1.getConfiguration());
156 assertEquals(expectedConfig, resources2.getConfiguration());
157 assertEquals(expectedConfig, resources3.getConfiguration());
/frameworks/base/wifi/tests/src/android/net/wifi/hotspot2/
H A DConfigParserTest.java124 PasspointConfiguration expectedConfig = generateConfigurationFromProfile();
128 assertTrue(actualConfig.equals(expectedConfig));
/frameworks/base/wifi/tests/src/android/net/wifi/hotspot2/omadm/
H A DPpsMoParserTest.java211 PasspointConfiguration expectedConfig = generateConfigurationFromPPSMOTree();
213 assertTrue(actualConfig.equals(expectedConfig));
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
H A DPasspointProviderTest.java102 * @param expectedConfig The expected configuration
105 private void verifyInstalledConfig(PasspointConfiguration expectedConfig, boolean equals) { argument
108 assertTrue(actualConfig.equals(expectedConfig));
110 assertFalse(actualConfig.equals(expectedConfig));
H A DPasspointManagerTest.java179 * @param expectedConfig The expected installed Passpoint configuration
181 private void verifyInstalledConfig(PasspointConfiguration expectedConfig) { argument
184 assertEquals(expectedConfig, installedConfigs.get(0));

Completed in 1077 milliseconds