Home | History | Annotate | Download | only in gtest

Lines Matching defs:TestPartResult

45 // Don't inherit from TestPartResult as its destructor is not virtual.
46 class TestPartResult {
48 // C'tor. TestPartResult does NOT have a default constructor.
50 // TestPartResult object.
51 TestPartResult(TestPartResultType type,
98 // Prints a TestPartResult object.
99 std::ostream& operator<<(std::ostream& os, const TestPartResult& result);
101 // An array of TestPartResult objects.
113 // Appends the given TestPartResult to the array.
114 void Append(const TestPartResult& result);
116 // Returns the TestPartResult at the given index (0-based).
117 const TestPartResult& GetTestPartResult(int index) const;
119 // Returns the number of TestPartResult objects in the array.
124 internal::List<TestPartResult>* const list_;
134 virtual void ReportTestPartResult(const TestPartResult& result) = 0;
140 // An object of this class appends a TestPartResult object to the
154 // Appends the TestPartResult object to the TestPartResultArray
159 virtual void ReportTestPartResult(const TestPartResult& result);