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,
116 // Prints a TestPartResult object.
117 std::ostream& operator<<(std::ostream& os, const TestPartResult& result);
119 // An array of TestPartResult objects.
127 // Appends the given TestPartResult to the array.
128 void Append(const TestPartResult& result);
130 // Returns the TestPartResult at the given index (0-based).
131 const TestPartResult& GetTestPartResult(int index) const;
133 // Returns the number of TestPartResult objects in the array.
137 std::vector<TestPartResult> array_;
147 virtual void ReportTestPartResult(const TestPartResult& result) = 0;
163 virtual void ReportTestPartResult(const TestPartResult& result);