Tagged Questions

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.

learn more… | top users | synonyms

20
votes
2answers
3k views

Is Google Mock a good mocking framework?

I am pioneering unit testing efforts at my company, and need need to choose a mocking framework to use. I have never used a mocking framework before. We have already chosen Google Test, so using ...
7
votes
4answers
1k views

Mocking non-virtual methods in C++ without editing production code?

I am a fairly new software developer currently working adding unit tests to an existing C++ project that started years ago. Due to a non-technical reason, I'm not allowed to modify any existing code. ...
5
votes
3answers
119 views

Testing iterative code using mocks - does it make sense, how?

I want to test an algorithm using mocks. The algorithm - in the current implementation - iterates over a container class in multiple passes and set()s and get()s values from it. The test's purpose is ...
5
votes
4answers
159 views

Method and mock with same class

I have class with 2 methods class A { void Fun() { if(FunRet()>0){///} else {///} } int FunRet() { return 4;} }; I want to test Fun() method depend on what FunRet returns. So i ...
5
votes
1answer
335 views

pro and cons of mockpp and google mock

it seems there are right now two mocking frameworks for c++, MockPP and Google Mock I wanted to know people experience with each one, basically if someone has used both, what are the advantages of ...
4
votes
1answer
144 views

Can Google Mock a method with a smart pointer return type?

I have a factory that returns a smart pointer. Regardless of what smart pointer I use, I can't get Google Mock to mock the factory method. The mock object is the implementation of a pure abstract ...
4
votes
4answers
363 views

C++ Unit Testing: Stubs (not mocks)?

Just getting into Unit Testing with C++. It looks like I will need to write several stub classes as I go along. My understanding is there is a difference between Mocks and Stubs. Basically it seems ...
3
votes
3answers
305 views

Unit Testing: coding to interfaces?

Currently my project is composed of various concrete classes. Now as I'm getting into unit testing it looks like I'm supposed to create an interface for each and every class (effectively doubling the ...
3
votes
2answers
117 views

How to Google Mock a method called from a struct

Let's have this example: Class A{ public: int Get(); } In another file: A a; struct B{ int res = a.Get(); } I would need to Google Mock Get method, however, I ...
3
votes
3answers
260 views

Mocking C++ classes with dependency injection

Say you're testing class A and it has a dependency injection of B which has a dependency injection of C.So you mock B but the only constructor it has requires an injection of C, so do you have to mock ...
3
votes
1answer
78 views

Does Google Mock count calls to mocked functions in destructor?

Does Google Mock count calls to mocked functions that occur in the destructor of the object under test?
3
votes
1answer
773 views

C++ Mock/Test boost::asio::io_stream - based Asynch Handler

I've recently returned to C/C++ after years of C#. During those years I've found the value of Mocking and Unit testing. Finding resources for Mocks and Units tests in C# is trivial. WRT Mocking, not ...
2
votes
1answer
99 views

How to create a mock class with operator[]?

I am having a class with operator[], like this : class Base { public: virtual ~Base(){} virtual const int & operator[]( const unsigned int index ) const = 0; }; How can I create a ...
2
votes
3answers
255 views

Googlemock: How to verify elements in an array in an object?

I have a small class: struct Command { uint8_t cmdId; uint8_t len; uint8_t payload[MAX_PAYLOAD]; }; And I want to verify only the first two elements of the payload using a googlemock ...
2
votes
2answers
227 views

Mocking a method with throw() specifier

I am trying to Google mock a virtual method which has a throw() specifier. The original function looks like this: virtual ReturnValue FunctionName() const throw(); I am getting the compiler ...
2
votes
1answer
180 views

How to mock a function with the signature `object ()`

I want to mock a method with the declaration A::B X(void). The definition is something as follows. class A { class B; virtual B X() = 0; }; class A::B { public: auto_ptr<int> ...
2
votes
2answers
458 views

How to mock templated methods using Google Mock?

I am very new to Google Mock and to StackOverflow, sorry in advance if my question is not well posed. I am trying to mock a templated method. Here is the class containing the method to mock : class ...
1
vote
1answer
49 views

gmock unit testing static methods c++

I just started working on unit testing (using BOOST framework for testing, but for mocks I have to use gmock) and I have this situation : class A { static int Method1(int a, int b){return a+b;} }; ...
1
vote
1answer
48 views

Can googlemock mock method calls from within other method calls of the same class?

Is it possible to mock method calls from within other method calls of the same class? I am new to C++ (primarily a C developer) and very new to googlemock and Google Test so forgive me if this is ...
1
vote
1answer
102 views

C++, google test/mock: assertion to test and object type

I have this (not really, is just a simple example): template<class T> T foo() {...} I need to check the result type of the function (here not make any sense, my example is more complex I ...
1
vote
1answer
498 views

GoogleMock problem in Visual Studio 2010 and C++/CLI

Our product previously built in Visual Studio 2008 and used GoogleMock 1.5.0. Now, after porting our product to Visual Studio 2010, any unit test DLL that uses GoogleMock will not load in visual ...
1
vote
3answers
208 views

Google Mock: Return() a list of values

Via Google Mock's Return() you can return what value will be returned once a mocked function is called. However, if a certain function is expected to be called many times, and each time you would like ...
1
vote
1answer
211 views

Google Mock - using ::testing::An()

I receive a compilation error while using the following Google Mock declaration: EXPECT_CALL(some_object, someFunction(1,An<AStructIDefined>())) .Times(2); The error is: 1>ClCompile: ...
1
vote
1answer
1k views

GoogleMock and GoogleTest in Visual Studio 2010

Has anyone successfully built gmock and gtest in Visual Studio 2010? I've tried with version 1.5.0, but I only get incomprehensible compilation errors.
1
vote
2answers
473 views

GoogleMock - Matchers and MFC\ATL CString

I asked this question on the Google Group but I think I will get a faster response on here. I'm trying to use Google's Mocking framework to test my code. I am also utilizing their test framework as ...
0
votes
1answer
19 views

Error with Google Mock and shared_from_this?

I'm getting the following error thrown in a test of mine: unknown file: error: C++ exception with description "tr1::bad_weak_ptr" thrown in the test body. Stepping through the test one line at ...
0
votes
1answer
27 views

Google Mocks test output to XML not working

I have been using Google Test for a few months now and I have --gtest_output=xml:$(TargetDir)\$(SolutionName).unittest.results.$ (Configuration).xml as command Arguments in the VS2010 Test ...
0
votes
1answer
45 views

gmock unit testing

I just started working on unit testing (using BOOST framework for testing, but for mocks I have to use gmock) and I have this situation : class A { A(){} virtual int Method1(int a, int b){return ...
0
votes
1answer
76 views

Googlemock incorrectly reporting error at test exit. What am I doing wrong?

Googlemock is incorrectly reporting problem at test exit. What am I doing wrong? I have scoured the googlemock documentation, but there is no good complete example, and nothing describing the ...
0
votes
1answer
54 views

Google Test/Mock test fail if expected call is over-saturated

How can I make google test fail if google mocked method is called more than expected times? Here is the example: class MockIO : iIO { MOCK_METHOD1(IO_Read, void (uint8_t)); }; TEST(case, test) ...
0
votes
2answers
237 views

Google Mock: “no appropriate default constructor available”?

Using Visual Studio 2010 C++ with googlemock. I'm trying to use a mock I created and I'm getting the compiler error on the line: EmployeeFake employeeStub; The error is: ...
0
votes
2answers
588 views

Google Mock: leaked mock object found at program exit?

When I define my test as follows it works. TEST(MyService, WhenCalled_DoesTheRightThingTM) { // Arrange ThirdPartyClassFake stub; EXPECT_CALL(stub, GetFirstName()) ...
0
votes
2answers
246 views

Google Mock: object of abstract class type “xyz” is not allowed?

Using Visual Studio 2010 C++ with GMock. Trying to create a stub object for a third party class that is used by my classes but I'm getting the following error: Error: object of abstract class type ...
0
votes
0answers
65 views

How to Google Mock a method called from a struct [closed]

Possible Duplicate: How to Google Mock a method called from a struct Class A { int Get(){} } A a; struct B { int res =a.Get(); } I need to mock Get, however I will ...
0
votes
1answer
90 views

Calling a method when expected method on mock was invoked

I have the following scenario: class InterfaceA; class InterfaceB; class InterfaceC; class InterfaceA { virtual void foo(InterfaceC&) = 0; }; class InterfaceB { virtual void bar() = 0; }; ...
0
votes
3answers
316 views

What is wrong with my attempts to mock a simple C++ method with googlemock?

As per Patterns for unit testing a C++ method that makes a standard library call, I'm test-driving development of a network-abstracting class. In order to unit test code that makes standard C library ...
0
votes
1answer
89 views

Google Mock: multiple expectations on same function with different parameters

Consider the case where a certain mocked function is expected to be called several times, each time with a different value in a certain parameter. I would like to validate that the function was indeed ...
0
votes
1answer
173 views

c++ googlemocks : Getting a stack trace of an uninitialized call

Mock class looks like this : struct MockClass { MOCK_METHOD0( foo, void () ); }; If I forget to set an expected calls on a mock object, I get something like this : GMOCK WARNING: Uninteresting ...
0
votes
1answer
85 views

Make not producing all the expected libraries

I'm trying to make "google mock" but I'm only getting one library: gmock_main.a Why is gmock.a not being produced? The four .o files are produced. Thanks, Barry. # A sample Makefile for building ...
0
votes
1answer
326 views

Google Mock: Mocked overloaded functions create warning C4373

I'm mocking a C++ class which has 2 overloaded functions using Google Mock and VS2010: #include "stdafx.h" #include "gmock/gmock.h" #include "A.h" class MockA : public A { public: // ... ...
-1
votes
2answers
52 views

google mock : how can I “ EXPECT ” that no method will be called on a mock

I want to test the in case of some fail no method will be called on a mock object , using google mock. so the code be something like: auto mocObj = new MockObj; EXPECT_NO_METHOD_CALL(mocObj); //this ...
-1
votes
1answer
141 views

Google Mock giving compile error when attempting to specify a return value

I'm using Google Test and Google Mock for my C++/Qt application. I've been having great success with this setup until just now when I tried this: QList<AbstractSurface::VertexRow> rowList; for ...