Home | History | Annotate | Download | only in gtest

Lines Matching defs:TestResult

1565 // class TestResult
1567 // Creates an empty TestResult.
1568 TestResult::TestResult()
1574 TestResult::~TestResult() {
1578 void TestResult::AddTestPartResult(const TestPartResult& test_part_result) {
1585 void TestResult::RecordProperty(const TestProperty& test_property) {
1602 bool TestResult::ValidateTestProperty(const TestProperty& test_property) {
1616 void TestResult::Clear() {
1629 int TestResult::successful_part_count() const {
1639 int TestResult::failed_part_count() const {
1649 bool TestResult::HasFatalFailure() const {
1655 int TestResult::total_part_count() const {
1904 const internal::TestResult* TestInfo::result() const { return impl_->result(); }
2568 const internal::TestResult* result);
2702 const internal::TestResult * const result = test_info->result();
2783 const internal::TestResult* result) {
2893 // Adds a TestPartResult to the current TestResult object. All Google Test
2936 // Creates and adds a property to the current TestResult. If a property matching
3344 // Returns the TestResult for the test that's currently running, or
3345 // the TestResult for the ad hoc test if no test is running.
3346 internal::TestResult* UnitTestImpl::current_test_result() {