Home | History | Annotate | Download | only in test

Lines Matching defs:Output

47       || testing::GTEST_FLAG(output) != "unknown"
100 string* output() { return &(fake_sock_writer_->output_); }
109 *output() = "";
111 EXPECT_EQ("event=TestProgramEnd&passed=1\n", *output());
115 *output() = "";
117 EXPECT_EQ("event=TestIterationEnd&passed=1&elapsed_time=0ms\n", *output());
121 *output() = "";
123 EXPECT_EQ("event=TestCaseStart&name=FooTest\n", *output());
127 *output() = "";
129 EXPECT_EQ("event=TestCaseEnd&passed=1&elapsed_time=0ms\n", *output());
133 *output() = "";
135 EXPECT_EQ("event=TestStart&name=Bar\n", *output());
139 *output() = "";
141 EXPECT_EQ("event=TestEnd&passed=1&elapsed_time=0ms\n", *output());
145 *output() = "";
152 *output());
212 using testing::GTEST_FLAG(output);
435 // cannot use the local time zone because the function's output depends
1545 GTEST_FLAG(output) = "";
1572 EXPECT_STREQ("", GTEST_FLAG(output).c_str());
1588 GTEST_FLAG(output) = "xml:foo.xml";
1710 // output value when the flag has wrong format
1721 // output value when the flag overflows as an Int32.
1734 // output value when the flag does not represent a valid decimal
2800 // Nokia's STLport crashes if we try to output infinity or NaN.
2814 // Nokia's STLport crashes if we try to output infinity or NaN.
2896 // Nokia's STLport crashes if we try to output infinity or NaN.
2973 // Nokia's STLport crashes if we try to output infinity or NaN.
2995 // Nokia's STLport crashes if we try to output infinity or NaN.
3010 // Nokia's STLport crashes if we try to output infinity or NaN.
3068 // Nokia's STLport crashes if we try to output infinity or NaN.
4488 // Tests that we can output strings containing embedded NULs.
4500 // Tests that we can output a NUL char.
5287 output(""),
5348 static Flags Output(const char* output) {
5350 flags.output = output;
5417 const char* output;
5438 GTEST_FLAG(output) = "";
5468 EXPECT_STREQ(expected.output, GTEST_FLAG(output).c_str());
5874 GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml"), false);
5890 GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml:file"), false);
5907 Flags::Output("xml:directory/path/"), false);
6461 // Tests that Google Test correctly decides whether to use colors in the output.