Lines Matching refs:property
1212 TestProperty property("key", "1");
1213 EXPECT_STREQ("key", property.key());
1214 EXPECT_STREQ("1", property.value());
1219 TestProperty property("key", "1");
1220 EXPECT_STREQ("1", property.value());
1221 property.SetValue("2");
1222 EXPECT_STREQ("2", property.value());
1439 const TestProperty property("key", "value");
1440 EXPECT_STREQ("key", property.key());
1441 EXPECT_STREQ("value", property.value());
1445 TestProperty property("key", "value_1");
1446 EXPECT_STREQ("key", property.key());
1447 property.SetValue("value_2");
1448 EXPECT_STREQ("key", property.key());
1449 EXPECT_STREQ("value_2", property.value());
1565 // Tests TestResult has the expected property when added.
1568 TestProperty property("key_1", "1");
1569 TestResultAccessor::RecordProperty(&test_result, property);
1642 // When a property using a reserved key is supplied to this function, it tests
1644 // property is not recorded.
1647 TestProperty property(key, "1");
1649 TestResultAccessor::RecordProperty(&test_result, property),
1654 // Attempting to recording a property with the Reserved literal "name"
1655 // should add a non-fatal failure and the property should not be recorded.
1660 // Attempting to recording a property with the Reserved literal "status"
1661 // should add a non-fatal failure and the property should not be recorded.
1666 // Attempting to recording a property with the Reserved literal "time"
1667 // should add a non-fatal failure and the property should not be recorded.
1672 // Attempting to recording a property with the Reserved literal "classname"
1673 // should add a non-fatal failure and the property should not be recorded.
2047 // desirable property for performance.