• Home
  • Raw
  • Download

Lines Matching refs:testing

53 using testing::ScopedFakeTestPartResultReporter;
54 using testing::TestPartResultArray;
56 namespace posix = ::testing::internal::posix;
57 using testing::internal::String;
76 if (testing::Test::HasFatalFailure()) return; in TryTestSubroutine()
142 SCOPED_TRACE(testing::Message() << "n = " << n); in SubWithTrace()
171 SCOPED_TRACE(testing::Message() << "i = " << i); in TEST()
241 class NonFatalFailureInFixtureConstructorTest : public testing::Test {
266 class FatalFailureInFixtureConstructorTest : public testing::Test {
301 class NonFatalFailureInSetUpTest : public testing::Test {
326 class FatalFailureInSetUpTest : public testing::Test {
363 class ExceptionInFixtureCtorTest : public testing::Test {
398 class ExceptionInSetUpTest : public testing::Test {
426 class ExceptionInTestFunctionTest : public testing::Test {
459 class ExceptionInTearDownTest : public testing::Test {
494 class MixedUpTestCaseTest : public testing::Test {
500 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
510 class MixedUpTestCaseTest : public testing::Test {
518 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
533 class TEST_F_before_TEST_in_same_test_case : public testing::Test {
542 class TEST_before_TEST_F_in_same_test_case : public testing::Test {
721 class TypedTest : public testing::Test {
724 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
740 class TypedTestP : public testing::Test {
755 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
774 class ATypedDeathTest : public testing::Test {
777 typedef testing::Types<int, double> NumericTypes;
792 class ATypeParamDeathTest : public testing::Test {
810 class ExpectFailureTest : public testing::Test {
938 class FooEnvironment : public testing::Environment {
950 class BarEnvironment : public testing::Environment {
972 testing::GTEST_FLAG(print_time) = false; in main()
981 testing::InitGoogleTest(&argc, argv); in main()
987 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") { in main()
1005 testing::AddGlobalTestEnvironment(new FooEnvironment); in main()
1006 testing::AddGlobalTestEnvironment(new BarEnvironment); in main()