Lines Matching refs:store
62 PropertyStore store; in TEST_F() local
63 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
68 EXPECT_FALSE(store.GetStringProperty("DHCPProperty.Hostname", in TEST_F()
74 EXPECT_FALSE(store.GetStringProperty("DHCPProperty.VendorClass", in TEST_F()
80 EXPECT_FALSE(store.GetStringProperty("DHCPProperty.NotAProp", in TEST_F()
87 PropertyStore store; in TEST_F() local
88 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
92 EXPECT_TRUE(store.SetStringProperty("DHCPProperty.Hostname", kOverrideValue, &error)); in TEST_F()
97 PropertyStore store; in TEST_F() local
98 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
101 EXPECT_TRUE(store.SetStringProperty("DHCPProperty.Hostname", kHostname, &error)); in TEST_F()
106 PropertyStore store; in TEST_F() local
107 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
111 EXPECT_FALSE(store.SetStringProperty("DHCPProperty.Hostname", kHostname, &error)); in TEST_F()
116 PropertyStore store; in TEST_F() local
117 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
122 store.GetStringProperty("DHCPProperty.Hostname", &value_in_prop_store, &error); in TEST_F()
127 PropertyStore store; in TEST_F() local
128 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
132 store.GetStringProperty("DHCPProperty.Hostname", &value_in_prop_store, &error); in TEST_F()
137 PropertyStore store; in TEST_F() local
138 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
143 store.ClearProperty("DHCPProperty.Hostname", &error); in TEST_F()
148 PropertyStore store; in TEST_F() local
149 dhcp_properties_.InitPropertyStore(&store); in TEST_F()
153 store.ClearProperty("DHCPProperty.Hostname", &error); in TEST_F()