Home
last modified time | relevance | path

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

/external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
DAreaCodeMapTest.java174 AreaCodeMap localAreaCodeMap = new AreaCodeMap(); in testReadWriteExternalWithDefaultStrategy() local
175 localAreaCodeMap.readAreaCodeMap(createDefaultStorageMapCandidate()); in testReadWriteExternalWithDefaultStrategy()
176 assertFalse(localAreaCodeMap.getAreaCodeMapStorage() instanceof FlyweightMapStorage); in testReadWriteExternalWithDefaultStrategy()
179 newAreaCodeMap = createNewAreaCodeMap(localAreaCodeMap); in testReadWriteExternalWithDefaultStrategy()
180 assertEquals(localAreaCodeMap.toString(), newAreaCodeMap.toString()); in testReadWriteExternalWithDefaultStrategy()
184 AreaCodeMap localAreaCodeMap = new AreaCodeMap(); in testReadWriteExternalWithFlyweightStrategy() local
185 localAreaCodeMap.readAreaCodeMap(createFlyweightStorageMapCandidate()); in testReadWriteExternalWithFlyweightStrategy()
186 assertTrue(localAreaCodeMap.getAreaCodeMapStorage() instanceof FlyweightMapStorage); in testReadWriteExternalWithFlyweightStrategy()
189 newAreaCodeMap = createNewAreaCodeMap(localAreaCodeMap); in testReadWriteExternalWithFlyweightStrategy()
190 assertEquals(localAreaCodeMap.toString(), newAreaCodeMap.toString()); in testReadWriteExternalWithFlyweightStrategy()