Home | History | Annotate | Download | only in test

Lines Matching refs:property

1347   TestProperty property("key", "1");
1348 EXPECT_STREQ("key", property.key());
1349 EXPECT_STREQ("1", property.value());
1354 TestProperty property("key", "1");
1355 EXPECT_STREQ("1", property.value());
1356 property.SetValue("2");
1357 EXPECT_STREQ("2", property.value());
1597 const TestProperty property("key", "value");
1598 EXPECT_STREQ("key", property.key());
1599 EXPECT_STREQ("value", property.value());
1603 TestProperty property("key", "value_1");
1604 EXPECT_STREQ("key", property.key());
1605 property.SetValue("value_2");
1606 EXPECT_STREQ("key", property.key());
1607 EXPECT_STREQ("value_2", property.value());
1723 // Tests TestResult has the expected property when added.
1726 TestProperty property("key_1", "1");
1727 TestResultAccessor::RecordProperty(&test_result, property);
1800 // When a property using a reserved key is supplied to this function, it tests
1802 // property is not recorded.
1805 TestProperty property(key, "1");
1807 TestResultAccessor::RecordProperty(&test_result, property),
1812 // Attempting to recording a property with the Reserved literal "name"
1813 // should add a non-fatal failure and the property should not be recorded.
1818 // Attempting to recording a property with the Reserved literal "status"
1819 // should add a non-fatal failure and the property should not be recorded.
1824 // Attempting to recording a property with the Reserved literal "time"
1825 // should add a non-fatal failure and the property should not be recorded.
1830 // Attempting to recording a property with the Reserved literal "classname"
1831 // should add a non-fatal failure and the property should not be recorded.
2209 // desirable property for performance.