The gmock tag has no wiki summary.
5
votes
4answers
165 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 ...
3
votes
2answers
53 views
Automatic generation of mock classes for gmock
I am using gmock for unit testing c++ code. I am not using gtest frameowkr. I am using built in visual studio 2008 testing framework.
now problem is that i have to manually write mock classes for a ...
1
vote
2answers
44 views
compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter
I'm having a problem with EXPECT_CALL method, when trying to do this :
boost::program_options::variables_map vm;
MyMock mock;
EXPECT_CALL(mock, MyMethod(vm)).WillOnce(Return(L""));
MyMethod ...
1
vote
1answer
74 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
2answers
73 views
How do I mock non overridden, virtual/non virtual methods of a base classs while unit testing?
I am sorry if this is a duplicate.
How do I mock non-overriden non virtual/virtual methods in a base class and test just the derived class's methods?
The case here is:
I have a base class X which ...
1
vote
2answers
433 views
Using Google Mock with boost::bind
I have a class whose constructor takes a Boost function, and I'd like to test it with Google Mock. The following code shows a sample class and my attempt to test it:
MyClass.h:
#include ...
1
vote
2answers
103 views
Can a mock class inherit from another mock class in googlemock?
Can a mock class inherit from another mock class in googlemock? If yes, then please help me in understanding why isn't this working.
class IA
{
public:
virtual int test1(int a) = 0;
};
class IB : ...
1
vote
3answers
228 views
Can I get away with not mocking all methods in an interface in C++ when using googlemock
I am using Google Mock 1.6 RC and am trying to Mock a COM Interface. There are close to 50 methods in the COM Interface some of which are inherited from base interfaces. When I create a mock struct ...
1
vote
1answer
277 views
Using GMock to verify a Destructor Call
Using GMock, how can I verify that a class's destructor is called? Is there a way, other than to wrap it in another class?
The obvious method, EXPECT_CALL(object, ~classtype()) yields a compiler ...
0
votes
2answers
9 views
Partial Mocking Class with Multiple Static Methods with GMock
I'm using GMock to add some unit testing to our existing Java projects. We have multiple places where the methods needing to be tested are static methods, which utilize additional static methods ...
0
votes
1answer
48 views
Google Mock Help Required,
I have 2 classes.
class SomeClass
{
public:
int SomeFunction()
{
return 5;
}
};
class AnotherClass
{
public:
int AnotherFunction(SomeClass obj)
{
return ...
0
votes
1answer
53 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
2answers
29 views
how to set custom ref-variable in gmock
I am using gmock in my project and I meet a problem to set a custom reference variable for a mock function.
Suppose I have a class as following:
class XXXClient {
public:
void QueryXXX(const ...
0
votes
1answer
124 views
How do I create a function object which modifies its arguments?
I'd like to replace SomeFunction and SetArg with something more generic from boost.
It looks like something that can be done with bind in combination with lambda, but I don't know how.
This code is ...
0
votes
1answer
50 views
Using GMock with Spring how to I setup up a spring context only once for several tests?
I find that when running multiple gmock tests using and in memory database I get errors about table already being there. It seems to run the spring context creation multiple times, even though it's ...
0
votes
2answers
80 views
What is the easiest way to invoke a member function on an argument passed to a mocked function?
Given the interfaces
class IFooable {
virtual void Fooable() = 0;
};
class IFoo {
virtual void Foo(IFooable* pFooable) = 0;
};
and the goole mock mock
class TMockFoo : public IFoo {
...
0
votes
1answer
199 views
GMock and mocking constructors in a class with non virtual methods
i need to mock a class that has only non virtual methods. This class
has a copy constructor. How to I write a mock method for that. I get a
compiler error if I just use the
MOCK_METHOD1(classname, ...
0
votes
1answer
330 views
Mock non-virtual method C++ (gmock)
I have class
class CSumWnd : public CBaseWnd
{
private:
bool MethodA()
}
Please can you help how to mock MethodA() without making virtual,
I didn't understand the concept of hi-perf dependency ...
0
votes
1answer
197 views
TestPlugInRunnerd.exe + gmock
We build our cppunit unittests as a dll and load it into TestPlugInRunnerd.exe to show our results. We write our own mocks but I'd like to start using a mocking framework such as gmock.
I downloaded ...
0
votes
1answer
106 views
gmock : Doing custom check that can fail
I am using google mock library in my unit tests, and I am trying to do a custom check that can fail.
Next example demonstrates what I am trying to do :
struct Base
{
};
struct Derived : Base
{
int ...
0
votes
3answers
256 views
Can gmock mock static methods of Java classes? Alternative?
I could not get it to work. It's like the method is not mocked.
Are there alternative groovy testing frameworks that work better to mock static Java methods?
Update 02/Mar/2011: Adding code:
I am ...