63086aa42f
Inspired by jMock, EasyMock, and Hamcrest, and designed with C++'s specifics in mind, Google C++ Mocking Framework (or Google Mock for short) is a library for writing and using C++ mock classes. Google Mock: * lets you create mock classes trivially using simple macros, * supports a rich set of matchers and actions, * handles unordered, partially ordered, or completely ordered expectations, * is extensible by users, and * works on Linux, Mac OS X, Windows, Windows Mobile, minGW, and Symbian. http://code.google.com/p/googlemock/ There are both host and target packages. The target one has include files required to compile the tests and the static libraries required to link/run them. The host package installs gmock_gen, a Python script used to generate code mocks. Notice that GMock 1.7.0 requires the Python 2 host package even if Python 3 is selected as a target package. Signed-off-by: Marcelo Barbosa <marcelo.barbosa@datacom.ind.br> Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Reviewed-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_GMOCK
|
|
bool "gmock"
|
|
select BR2_PACKAGE_GTEST
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_MMU # fork()
|
|
help
|
|
Inspired by jMock, EasyMock, and Hamcrest, and designed with C++'s
|
|
specifics in mind, Google C++ Mocking Framework (or Google Mock for
|
|
short) is a library for writing and using C++ mock classes.
|
|
|
|
Google Mock:
|
|
|
|
* lets you create mock classes trivially using simple macros,
|
|
* supports a rich set of matchers and actions,
|
|
* handles unordered, partially ordered, or completely ordered
|
|
expectations,
|
|
* is extensible by users, and
|
|
* works on Linux, Mac OS X, Windows, Windows Mobile, minGW, and
|
|
Symbian.
|
|
|
|
http://code.google.com/p/googlemock/
|
|
|
|
There are both host and target packages. The target one has include
|
|
files required to compile the tests and the static libraries required
|
|
to link/run them. The host package installs gmock_gen, a Python script
|
|
used to generate code mocks.
|
|
|
|
comment "gmock needs a toolchain w/ C++, wchar, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|