Home | History | Annotate | Download | only in test

Lines Matching refs:property

1068   TestProperty property("key", "1");
1069 EXPECT_STREQ("key", property.key());
1070 EXPECT_STREQ("1", property.value());
1075 TestProperty property("key", "1");
1076 EXPECT_STREQ("1", property.value());
1077 property.SetValue("2");
1078 EXPECT_STREQ("2", property.value());
1318 const TestProperty property("key", "value");
1319 EXPECT_STREQ("key", property.key());
1320 EXPECT_STREQ("value", property.value());
1324 TestProperty property("key", "value_1");
1325 EXPECT_STREQ("key", property.key());
1326 property.SetValue("value_2");
1327 EXPECT_STREQ("key", property.key());
1328 EXPECT_STREQ("value_2", property.value());
1444 // Tests TestResult has the expected property when added.
1447 TestProperty property("key_1", "1");
1448 TestResultAccessor::RecordProperty(&test_result, "testcase", property);
1909 // desirable property for performance.
1940 // When a property using a reserved key is supplied to this function, it
1942 // and that the property is not recorded.
1946 ASSERT_EQ(0, test_result.test_property_count()) << "Property for key '" << key
1972 // Tests that property recording functions in UnitTest outside of tests
2004 // Tests TestResult has the expected property when added.
2098 // This will test property recording outside of any test or test case.