HomeSort by relevance Sort by last modified time
    Searched refs:testing (Results 1 - 25 of 328) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gtest/test/
gtest-param-test_test.h 32 // The Google C++ Testing Framework (Google Test)
35 // for testing Google Test itself.
44 // Test fixture for testing definition and instantiation of a test
46 class ExternalInstantiationTest : public ::testing::TestWithParam<int> {};
48 // Test fixture for testing instantiation of a test in multiple
51 : public ::testing::TestWithParam<int> {};
gtest_nc.cc 48 testing::InitGoogleTest(&argc, argv);
63 class MyTest : public testing::Test {
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class.
87 class MyEnvironment : public testing::Environment {
98 class MyEnvironment : public testing::Environment {
102 testing::Environment::Setup();
113 class FooTest : public testing::Test {
117 class BarTest : public testing::Test {
123 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>)
    [all...]
gtest-param-test2_test.cc 41 using ::testing::Values;
42 using ::testing::internal::ParamGenerator;
gtest_color_test_.cc 32 // A helper program for testing how Google Test determines whether to use
40 namespace testing { namespace
44 } // namespace testing
46 using testing::internal::ShouldUseColor;
56 testing::InitGoogleTest(&argc, argv);
gtest_no_test_unittest.cc 39 testing::InitGoogleTest(&argc, argv);
gtest_throw_on_failure_test_.cc 41 testing::InitGoogleTest(&argc, argv);
44 // other testing frameworks, as long as they initialize Google Test
gtest_xml_outfile1_test_.cc 37 class PropertyOne : public testing::Test {
gtest_xml_outfile2_test_.cc 37 class PropertyTwo : public testing::Test {
  /external/protobuf/gtest/test/
gtest-param-test_test.h 32 // The Google C++ Testing Framework (Google Test)
35 // for testing Google Test itself.
44 // Test fixture for testing definition and instantiation of a test
46 class ExternalInstantiationTest : public ::testing::TestWithParam<int> {};
48 // Test fixture for testing instantiation of a test in multiple
51 : public ::testing::TestWithParam<int> {};
gtest_nc.cc 48 testing::InitGoogleTest(&argc, argv);
63 class MyTest : public testing::Test {
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class.
87 class MyEnvironment : public testing::Environment {
98 class MyEnvironment : public testing::Environment {
102 testing::Environment::Setup();
113 class FooTest : public testing::Test {
117 class BarTest : public testing::Test {
123 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>)
    [all...]
gtest-param-test2_test.cc 41 using ::testing::Values;
42 using ::testing::internal::ParamGenerator;
gtest_color_test_.cc 32 // A helper program for testing how Google Test determines whether to use
40 namespace testing { namespace
44 } // namespace testing
46 using testing::internal::ShouldUseColor;
56 testing::InitGoogleTest(&argc, argv);
gtest_no_test_unittest.cc 39 testing::InitGoogleTest(&argc, argv);
gtest_shuffle_test_.cc 38 using ::testing::EmptyTestEventListener;
39 using ::testing::InitGoogleTest;
40 using ::testing::Message;
41 using ::testing::Test;
42 using ::testing::TestEventListeners;
43 using ::testing::TestInfo;
44 using ::testing::UnitTest;
45 using ::testing::internal::String;
46 using ::testing::internal::scoped_ptr;
gtest_throw_on_failure_test_.cc 41 testing::InitGoogleTest(&argc, argv);
44 // other testing frameworks, as long as they initialize Google Test
gtest_xml_outfile1_test_.cc 37 class PropertyOne : public testing::Test {
gtest_xml_outfile2_test_.cc 37 class PropertyTwo : public testing::Test {
gtest_xml_output_unittest_.cc 36 // flag. This is used for testing such functionality.
43 using ::testing::InitGoogleTest;
44 using ::testing::TestEventListeners;
45 using ::testing::UnitTest;
47 class SuccessfulTest : public testing::Test {
55 class FailedTest : public testing::Test {
62 class DisabledTest : public testing::Test {
94 class PropertyRecordingTest : public testing::Test {
121 testing::Test::RecordProperty(key, value);
126 testing::Test::RecordProperty(key, value)
    [all...]
  /external/gtest/include/gtest/
gtest-spi.h 32 // Utilities for testing Google Test itself and code that uses Google Test
40 namespace testing { namespace
113 } // namespace testing
115 // A set of macros for testing Google Test assertions or code that's expected
144 ::testing::TestPartResultArray gtest_failures;\
145 ::testing::internal::SingleFailureChecker gtest_checker(\
146 &gtest_failures, ::testing::TPRT_FATAL_FAILURE, (substr));\
148 ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
149 ::testing::ScopedFakeTestPartResultReporter:: \
161 ::testing::TestPartResultArray gtest_failures;
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-spi.h 32 // Utilities for testing Google Test itself and code that uses Google Test
40 namespace testing { namespace
113 } // namespace testing
115 // A set of macros for testing Google Test assertions or code that's expected
144 ::testing::TestPartResultArray gtest_failures;\
145 ::testing::internal::SingleFailureChecker gtest_checker(\
146 &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\
148 ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
149 ::testing::ScopedFakeTestPartResultReporter:: \
153 } while (::testing::internal::AlwaysFalse()
    [all...]
  /external/chromium/testing/
platform_test.h 22 class PlatformTest : public testing::Test {
31 typedef testing::Test PlatformTest;
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest_main.cc 37 testing::InitGoogleTest(&argc, argv);
  /external/gtest/src/
gtest_main.cc 37 testing::InitGoogleTest(&argc, argv);
  /external/protobuf/gtest/src/
gtest_main.cc 37 testing::InitGoogleTest(&argc, argv);
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-death-test-internal.h 32 // The Google C++ Testing Framework (Google Test)
42 namespace testing { namespace
127 // Factory interface for death tests. May be mocked out for testing.
151 const ::testing::internal::RE& gtest_regex = (regex); \
152 ::testing::internal::DeathTest* gtest_dt; \
153 if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
158 ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
161 case ::testing::internal::DeathTest::OVERSEE_TEST: \
166 case ::testing::internal::DeathTest::EXECUTE_TEST: {
    [all...]

Completed in 139 milliseconds

1 2 3 4 5 6 7 8 91011>>