Home | History | Annotate | Download | only in test

Lines Matching refs:TEST

32 // Unit test for Google Test XML output.
34 // A user can specify XML output in a Google Test program to run via
38 // This program will be invoked from a Python unit test. Don't run it
47 using ::testing::Test;
50 class SuccessfulTest : public Test {
58 class FailedTest : public Test {
65 class DisabledTest : public Test {
69 FAIL() << "Unexpected failure: Disabled test should not be run";
72 TEST(MixedResultTest, Succeeds) {
77 TEST(MixedResultTest, Fails) {
82 TEST(MixedResultTest, DISABLED_test) {
83 FAIL() << "Unexpected failure: Disabled test should not be run";
86 TEST(XmlQuotingTest, OutputsCData) {
91 // Helps to test that invalid characters produced by test code do not make
93 TEST(InvalidCharactersTest, InvalidCharactersInMessage) {
97 class PropertyRecordingTest : public Test {
119 TEST(NoFixtureTest, RecordProperty) {
124 testing::Test::RecordProperty(key, value);
129 testing::Test::RecordProperty(key, value);
132 TEST(NoFixtureTest, ExternalUtilityThatCallsRecordIntValuedProperty) {
136 TEST(NoFixtureTest, ExternalUtilityThatCallsRecordStringValuedProperty) {
140 // Verifies that the test parameter value is output in the 'value_param'
150 template <typename T> class TypedTest : public Test {};
159 template <typename T> class TypeParameterizedTestCase : public Test {};