Home | History | Annotate | Download | only in test

Lines Matching defs:test_result

1561   TestResult test_result;
1562 ASSERT_EQ(0, test_result.test_property_count());
1567 TestResult test_result;
1569 TestResultAccessor::RecordProperty(&test_result, property);
1570 ASSERT_EQ(1, test_result.test_property_count());
1571 const TestProperty& actual_property = test_result.GetTestProperty(0);
1578 TestResult test_result;
1581 TestResultAccessor::RecordProperty(&test_result, property_1);
1582 TestResultAccessor::RecordProperty(&test_result, property_2);
1583 ASSERT_EQ(2, test_result.test_property_count());
1584 const TestProperty& actual_property_1 = test_result.GetTestProperty(0);
1588 const TestProperty& actual_property_2 = test_result.GetTestProperty(1);
1595 TestResult test_result;
1600 TestResultAccessor::RecordProperty(&test_result, property_1_1);
1601 TestResultAccessor::RecordProperty(&test_result, property_2_1);
1602 TestResultAccessor::RecordProperty(&test_result, property_1_2);
1603 TestResultAccessor::RecordProperty(&test_result, property_2_2);
1605 ASSERT_EQ(2, test_result.test_property_count());
1606 const TestProperty& actual_property_1 = test_result.GetTestProperty(0);
1610 const TestProperty& actual_property_2 = test_result.GetTestProperty(1);
1617 TestResult test_result;
1621 TestResultAccessor::RecordProperty(&test_result, property_1);
1622 TestResultAccessor::RecordProperty(&test_result, property_2);
1623 TestResultAccessor::RecordProperty(&test_result, property_3);
1625 const TestProperty& fetched_property_1 = test_result.GetTestProperty(0);
1626 const TestProperty& fetched_property_2 = test_result.GetTestProperty(1);
1627 const TestProperty& fetched_property_3 = test_result.GetTestProperty(2);
1638 EXPECT_DEATH_IF_SUPPORTED(test_result.GetTestProperty(3), "");
1639 EXPECT_DEATH_IF_SUPPORTED(test_result.GetTestProperty(-1), "");
1646 TestResult test_result;
1649 TestResultAccessor::RecordProperty(&test_result, property),
1651 ASSERT_EQ(0, test_result.test_property_count()) << "Not recorded";