Home | History | Annotate | Download | only in test

Lines Matching refs:property

786   TestProperty property("key", "1");
787 EXPECT_STREQ("key", property.key());
788 EXPECT_STREQ("1", property.value());
793 TestProperty property("key", "1");
794 EXPECT_STREQ("1", property.value());
795 property.SetValue("2");
796 EXPECT_STREQ("2", property.value());
1108 // Tests TestResult::test_properties() has the expected property when added.
1111 TestProperty property("key_1", "1");
1112 test_result.RecordProperty(property);
1161 // When a property using a reserved key is supplied to this function, it tests
1163 // property is not recorded.
1166 TestProperty property(key, "1");
1167 EXPECT_NONFATAL_FAILURE(test_result.RecordProperty(property), "Reserved key");
1171 // Attempting to recording a property with the Reserved literal "name"
1172 // should add a non-fatal failure and the property should not be recorded.
1177 // Attempting to recording a property with the Reserved literal "status"
1178 // should add a non-fatal failure and the property should not be recorded.
1183 // Attempting to recording a property with the Reserved literal "time"
1184 // should add a non-fatal failure and the property should not be recorded.
1189 // Attempting to recording a property with the Reserved literal "classname"
1190 // should add a non-fatal failure and the property should not be recorded.
1537 // desirable property for performance.