Home | History | Annotate | Download | only in test

Lines Matching full:testing

60 using testing::ScopedFakeTestPartResultReporter;
61 using testing::TestPartResultArray;
63 using testing::internal::String;
80 // The testing::Test:: prefix is necessary when calling
82 if (testing::Test::HasFatalFailure()) return;
111 // fixture, the testing::Test:: prefix is not needed.
140 // A helper function for testing SCOPED_TRACE.
146 // Another helper function for testing SCOPED_TRACE.
148 SCOPED_TRACE(testing::Message() << "n = " << n);
177 SCOPED_TRACE(testing::Message() << "i = " << i);
248 class NonFatalFailureInFixtureConstructorTest : public testing::Test {
273 class FatalFailureInFixtureConstructorTest : public testing::Test {
308 class NonFatalFailureInSetUpTest : public testing::Test {
333 class FatalFailureInSetUpTest : public testing::Test {
370 class ExceptionInFixtureCtorTest : public testing::Test {
405 class ExceptionInSetUpTest : public testing::Test {
433 class ExceptionInTestFunctionTest : public testing::Test {
466 class ExceptionInTearDownTest : public testing::Test {
501 class MixedUpTestCaseTest : public testing::Test {
507 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
517 class MixedUpTestCaseTest : public testing::Test {
525 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
540 class TEST_F_before_TEST_in_same_test_case : public testing::Test {
549 class TEST_before_TEST_F_in_same_test_case : public testing::Test {
559 // Used for testing EXPECT_NONFATAL_FAILURE() and EXPECT_FATAL_FAILURE().
728 class TypedTest : public testing::Test {
731 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
747 class TypedTestP : public testing::Test {
762 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
781 class ATypedDeathTest : public testing::Test {
784 typedef testing::Types<int, double> NumericTypes;
799 class ATypeParamDeathTest : public testing::Test {
817 class ExpectFailureTest : public testing::Test {
943 // Two test environments for testing testing::AddGlobalTestEnvironment().
945 class FooEnvironment : public testing::Environment {
957 class BarEnvironment : public testing::Environment {
982 testing::InitGoogleTest(&argc, argv);
988 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") {
1013 testing::AddGlobalTestEnvironment(new FooEnvironment);
1014 testing::AddGlobalTestEnvironment(new BarEnvironment);