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;
51 class SuccessfulTest : public Test {
59 class FailedTest : public Test {
66 class DisabledTest : public Test {
70 FAIL() << "Unexpected failure: Disabled test should not be run";
73 TEST(MixedResultTest, Succeeds) {
78 TEST(MixedResultTest, Fails) {
83 TEST(MixedResultTest, DISABLED_test) {
84 FAIL() << "Unexpected failure: Disabled test should not be run";
87 TEST(XmlQuotingTest, OutputsCData) {
92 // Helps to test that invalid characters produced by test code do not make
94 TEST(InvalidCharactersTest, InvalidCharactersInMessage) {
98 class PropertyRecordingTest : public Test {
120 TEST(NoFixtureTest, RecordProperty) {
125 testing::Test::RecordProperty(key, value);
130 testing::Test::RecordProperty(key, value);
133 TEST(NoFixtureTest, ExternalUtilityThatCallsRecordIntValuedProperty) {
137 TEST(NoFixtureTest, ExternalUtilityThatCallsRecordStringValuedProperty) {
141 // Verifies that the test parameter value is output in the 'value_param'
150 template <typename T> class TypedTest : public Test {};
157 template <typename T> class TypeParameterizedTestCase : public Test {};