Lines Matching refs:property
1075 TestProperty property("key", "1");
1076 EXPECT_STREQ("key", property.key());
1077 EXPECT_STREQ("1", property.value());
1082 TestProperty property("key", "1");
1083 EXPECT_STREQ("1", property.value());
1084 property.SetValue("2");
1085 EXPECT_STREQ("2", property.value());
1325 const TestProperty property("key", "value");
1326 EXPECT_STREQ("key", property.key());
1327 EXPECT_STREQ("value", property.value());
1331 TestProperty property("key", "value_1");
1332 EXPECT_STREQ("key", property.key());
1333 property.SetValue("value_2");
1334 EXPECT_STREQ("key", property.key());
1335 EXPECT_STREQ("value_2", property.value());
1451 // Tests TestResult has the expected property when added.
1454 TestProperty property("key_1", "1");
1455 property);
1902 // desirable property for performance.
1933 // When a property using a reserved key is supplied to this function, it
1935 // and that the property is not recorded.
1939 ASSERT_EQ(0, test_result.test_property_count()) << "Property for key '" << key
1965 // Tests that property recording functions in UnitTest outside of tests
1997 // Tests TestResult has the expected property when added.
2091 // This will test property recording outside of any test or test case.