Searched refs:testing (Results 1 - 25 of 849) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/sync/glue/
H A Dsync_backend_host_mock.cc16 ON_CALL(*this, ConfigureDataTypes(testing::_, testing::_, testing::_)).
/external/chromium/testing/gtest/test/
H A Dgtest-param-test_test.h35 // 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> {};
H A Dgtest_throw_on_failure_test_.cc41 testing::InitGoogleTest(&argc, argv);
44 // other testing frameworks, as long as they initialize Google Test
H A Dgtest-typed-test2_test.cc43 testing::Types<std::vector<int> >);
H A Dgtest-param-test2_test.cc41 using ::testing::Values;
42 using ::testing::internal::ParamGenerator;
H A Dgtest_no_test_unittest.cc39 testing::InitGoogleTest(&argc, argv);
/external/gtest/include/gtest/
H A Dgtest-spi.h32 // 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
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DMockObject.java16 package com.google.android.testing.mocking;
/external/android-mock/tests/com/google/android/testing/mocking/
H A DClassHasNoPublicConstructors.java16 package com.google.android.testing.mocking;
19 * Class with no public constructor. Used only for testing.
H A DClassHasStaticMethods.java16 package com.google.android.testing.mocking;
19 * Class with static methods. Used only for testing.
H A DClassIsAnnotation.java16 package com.google.android.testing.mocking;
19 * Annotation Class. Used only for testing.
H A DClassIsFinal.java16 package com.google.android.testing.mocking;
19 * Final Class. Used only for testing.
H A DClassIsInterface.java16 package com.google.android.testing.mocking;
19 * Interface. Used only for testing.
H A DClassHasFinalMethods.java16 package com.google.android.testing.mocking;
19 * Class with final methods. Used only for testing.
H A DClassHasNoDefaultConstructor.java16 package com.google.android.testing.mocking;
19 * Class with no default constructor. Used only for testing.
H A DClassHasOverloadedMethods.java16 package com.google.android.testing.mocking;
19 * Class with overloaded methods. Used only for testing.
H A DClassIsEnum.java16 package com.google.android.testing.mocking;
19 * Enum Class. Used only for testing.
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-spi.h32 // 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
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-spi.h32 // 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
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest-spi.h32 // 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
[all...]
/external/gtest/test/
H A Dgtest_nc.cc48 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
[all...]
H A Dgtest-param-test_test.h35 // 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> {};
/external/protobuf/gtest/test/
H A Dgtest_nc.cc48 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
[all...]
H A Dgtest-param-test_test.h35 // 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> {};
/external/android-mock/livetests/com/google/android/testing/mocking/testapp/
H A DClassToMock.java16 package com.google.android.testing.mocking.testapp;

Completed in 210 milliseconds

1234567891011>>