Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in gmock

GMOCK - how to modify the method arguments when return type is void

c++ gmock

How can I mock a method with a return type of unique_ptr in Google Mock?

Add an external source directory to a CMake build

cmake gmock

Using Google Mock with boost::bind

c++ boost bind googletest gmock

gmock compilation error (within testing::internal::FunctionMocker) on mock_method

gmock TypedEq same string different address

Google Mock: Is it ok to use global mock objects?

How to set GMock EXPECT_CALL to invoke two different functions for a mocked function

c++ gmock

GMock: How to return mock class variable as the return value

Can a mock class inherit from another mock class in googlemock?

c++ unit-testing mocking gmock

How to use gmock to mock a template method from a class?

How to use gmock to test that a class calls it's base class' methods

c++ googletest gmock

C++, Googlemock - testing local object

Unresolved external symbol error with Google Mock and Vcpkg

c++ gmock vcpkg

mock method with 11 parameters with gmock

Why does googlemock report a leaked mock when I can see it being deleted?

google mock - how to say "function must be called ONCE with a certain parameter but ok to be called many times with different parameters"?

set EXPECT_CALL to redirect the call to the original method

gmock