Lines Matching refs:store
147 PropertyStore store; in TEST_F() local
148 eap_.InitPropertyStore(&store); in TEST_F()
151 EXPECT_TRUE(store.SetStringProperty(kEapIdentityProperty, kIdentity, &error)); in TEST_F()
268 MockStore store; in TEST_F() local
270 EXPECT_CALL(store, GetCryptedString(_, _, _)).WillRepeatedly(Return(false)); in TEST_F()
271 EXPECT_CALL(store, GetString(_, _, _)).WillRepeatedly(Return(false)); in TEST_F()
275 EXPECT_CALL(store, GetCryptedString( in TEST_F()
279 EXPECT_CALL(store, GetString( in TEST_F()
283 EXPECT_CALL(store, GetCryptedString( in TEST_F()
287 eap_.Load(&store, kId); in TEST_F()
288 Mock::VerifyAndClearExpectations(&store); in TEST_F()
296 EXPECT_CALL(store, DeleteKey(_, _)).Times(AnyNumber()); in TEST_F()
297 EXPECT_CALL(store, SetCryptedString(_, _, _)).Times(0); in TEST_F()
298 EXPECT_CALL(store, DeleteKey(kId, EapCredentials::kStorageEapIdentity)); in TEST_F()
299 EXPECT_CALL(store, SetString( in TEST_F()
301 EXPECT_CALL(store, DeleteKey(kId, EapCredentials::kStorageEapPassword)); in TEST_F()
302 eap_.Save(&store, kId, false); in TEST_F()
303 Mock::VerifyAndClearExpectations(&store); in TEST_F()
307 EXPECT_CALL(store, DeleteKey(_, _)).Times(AnyNumber()); in TEST_F()
308 EXPECT_CALL(store, SetCryptedString( in TEST_F()
310 EXPECT_CALL(store, SetString( in TEST_F()
312 EXPECT_CALL(store, SetCryptedString( in TEST_F()
314 eap_.Save(&store, kId, true); in TEST_F()