Home | History | Annotate | Download | only in src

Lines Matching refs:TestPartResult

51 internal::String TestPartResult::ExtractSummary(const char* message) {
57 // Prints a TestPartResult object.
58 std::ostream& operator<<(std::ostream& os, const TestPartResult& result) {
61 << (result.type() == TestPartResult::kSuccess ? "Success" :
62 result.type() == TestPartResult::kFatalFailure ? "Fatal failure" :
69 : array_(new internal::Vector<TestPartResult>) {
77 // Appends a TestPartResult to the array.
78 void TestPartResultArray::Append(const TestPartResult& result) {
82 // Returns the TestPartResult at the given index (0-based).
83 const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const {
92 // Returns the number of TestPartResult objects in the array.
112 const TestPartResult& result) {