/external/libchrome/testing/gmock/include/gmock/ |
gmock.h | 1 #include <gmock/gmock.h>
|
/external/tensorflow/tensorflow/compiler/xla/ |
test.h | 19 // This header includes gmock.h and enables the use of gmock matchers in tests 23 // ASSERT_THAT(...) in combination with gmock matchers. 28 // For more details on gmock matchers see: 31 // The advantages of using gmock matchers instead of self defined matchers are 34 // Note that while the use of gmock matchers is allowed in the xla project, the 40 #include "testing/base/public/gmock.h" 42 #include <gmock/gmock-generated-matchers.h> 43 #include <gmock/gmock-matchers.h [all...] |
/external/perf_data_converter/src/compat/ |
test_compat.h | 32 #include <gmock/gmock.h>
|
/frameworks/native/services/surfaceflinger/tests/unittests/mock/ |
MockEventControlThread.h | 19 #include <gmock/gmock.h>
|
MockNativeWindowSurface.h | 19 #include <gmock/gmock.h>
|
/hardware/interfaces/wifi/1.2/default/tests/ |
mock_wifi_feature_flags.cpp | 17 #include <gmock/gmock.h>
|
mock_wifi_feature_flags.h | 20 #include <gmock/gmock.h>
|
/system/update_engine/common/ |
mock_action_processor.h | 20 #include <gmock/gmock.h>
|
/system/update_engine/ |
mock_power_manager.h | 20 #include <gmock/gmock.h>
|
mock_certificate_checker.h | 20 #include <gmock/gmock.h>
|
mock_service_observer.h | 20 #include <gmock/gmock.h>
|
/external/google-breakpad/src/testing/ |
CMakeLists.txt | 40 project(gmock CXX C) 68 # Defines the gmock & gmock_main libraries. User tests should link 74 cxx_library(gmock 77 src/gmock-all.cc) 82 src/gmock-all.cc 104 cxx_test(gmock-actions_test gmock_main) 105 cxx_test(gmock-cardinalities_test gmock_main) 106 cxx_test(gmock-generated-actions_test gmock_main) 107 cxx_test(gmock-generated-function-mockers_test gmock_main) 108 cxx_test(gmock-generated-internal-utils_test gmock_main [all...] |
/external/v8/testing/gmock/ |
CMakeLists.txt | 40 project(gmock CXX C) 78 # Defines the gmock & gmock_main libraries. User tests should link 84 cxx_library(gmock 87 src/gmock-all.cc) 92 src/gmock-all.cc 114 cxx_test(gmock-actions_test gmock_main) 115 cxx_test(gmock-cardinalities_test gmock_main) 117 cxx_test(gmock-generated-actions_test gmock_main) 118 cxx_test(gmock-generated-function-mockers_test gmock_main) 119 cxx_test(gmock-generated-internal-utils_test gmock_main [all...] |
/frameworks/native/libs/vr/libpdx/private/pdx/ |
mock_client_channel_factory.h | 4 #include <gmock/gmock.h>
|
/frameworks/opt/net/wifi/libwifi_system/testlib/include/wifi_system_test/ |
mock_hal_tool.h | 20 #include <gmock/gmock.h>
|
mock_hostapd_manager.h | 20 #include <gmock/gmock.h>
|
mock_supplicant_manager.h | 20 #include <gmock/gmock.h>
|
/hardware/libhardware/modules/camera/3_4/metadata/ |
control_delegate_interface_mock.h | 22 #include <gmock/gmock.h>
|
default_option_delegate_mock.h | 22 #include <gmock/gmock.h>
|
state_delegate_interface_mock.h | 22 #include <gmock/gmock.h>
|
/system/connectivity/wificond/tests/ |
mock_client_interface_impl.h | 20 #include <gmock/gmock.h>
|
/system/tpm/tpm_manager/server/ |
mock_tpm_initializer.h | 22 #include <gmock/gmock.h>
|
/external/googletest/googlemock/ |
CMakeLists.txt | 41 project(gmock CXX C) 44 project(gmock VERSION 1.9.0 LANGUAGES CXX C) 85 # Defines the gmock & gmock_main libraries. User tests should link 91 cxx_library(gmock 94 src/gmock-all.cc) 99 src/gmock-all.cc 106 target_include_directories(gmock SYSTEM INTERFACE "${gmock_SOURCE_DIR}/include") 114 install(TARGETS gmock gmock_main 118 install(DIRECTORY ${gmock_SOURCE_DIR}/include/gmock 123 cmake/gmock.pc.i [all...] |
Android.mk | 21 # The upstream gmock configuration builds each of these as separate executables. 29 define gmock-unit-test 53 define gmock-test-suite 54 $(eval $(call gmock-unit-test,gmock-actions_test,,libgmock_main,$(1))) \ 55 $(eval $(call gmock-unit-test,gmock-cardinalities_test,,libgmock_main,$(1))) \ 56 $(eval $(call gmock-unit-test,gmock-generated-actions_test,,libgmock_main,$(1))) \ 57 $(eval $(call gmock-unit-test,gmock-generated-function-mockers_test,,libgmock_main,$(1))) [all...] |
/external/protobuf/ |
autogen.sh | 30 # Check that gmock is present. Usually it is already there since the 32 if test ! -e gmock; then 33 echo "Google Mock not present. Fetching gmock-1.7.0 from the web..." 34 curl $curlopts -O https://googlemock.googlecode.com/files/gmock-1.7.0.zip 35 unzip -q gmock-1.7.0.zip 36 rm gmock-1.7.0.zip 37 mv gmock-1.7.0 gmock
|