Sacado Package Browser (Single Doxygen Collection)
Version of the Day
|
Go to the source code of this file.
Classes | |
class | SuccessfulTest |
class | FailedTest |
class | DisabledTest |
class | SkippedTest |
class | PropertyRecordingTest |
class | SetupFailTest |
class | TearDownFailTest |
class | ValueParamTest |
class | TypedTest< T > |
class | TypeParameterizedTestSuite< T > |
Typedefs | |
typedef testing::Types< int, long > | TypedTestTypes |
typedef testing::Types< int, long > | TypeParameterizedTestSuiteTypes |
Functions | |
TEST_F (SuccessfulTest, Succeeds) | |
TEST_F (FailedTest, Fails) | |
TEST_F (DisabledTest, DISABLED_test_not_run) | |
TEST_F (SkippedTest, Skipped) | |
TEST_F (SkippedTest, SkippedWithMessage) | |
TEST_F (SkippedTest, SkippedAfterFailure) | |
TEST (MixedResultTest, Succeeds) | |
TEST (MixedResultTest, Fails) | |
TEST (MixedResultTest, DISABLED_test) | |
TEST (XmlQuotingTest, OutputsCData) | |
TEST (InvalidCharactersTest, InvalidCharactersInMessage) | |
TEST_F (PropertyRecordingTest, OneProperty) | |
TEST_F (PropertyRecordingTest, IntValuedProperty) | |
TEST_F (PropertyRecordingTest, ThreeProperties) | |
TEST_F (PropertyRecordingTest, TwoValuesForOneKeyUsesLastValue) | |
TEST (NoFixtureTest, RecordProperty) | |
void | ExternalUtilityThatCallsRecordProperty (const std::string &key, int value) |
void | ExternalUtilityThatCallsRecordProperty (const std::string &key, const std::string &value) |
TEST (NoFixtureTest, ExternalUtilityThatCallsRecordIntValuedProperty) | |
TEST (NoFixtureTest, ExternalUtilityThatCallsRecordStringValuedProperty) | |
TEST_F (SetupFailTest, NoopPassingTest) | |
TEST_F (TearDownFailTest, NoopPassingTest) | |
TEST_P (ValueParamTest, HasValueParamAttribute) | |
TEST_P (ValueParamTest, AnotherTestThatHasValueParamAttribute) | |
INSTANTIATE_TEST_SUITE_P (Single, ValueParamTest, Values(33, 42)) | |
TYPED_TEST_SUITE (TypedTest, TypedTestTypes) | |
TYPED_TEST (TypedTest, HasTypeParamAttribute) | |
TYPED_TEST_SUITE_P (TypeParameterizedTestSuite) | |
TYPED_TEST_P (TypeParameterizedTestSuite, HasTypeParamAttribute) | |
REGISTER_TYPED_TEST_SUITE_P (TypeParameterizedTestSuite, HasTypeParamAttribute) | |
INSTANTIATE_TYPED_TEST_SUITE_P (Single, TypeParameterizedTestSuite, TypeParameterizedTestSuiteTypes) | |
int | main (int argc, char **argv) |
typedef testing::Types<int, long> TypedTestTypes |
Definition at line 191 of file gtest_xml_output_unittest_.cc.
typedef testing::Types<int, long> TypeParameterizedTestSuiteTypes |
Definition at line 202 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | SuccessfulTest | , |
Succeeds | |||
) |
Definition at line 53 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | FailedTest | , |
Fails | |||
) |
Definition at line 61 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | DisabledTest | , |
DISABLED_test_not_run | |||
) |
Definition at line 68 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | SkippedTest | , |
Skipped | |||
) |
Definition at line 75 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | SkippedTest | , |
SkippedWithMessage | |||
) |
Definition at line 79 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | SkippedTest | , |
SkippedAfterFailure | |||
) |
Definition at line 83 of file gtest_xml_output_unittest_.cc.
TEST | ( | MixedResultTest | , |
Succeeds | |||
) |
Definition at line 88 of file gtest_xml_output_unittest_.cc.
TEST | ( | MixedResultTest | , |
Fails | |||
) |
Definition at line 93 of file gtest_xml_output_unittest_.cc.
TEST | ( | MixedResultTest | , |
DISABLED_test | |||
) |
Definition at line 98 of file gtest_xml_output_unittest_.cc.
TEST | ( | XmlQuotingTest | , |
OutputsCData | |||
) |
Definition at line 102 of file gtest_xml_output_unittest_.cc.
TEST | ( | InvalidCharactersTest | , |
InvalidCharactersInMessage | |||
) |
Definition at line 109 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | PropertyRecordingTest | , |
OneProperty | |||
) |
Definition at line 125 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | PropertyRecordingTest | , |
IntValuedProperty | |||
) |
Definition at line 129 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | PropertyRecordingTest | , |
ThreeProperties | |||
) |
Definition at line 133 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | PropertyRecordingTest | , |
TwoValuesForOneKeyUsesLastValue | |||
) |
Definition at line 139 of file gtest_xml_output_unittest_.cc.
TEST | ( | NoFixtureTest | , |
RecordProperty | |||
) |
Definition at line 144 of file gtest_xml_output_unittest_.cc.
void ExternalUtilityThatCallsRecordProperty | ( | const std::string & | key, |
int | value | ||
) |
Definition at line 148 of file gtest_xml_output_unittest_.cc.
void ExternalUtilityThatCallsRecordProperty | ( | const std::string & | key, |
const std::string & | value | ||
) |
Definition at line 152 of file gtest_xml_output_unittest_.cc.
TEST | ( | NoFixtureTest | , |
ExternalUtilityThatCallsRecordIntValuedProperty | |||
) |
Definition at line 157 of file gtest_xml_output_unittest_.cc.
TEST | ( | NoFixtureTest | , |
ExternalUtilityThatCallsRecordStringValuedProperty | |||
) |
Definition at line 161 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | SetupFailTest | , |
NoopPassingTest | |||
) |
Definition at line 172 of file gtest_xml_output_unittest_.cc.
TEST_F | ( | TearDownFailTest | , |
NoopPassingTest | |||
) |
Definition at line 179 of file gtest_xml_output_unittest_.cc.
TEST_P | ( | ValueParamTest | , |
HasValueParamAttribute | |||
) |
Definition at line 184 of file gtest_xml_output_unittest_.cc.
TEST_P | ( | ValueParamTest | , |
AnotherTestThatHasValueParamAttribute | |||
) |
Definition at line 185 of file gtest_xml_output_unittest_.cc.
INSTANTIATE_TEST_SUITE_P | ( | Single | , |
ValueParamTest | , | ||
Values(33, 42) | |||
) |
TYPED_TEST_SUITE | ( | TypedTest | , |
TypedTestTypes | |||
) |
TYPED_TEST | ( | TypedTest | , |
HasTypeParamAttribute | |||
) |
Definition at line 193 of file gtest_xml_output_unittest_.cc.
TYPED_TEST_SUITE_P | ( | TypeParameterizedTestSuite | ) |
TYPED_TEST_P | ( | TypeParameterizedTestSuite | , |
HasTypeParamAttribute | |||
) |
Definition at line 200 of file gtest_xml_output_unittest_.cc.
REGISTER_TYPED_TEST_SUITE_P | ( | TypeParameterizedTestSuite | , |
HasTypeParamAttribute | |||
) |
INSTANTIATE_TYPED_TEST_SUITE_P | ( | Single | , |
TypeParameterizedTestSuite | , | ||
TypeParameterizedTestSuiteTypes | |||
) |
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 206 of file gtest_xml_output_unittest_.cc.