Lines Matching refs:output
643 const std::string output = GetCapturedStdout();
648 output); // #1
654 output); // #2
659 output); // #3
665 output); // #4
671 output); // #5
685 const std::string output = GetCapturedStdout();
691 output);
906 const std::string output = GetCapturedStdout();
908 EXPECT_PRED_FORMAT2(IsSubstring, expect_call_location, output);
1122 // TODO(wan@google.com): We should really verify the output message,
1989 const std::string output = GetCapturedStdout();
1990 EXPECT_PRED_FORMAT2(IsSubstring, "GMOCK WARNING", output);
1991 EXPECT_PRED_FORMAT2(IsNotSubstring, "Stack trace:", output);
2003 const std::string output = GetCapturedStdout();
2004 EXPECT_PRED_FORMAT2(IsSubstring, "GMOCK WARNING", output);
2005 EXPECT_PRED_FORMAT2(IsSubstring, "Stack trace:", output);
2014 EXPECT_PRED_FORMAT2(IsSubstring, "VoidMethod(", output);
2056 // Tests how the --gmock_verbose flag affects Google Mock's output.
2060 // Verifies that the given Google Mock output is correct. (When
2061 // should_print is true, the output should match the given regex and
2063 // false, the output should be empty.)
2064 void VerifyOutput(const std::string& output, bool should_print,
2068 EXPECT_THAT(output.c_str(), HasSubstr(expected_substring));
2072 EXPECT_THAT(output.c_str(), HasSubstr(function_name));
2078 EXPECT_STREQ("", output.c_str());