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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiApConfigStoreTest.java162 WifiConfiguration expectedConfig = setupApConfig(
168 writeApConfigFile(expectedConfig);
171 verifyApConfig(expectedConfig, store.getApConfiguration());
182 WifiConfiguration expectedConfig = setupApConfig(
188 writeApConfigFile(expectedConfig);
191 verifyApConfig(expectedConfig, store.getApConfiguration());
209 WifiConfiguration expectedConfig = setupApConfig(
215 store.setApConfiguration(expectedConfig);
216 verifyApConfig(expectedConfig, store.getApConfiguration());
240 WifiConfiguration expectedConfig
[all...]
H A DSoftApManagerTest.java904 WifiConfiguration expectedConfig;
915 expectedConfig = new WifiConfiguration(mDefaultApConfig);
917 expectedConfig = new WifiConfiguration(config);
936 WifiConfigurationTestUtil.assertConfigurationEqual(expectedConfig, configCaptor.getValue());
H A DWifiStateMachineTest.java1608 WifiConfiguration expectedConfig = new WifiConfiguration();
1609 expectedConfig.SSID = "TestSSID";
1611 .thenReturn(expectedConfig);
1616 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/services/tests/servicestests/src/com/android/server/net/
H A DIpConfigStoreTest.java54 IpConfiguration expectedConfig = new IpConfiguration(IpAssignment.DHCP,
58 writeDhcpConfigV2(outputStream, KEY_CONFIG, expectedConfig);
67 assertEquals(expectedConfig, actualConfig);
/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.java105 * @param expectedConfig The expected configuration
108 private void verifyInstalledConfig(PasspointConfiguration expectedConfig, boolean equals) { argument
111 assertTrue(actualConfig.equals(expectedConfig));
113 assertFalse(actualConfig.equals(expectedConfig));
H A DPasspointManagerTest.java210 * @param expectedConfig The expected installed Passpoint configuration
212 private void verifyInstalledConfig(PasspointConfiguration expectedConfig) { argument
215 assertEquals(expectedConfig, installedConfigs.get(0));

Completed in 287 milliseconds