Home | History | Annotate | Download | only in gtest

Lines Matching defs:TestPartResult

46 // Don't inherit from TestPartResult as its destructor is not virtual.
47 class GTEST_API_ TestPartResult {
57 // C'tor. TestPartResult does NOT have a default constructor.
59 // TestPartResult object.
60 TestPartResult(Type a_type,
119 // Prints a TestPartResult object.
120 std::ostream& operator<<(std::ostream& os, const TestPartResult& result);
122 // An array of TestPartResult objects.
130 // Appends the given TestPartResult to the array.
131 void Append(const TestPartResult& result);
133 // Returns the TestPartResult at the given index (0-based).
134 const TestPartResult& GetTestPartResult(int index) const;
136 // Returns the number of TestPartResult objects in the array.
140 std::vector<TestPartResult> array_;
150 virtual void ReportTestPartResult(const TestPartResult& result) = 0;
166 virtual void ReportTestPartResult(const TestPartResult& result);