Lines Matching refs:homepage
356 std::string homepage = "http://google.com";
357 ASSERT_FALSE(settings.GetString("global.homepage", &homepage));
358 ASSERT_EQ(std::string("http://google.com"), homepage);
363 settings.SetString("global.homepage", "http://scurvy.com");
365 homepage = "http://google.com";
366 ASSERT_TRUE(settings.GetString("global.homepage", &homepage));
367 ASSERT_EQ(std::string("http://scurvy.com"), homepage);