Home
last modified time | relevance | path

Searched refs:test_property_count (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgtest-unittest-api_test.cc280 EXPECT_EQ(0, tests[1]->result()->test_property_count()); in TearDown()
288 EXPECT_EQ(0, tests[2]->result()->test_property_count()); in TearDown()
296 EXPECT_EQ(1, tests[3]->result()->test_property_count()); in TearDown()
312 EXPECT_EQ(0, tests[0]->result()->test_property_count()); in TearDown()
H A Dgtest_stress_test.cc140 for (int i = 0; i < result->test_property_count(); ++i) in TEST()
143 EXPECT_EQ(kThreadCount * 2 + 1, result->test_property_count()) in TEST()
H A Dgtest_unittest.cc1505 ASSERT_EQ(0, test_result.test_property_count()); in TEST()
1513 ASSERT_EQ(1, test_result.test_property_count()); in TEST()
1526 ASSERT_EQ(2, test_result.test_property_count()); in TEST()
1548 ASSERT_EQ(2, test_result.test_property_count()); in TEST()
2013 ASSERT_EQ(0, test_result.test_property_count()) in ExpectNonFatalFailureRecordingPropertyWithReservedKey()
2067 ASSERT_EQ(1, test_suite->ad_hoc_test_result().test_property_count()); in SetUpTestSuite()
2079 ASSERT_EQ(1, unit_test_.ad_hoc_test_result().test_property_count()); in TEST_F()
2091 ASSERT_EQ(2, unit_test_.ad_hoc_test_result().test_property_count()); in TEST_F()
2109 ASSERT_EQ(2, unit_test_.ad_hoc_test_result().test_property_count()); in TEST_F()
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md1218 ##### test_property_count {#TestResult::test_property_count}
1220 `int TestResult::test_property_count() const`
1279 `i` can range from 0 to `test_property_count() - 1`. If `i` is not in that
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc2297 if (i < 0 || i >= test_property_count()) internal::posix::Abort(); in GetTestProperty()
2478 int TestResult::test_property_count() const { in test_property_count() function in testing::TestResult
4325 if (failures == 0 && skips == 0 && result.test_property_count() == 0) { in OutputXmlTestResult()
4442 for (int i = 0; i < result.test_property_count(); ++i) { in TestPropertiesAsXmlAttributes()
4455 if (result.test_property_count() <= 0) { in OutputXmlTestProperties()
4460 for (int i = 0; i < result.test_property_count(); ++i) { in OutputXmlTestProperties()
4929 for (int i = 0; i < result.test_property_count(); ++i) { in TestPropertiesAsJson()
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h412 int test_property_count() const;