| /external/chromium_org/third_party/libaddressinput/src/cpp/test/ |
| fake_downloader_test.cc | 37 class FakeDownloaderTest : public testing::TestWithParam<std::string> { 63 // Returns testing::AssertionSuccess if |data| is valid downloaded data for 65 testing::AssertionResult DataIsValid(const std::string& data, 68 return testing::AssertionFailure() << "empty data"; 73 return testing::AssertionFailure() << data << " does not begin with " 84 return testing::AssertionFailure() << data << " does not end with " 88 return testing::AssertionSuccess(); 103 // Returns testing::AssertionSuccess if |data| is valid aggregated downloaded 105 testing::AssertionResult AggregateDataIsValid(const std::string& data, 108 return testing::AssertionFailure() << "empty data" [all...] |
| /external/gtest/include/gtest/ |
| gtest-death-test.h | 32 // The Google C++ Testing Framework (Google Test) 43 namespace testing { namespace 92 // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); 180 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 185 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 214 // The death testing framework causes this to have interesting semantics, 292 } // namespace testing
|
| /external/gtest/test/ |
| gtest_env_var_test_.cc | 32 // A helper program for testing that Google Test parses the environment 45 namespace testing { namespace 114 } // namespace testing 117 testing::InitGoogleTest(&argc, argv); 124 testing::PrintFlag(argv[1]);
|
| /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
| AbstractListTester.java | 17 package com.google.common.collect.testing.testers; 19 import com.google.common.collect.testing.AbstractCollectionTester; 20 import com.google.common.collect.testing.Helpers;
|
| ListEqualsTester.java | 17 package com.google.common.collect.testing.testers; 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES; 21 import com.google.common.collect.testing.MinimalSet; 22 import com.google.common.collect.testing.features.CollectionFeature; 23 import com.google.common.collect.testing.features.CollectionSize;
|
| /external/guava/guava-tests/test/com/google/common/base/ |
| EnumsTest.java | 21 import com.google.common.testing.EqualsTester; 22 import com.google.common.testing.NullPointerTester; 23 import com.google.common.testing.SerializableTester;
|
| /external/protobuf/gtest/test/ |
| gtest_env_var_test_.cc | 32 // A helper program for testing that Google Test parses the environment 45 namespace testing { namespace 114 } // namespace testing 117 testing::InitGoogleTest(&argc, argv); 124 testing::PrintFlag(argv[1]);
|
| /frameworks/native/libs/gui/tests/ |
| GLTest.h | 29 class GLTest : public ::testing::Test { 53 ::testing::AssertionResult checkPixel(int x, int y, 55 ::testing::AssertionResult assertRectEq(const Rect &r1, const Rect &r2,
|
| /hardware/libhardware/tests/camera2/ |
| TestForkerEventListener.cpp | 45 void TestForkerEventListener::OnTestStart(const ::testing::TestInfo&) { 75 const ::testing::TestPartResult& test_part_result) { 87 void TestForkerEventListener::OnTestEnd(const ::testing::TestInfo& test_info) {
|
| /ndk/sources/third_party/googletest/googletest/include/gtest/ |
| gtest-death-test.h | 32 // The Google C++ Testing Framework (Google Test) 43 namespace testing { namespace 92 // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); 180 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 185 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 214 // The death testing framework causes this to have interesting semantics, 292 } // namespace testing
|
| /ndk/sources/third_party/googletest/googletest/test/ |
| gtest_env_var_test_.cc | 32 // A helper program for testing that Google Test parses the environment 45 namespace testing { namespace 114 } // namespace testing 117 testing::InitGoogleTest(&argc, argv); 124 testing::PrintFlag(argv[1]);
|
| /external/chromium_org/gpu/command_buffer/service/ |
| gles2_cmd_decoder_unittest_context_state.cc | 27 #include "testing/gtest/include/gtest/gtest.h" 37 using ::testing::_; 38 using ::testing::DoAll; 39 using ::testing::InSequence; 40 using ::testing::Invoke; 41 using ::testing::MatcherCast; 42 using ::testing::Mock; 43 using ::testing::Pointee; 44 using ::testing::Return; 45 using ::testing::SaveArg [all...] |
| /external/ceres-solver/internal/ceres/ |
| levenberg_marquardt_strategy_test.cc | 41 using testing::AllOf; 42 using testing::AnyNumber; 43 using testing::HasSubstr; 44 using testing::ScopedMockLog; 45 using testing::_;
|
| /external/chromium_org/chrome/browser/extensions/ |
| extension_warning_service_unittest.cc | 11 #include "testing/gmock/include/gmock/gmock.h" 12 #include "testing/gtest/include/gtest/gtest.h" 59 testing::Mock::VerifyAndClearExpectations(&warning_service); 64 testing::Mock::VerifyAndClearExpectations(&warning_service); 83 testing::Mock::VerifyAndClearExpectations(&warning_service); 90 testing::Mock::VerifyAndClearExpectations(&warning_service); 104 testing::Mock::VerifyAndClearExpectations(&warning_service);
|
| /external/chromium_org/chrome/common/extensions/api/storage/ |
| storage_schema_manifest_handler_unittest.cc | 19 #include "testing/gtest/include/gtest/gtest.h" 23 class StorageSchemaManifestHandlerTest : public testing::Test { 57 testing::AssertionResult Validates(const std::string& schema) { 60 return testing::AssertionFailure() << "Failed to create test extension"; 64 return testing::AssertionSuccess(); 65 return testing::AssertionFailure() << error;
|
| /external/chromium_org/components/network_time/ |
| network_time_tracker_unittest.cc | 12 #include "testing/gtest/include/gtest/gtest.h" 45 class NetworkTimeTrackerTest : public testing::Test { 83 testing::AssertionResult ValidateExpectedTime() const { 89 return testing::AssertionFailure() << "Failed to get network time."; 93 return testing::AssertionFailure() 96 return testing::AssertionSuccess();
|
| /external/chromium_org/sync/internal_api/public/base/ |
| invalidation_test_util.cc | 15 using ::testing::MakeMatcher; 16 using ::testing::MatchResultListener; 17 using ::testing::Matcher; 18 using ::testing::MatcherInterface; 19 using ::testing::PrintToString;
|
| object_id_invalidation_map_test_util.cc | 13 using ::testing::MakeMatcher; 14 using ::testing::MatchResultListener; 15 using ::testing::Matcher; 16 using ::testing::MatcherInterface; 17 using ::testing::PrintToString;
|
| /external/chromium_org/third_party/libvpx/source/libvpx/test/ |
| subtract_test.cc | 25 class SubtractBlockTest : public ::testing::TestWithParam<subtract_b_fn_t> { 106 ::testing::Values(vp8_subtract_b_c)); 110 ::testing::Values(vp8_subtract_b_neon)); 115 ::testing::Values(vp8_subtract_b_mmx)); 120 ::testing::Values(vp8_subtract_b_sse2));
|
| /external/libvpx/libvpx/test/ |
| subtract_test.cc | 25 class SubtractBlockTest : public ::testing::TestWithParam<subtract_b_fn_t> { 106 ::testing::Values(vp8_subtract_b_c)); 110 ::testing::Values(vp8_subtract_b_neon)); 115 ::testing::Values(vp8_subtract_b_mmx)); 120 ::testing::Values(vp8_subtract_b_sse2));
|
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
| subtract_test.cc | 25 class SubtractBlockTest : public ::testing::TestWithParam<subtract_b_fn_t> { 106 ::testing::Values(vp8_subtract_b_c)); 110 ::testing::Values(vp8_subtract_b_neon)); 115 ::testing::Values(vp8_subtract_b_mmx)); 120 ::testing::Values(vp8_subtract_b_sse2));
|
| /external/chromium_org/chrome/browser/local_discovery/ |
| privet_device_lister_unittest.cc | 7 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gtest/include/gtest/gtest.h" 10 using testing::SaveArg; 11 using testing::_; 173 class PrivetDeviceListerTest : public testing::Test { 200 testing::StrictMock<MockServiceDiscoveryMockDelegate> mock_delegate_; 218 testing::Mock::VerifyAndClear(&mock_delegate_); 225 testing::Mock::VerifyAndClear(&mock_delegate_); 261 testing::Mock::VerifyAndClear(&mock_delegate_); 269 testing::Mock::VerifyAndClear(&mock_delegate_) [all...] |
| /external/chromium_org/chrome/browser/printing/ |
| print_dialog_cloud_unittest.cc | 27 #include "testing/gmock/include/gmock/gmock.h" 28 #include "testing/gtest/include/gtest/gtest.h" 33 using testing::A; 34 using testing::AtLeast; 35 using testing::Eq; 36 using testing::HasSubstr; 37 using testing::IsNull; 38 using testing::NotNull; 39 using testing::Return; 40 using testing::StrEq [all...] |
| /external/chromium_org/components/domain_reliability/ |
| scheduler_unittest.cc | 12 #include "testing/gtest/include/gtest/gtest.h" 20 class DomainReliabilitySchedulerTest : public testing::Test { 40 ::testing::AssertionResult CheckNoPendingUpload() { 44 return ::testing::AssertionSuccess(); 46 return ::testing::AssertionFailure() 52 ::testing::AssertionResult CheckPendingUpload(TimeDelta expected_min, 60 return ::testing::AssertionSuccess(); 64 return ::testing::AssertionFailure() 70 return ::testing::AssertionFailure() 77 ::testing::AssertionResult CheckStartingUpload(size_t expected_collector) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| DocumentTest.cpp | 36 #include "core/testing/DummyPageHolder.h" 44 class DocumentTest : public ::testing::Test { 89 ::testing::Mock::VerifyAndClearExpectations(observer1.get()); 90 ::testing::Mock::VerifyAndClearExpectations(observer2.get()); 97 ::testing::Mock::VerifyAndClearExpectations(observer1.get()); 98 ::testing::Mock::VerifyAndClearExpectations(observer2.get()); 105 ::testing::Mock::VerifyAndClearExpectations(observer1.get()); 106 ::testing::Mock::VerifyAndClearExpectations(observer2.get()); 116 ::testing::Mock::VerifyAndClearExpectations(observer1.get()); 117 ::testing::Mock::VerifyAndClearExpectations(observer2.get()) [all...] |