Lines Matching refs:SetString
97 TEST_F(PrefsTest, SetString) { in TEST_F() argument
99 EXPECT_TRUE(prefs_.SetString(kKey, kValue)); in TEST_F()
107 EXPECT_FALSE(prefs_.SetString(kKeyWithDots, "some value")); in TEST_F()
115 EXPECT_TRUE(prefs_.SetString(kKey, kValue)); in TEST_F()
123 EXPECT_FALSE(prefs_.SetString(kKey, "test value")); in TEST_F()
128 EXPECT_FALSE(prefs_.SetString(kKey, "test value")); in TEST_F()
291 prefs_.SetString(kKey, "value"); in TEST_F()
309 prefs_.SetString(kKey, "value"); in TEST_F()
321 EXPECT_TRUE(prefs_.SetString(kKey, "value")); in TEST_F()
323 EXPECT_TRUE(prefs_.SetString(kKey, "other value")); in TEST_F()
325 EXPECT_TRUE(prefs_.SetString(kKey, "yet another value")); in TEST_F()
335 EXPECT_FALSE(prefs_.SetString(kInvalidKey, "value")); in TEST_F()