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.
1
vote
1answer
12 views
Is there any good way to check mock calls if it is copied in Google Mock Framework
I use Google Test and Google Mock for making unit tests and there is a need to check calls of object, which was placed into a std::vector. Like this:
TEST(FooTest, someTest)
{
// Given
CSomeClass ...
1
vote
0answers
36 views
Google Mock Destructor
I'm trying to become familiar with Google's mocking framework so I can more easily apply some TDD to my C++ development. I have the following interface:
#include <string>
class Symbol {
...
0
votes
2answers
38 views
Using wxString with Google Mock
Has anyone out there had any luck using Google Mock in conjunction with wxWidgets? I have a class Foo with setters that take a const reference to wxString in the signature like so:
class Foo {
...
0
votes
1answer
24 views
Google Mock Actual function call count doesn't match EXPECT_CALL
I am new to GMock and was trying my hand with this code, I also checked this link
Actual function call count doesn't match EXPECT_CALL(*mock, display())
but was not able to get proper input.
...
2
votes
1answer
26 views
Passing arguments to ReturnNew with googlemock
How can I mock a method that returns a new object whose constructor takes one of the method's arguments as an argument of its own?
// ObjectA::ObjectA(MockedObject arg1, ObjectB* arg2);
// ObjectA* ...
0
votes
1answer
25 views
Can changes made to references returned by Google Mock be reflected in the original value?
Can changes made to references returned by Google Mock be reflected in the original value?
Sample test code (using CppUnit as the unit testing framework):
int i = 0;
EXPECT_CALL(mock, GetValue())
...
2
votes
1answer
52 views
Is it possible to capture parameters with Google Mock (gmock)?
I am planning on using Google Mock. I need to capture an object reference so that I can subsequently call some methods from that object.
Does Google Mock have any capturing abilities? If not, what ...
1
vote
1answer
76 views
How can I stub/mock non-pointer member variables in C++?
Many websites on unit testing say to extract an interface and code to the interface (which makes sense), but that requires using polymorphism via pointers. Is it possible to accomplish this without ...
1
vote
0answers
63 views
SEH exception when using googlemock
I am starting to use googlemock with googletest but am getting an SEH exception that I can't figure out.
The error message is:
unknown file: error: SEH exception with code 0xc0000005 thrown in the ...
0
votes
1answer
75 views
How to test a pure-virtual class without implementation?
I have the following class:
// IVirtualController.hpp
class IVirtualController
{
public:
virtual InputCode validate(int keycode) = 0;
virtual ~IVirtualController();
};
And now I want to mock ...
3
votes
1answer
43 views
How (if at all) can I mock a mocked class on the heap?
I created a test mock class pretty much as simple as described in the docs:
class MockLogicLoopable : public LogicLoopable
{
public:
MOCK_METHOD0(update,void());
...
1
vote
1answer
31 views
Mock non-virtual method giving compilation error
I need to write the gtest to test some existing code that has a non-virtual method, hence I am testing using the below source, but I am getting the compilation error
...
0
votes
1answer
69 views
Actual function call count doesn't match EXPECT_CALL(*mock, display())
I'm calling EXPECT_CALL on a mocked function display(), but it is returning the run time error
Actual function call count doesn't match EXPECT_CALL(*mock, display())...
output
...
1
vote
1answer
53 views
Using gmock for external dependencies
How to mock out the CustomStream external dependency here with either gmock or gtest?
#include <mylib/common/CustomStream.h>
namespace sender {
void Send(int p1){
...
2
votes
1answer
67 views
Google Tests in a DLL
I want to write unit tests using Google Test / Mock for code in my DLL. The test code is supposed to be compiled into my DLL.
I read in the Google Test Primer that this is possible, but that gtest ...
2
votes
1answer
78 views
GoogleTest Expect call fail for the mock method
I am new to the GTEST, just understanding the how the Mock works,
i tried to write the simple program Foo.h and FooDisplay.h ( which needs the Foo in the constructor), also MockFoo.cpp ( which is the ...
0
votes
1answer
71 views
Google Mock: How to configure custom message to explain match failure
In case of match failure Google mock prints message like the following:
test.cpp:112: EXPECT_CALL(mock_obj, foo( MyMatcher( bar ) ))...
Expected arg #0: is equal to [1,2; 3,4]
Actual: { 1 }
...
1
vote
1answer
51 views
Implementing WillN in GoogleMock?
Is there a neater and/or briefer way to set multiple identical actions than repeated use of WillOnce? Is there a way for WillRepeatedly to have a cardinality, for example?
I can only find examples ...
3
votes
1answer
85 views
Why does Google Mocks find this function call ambiguous?
I've run into an issue while attempting to start using Google Mocks - for some reason it can't tell the call I'm specifying in the EXPECT_CALL macro, even though the types are consistent. I want to ...
0
votes
1answer
88 views
Mocking side effect for const pointer parameter using googlemock
I'm using googlemock for unit tests and I try to mock a method that has an 'out array parameter':
void MyMock::myFunc(double myVal[2]).
The method myFunc is supposed to store values in the myVal ...
2
votes
2answers
115 views
C++ Unit Testing and stubbing a 3rd party C library
I need to unit test some C++ objects that Ive written that use a 3rd party C library. For reasons beyond the scope of this question, I cant call the 3rd party C library directly, and need to stub it ...
0
votes
1answer
49 views
Visual studio 2010 is not executing code after including gmock.LIB
Earlier I was using gtest for my project. For the time being I am using gmock and when I have provided the path for gmock.lib, gmock_mock.lib and ..\..\include too. Then the control is not at all ...
0
votes
2answers
496 views
EXPECT_CALL of googlemock leads to “unknown file:error: SEH exception with code 0xc0000005 thrown in the test body” [closed]
I am novice to googlemock. My current project needs googlemock to use. I have learned from basics of gmock from google help site. But when I have tried to implement the same in my project it threw SEH ...
0
votes
1answer
47 views
How to force a function to return true or false with Googlemock framework?
Using Googlemock, I want to mock a class with a bool foo() function, and I want to force it to return either a true or false, depending on my test. I've read up on ON_CALL and ON_EXPECT macros, and ...
0
votes
1answer
64 views
How to (Google)Mock the DBUS interface?
Say I have a class with the following code
void MessageBuilder::Init(DBusMessage* pMsg)
{
if (NULL != m_pMsg)
{
::dbus_message_unref(m_pMsg);
}
// m_pMsg is a private data ...
0
votes
2answers
302 views
What is the difference between gtest and gmock?
I trying to understand google-mock test.
As I have already worked in gtest earlier.
But still I could not able to understand what is gmock why do we need this?
gtest is used for unit testing. What ...
0
votes
1answer
88 views
google mock not reporting less than expected calls
I have written a google test (using gmock). Here is the relevant code:
MockObj * obj = new MockObj ();
MockDI * mock_di = new DI();
MockDIPtr mock_di_ptr(mock_di); // boost shared ptr
Data data; // ...
0
votes
1answer
83 views
Mocking internal calls of a function being tested using googlemock
I am new to Google Mock and based on my understanding of the documentation and online resources, I could not identify a solution to my problem:
I have the following classes:
class A
{
public:
...
-3
votes
1answer
169 views
0
votes
0answers
114 views
Creating a unit test mock for a C like interface
I receive a C interface from a C API containing a set of function pointers:
struct Interface
{
int (*get)(const char *name)
void (*set)(const char *name)
...
};
I have a C++ Wrapper class ...
1
vote
1answer
124 views
Compare containers with GoogleTest
I'm trying to get a working googletest test that compares two vectors. For this I'm using google mock with its matchers but I get a C3861 error saying "ContainerEq identifier not found" and also C2512 ...
5
votes
0answers
244 views
Leaked Mock Objects when using GoogleMock together with Boost::Shared Pointers
For this special scenario, I am not able to get rid of the leaks.
I get the message of Leaked Mock Objects when executing the test. The concrete Message:
ClassElementFixture.h:102: ERROR: this mock ...
1
vote
1answer
524 views
GoogleMock : How to test this code?
I wrote the following piece of code to test Xyz::xyz_func by mocking Abc::abc_func using gmock.
#include <iostream>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
using namespace std;
using ...
0
votes
0answers
63 views
strange ' C4267' warning when compiling google mocks
Visual C++ 2005 complains with:
"warning C4267: 'argument' : conversion from 'size_t' to 'unsigned int', possible loss of data" when compiling the code below.
class C1 {
virtual void ...
1
vote
2answers
168 views
Detecting circular references with std::shared_ptr
I am working with a lot of interfaces for the purposes of dependency injection (test driven development.) For this reason a lot of my objects are pointed to via std::shared_ptr. I would have used ...
4
votes
2answers
162 views
GoogleMock display more detailed debug info
I'm using googlemock at work. We often use EXPECT_THROW, EXPECT_NO_THROW etc...
My question is how do you make googlemock output the exception details and maybe a stack trace when a function is ...
1
vote
1answer
103 views
Manipulating iterators when unit testing
I'm dependant on a c api which uses the following structure (the function names are just an example):
getRoot(FolderHandle* out)
getFirstChildFolder(FolderHandle in, FolderHandle* out)
...
1
vote
1answer
285 views
Mocking a free function using Google Mocks
I have the following free function sig:
ReturnT getFirstAttributeHandle(ParentHandleT a, AttributeHandleT* b);
I need to pass the address of such a function to the constructor of an iterator which ...
2
votes
1answer
169 views
Using NiceMock as instance variable with GoogleMock
I want to assign a NiceMock with the return value of a method. The NiceMock is an instance variable.
class TestFileToOsg : public testing::Test
{
public:
NiceMock<MockFileToOsg>* ...
0
votes
1answer
401 views
Google Test return value
I'm using Google Test and Google Mock frameworks for a project's unit tests. I have various unit tests projects and want to automate my build so to run all of them.
I was expecting the unit tests ...
1
vote
1answer
172 views
How to set an expectation for a boost::shared_array
I am writing some unit tests for some classes. These classes use a another one comms_client to perform network communication. For example, comms_clientprovides a send method which receives as ...
3
votes
1answer
187 views
Google mock does not compile with boost::variant of std::vector
I am trying to create Google Mock object for some interface class which uses boost::variant
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <boost/variant.hpp>
#include ...
2
votes
2answers
499 views
Expecting googlemock calls from another thread
What will be the best way to write (google) test cases using a google mock object and expect the EXPECT_CALL() definitions being called from another thread controlled by the class in test?
Simply ...
0
votes
0answers
187 views
Compile error when I #include “gmock/gmock.h”
I'm attempting to integrate googlemock into my tests. I had already successfully built and run tests on googletest, and now am trying to incrementally add the gmock functionality into the tests as ...
1
vote
1answer
218 views
unit testing an object that takes a “traits” template parameter
I have a Visual Studio 2008 C++03 project where I would like to unit test a class that uses a traits template parameter that exposes static methods (Policy-based design, strategy pattern). I am using ...
1
vote
2answers
780 views
Using googlemock EXPECT_CALL with shared_ptr?
I have a test that works fine with a raw pointer, but I'm having trouble getting it work with a std::shared_ptr. The class is like this:
class MyClass
{
MyClass(SomeService *service);
void ...
1
vote
2answers
218 views
Googletest - DeathTest does not catch assertion from Qt application such as Q_ASSERT etc.
I want to test a assertion with gtest.
The method looks like this:
void aMethod()
{
Q_ASSERT( 1 == geode.getNumDrawables());
DoSomeOtherStuff
}
And the test looks like this:
...
5
votes
1answer
770 views
Why is GoogleMock leaking my shared_ptr?
I use GoogleMock/GoogleTest for testing, and I'm seeing some strange behavior when a matcher has a shared_ptr to a mock as a parameter, and EXPECT is called on the same shared_ptr. The offending piece ...
4
votes
1answer
527 views
Mocking an entire library
I'm developing code that uses boost::asio. To test it, I need to mock a set of classes from this library. I'm using Google Mock, which allows for mocking virtual methods. The usual (and tedious) ...
6
votes
2answers
257 views
googlemock - mock a method that returns a complex datatyp
I want to mock a method that returns a complex datatyp
class aClass
{
public:
virtual const QMap<QString, QString> aMethod() const;
}
class MockaClass : public aClass
{
public:
...



