Home | History | Annotate | Download | only in test

Lines Matching defs:Output

47       || testing::GTEST_FLAG(output) != "unknown"
101 string* output() { return &(fake_sock_writer_->output_); }
110 *output() = "";
112 EXPECT_EQ("event=TestProgramEnd&passed=1\n", *output());
116 *output() = "";
118 EXPECT_EQ("event=TestIterationEnd&passed=1&elapsed_time=0ms\n", *output());
122 *output() = "";
124 EXPECT_EQ("event=TestCaseStart&name=FooTest\n", *output());
128 *output() = "";
130 EXPECT_EQ("event=TestCaseEnd&passed=1&elapsed_time=0ms\n", *output());
134 *output() = "";
136 EXPECT_EQ("event=TestStart&name=Bar\n", *output());
140 *output() = "";
142 EXPECT_EQ("event=TestEnd&passed=1&elapsed_time=0ms\n", *output());
146 *output() = "";
153 *output());
213 using testing::GTEST_FLAG(output);
430 // cannot use the local time zone because the function's output depends
1548 GTEST_FLAG(output) = "";
1575 EXPECT_STREQ("", GTEST_FLAG(output).c_str());
1591 GTEST_FLAG(output) = "xml:foo.xml";
1717 // output value when the flag has wrong format
1728 // output value when the flag overflows as an Int32.
1741 // output value when the flag does not represent a valid decimal
2807 // Nokia's STLport crashes if we try to output infinity or NaN.
2821 // Nokia's STLport crashes if we try to output infinity or NaN.
2903 // Nokia's STLport crashes if we try to output infinity or NaN.
2980 // Nokia's STLport crashes if we try to output infinity or NaN.
3002 // Nokia's STLport crashes if we try to output infinity or NaN.
3017 // Nokia's STLport crashes if we try to output infinity or NaN.
3075 // Nokia's STLport crashes if we try to output infinity or NaN.
4586 // Tests that we can output strings containing embedded NULs.
4598 // Tests that we can output a NUL char.
5463 output(""),
5524 static Flags Output(const char* output) {
5526 flags.output = output;
5593 const char* output;
5614 GTEST_FLAG(output) = "";
5644 EXPECT_STREQ(expected.output, GTEST_FLAG(output).c_str());
6050 GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml"), false);
6066 GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml:file"), false);
6083 Flags::Output("xml:directory/path/"), false);
6738 // Tests that Google Test correctly decides whether to use colors in the output.