19

I am new to googlemock (and StackOverflow). I got a problem when using MOCK_METHODn in googlemock and I believe this function is widely used. Here is what I did.

I have an abstract class Foo with virtual overloaded operator[]:

class Foo{
public:
      virtual ~Foo(){};
      virtual int operator [] (int index) = 0;
}

and I want to use googlemock to get a MockFoo:

class MockFoo: public Foo{
public:
      MOCK_METHOD1(operator[], int(int index));  //The compiler indicates this line is incorrect
}

However, this code gives me a compile error like this:

error: pasting "]" and "_" does not give a valid preprocessing token
  MOCK_METHOD1(operator[], GeneInterface&(int index));

My understanding is that compiler misunderstands the operator[] and doesn't take it as a method name. But what is the correct way to mock the operator[] by using MOCK_METHODn? I have read the docs from googlemock but found nothing related to my question. Cound anyone help me with it?

Thanks!

273K
  • 29,503
  • 10
  • 41
  • 64
Ruoxi
  • 213
  • 1
  • 2
  • 6
  • 1
    Possible duplicate of [How to create a mock class with operator\[\]?](https://stackoverflow.com/questions/6492664/how-to-create-a-mock-class-with-operator) – r3mus n0x Apr 10 '19 at 09:01

1 Answers1

30

You can't. See: https://groups.google.com/forum/#!topic/googlemock/O-5cTVVtswE

The solution is to just create a regular old fashioned overloaded method like so:

class Foo {
 public:
 virtual ~Foo() {}
 virtual int operator [] (int index) = 0;
};

class MockFoo: public Foo {
 public:
 MOCK_METHOD1(BracketOp, int(int index));
 virtual int operator [] (int index) override { return BracketOp(index); }
}; 
ifma
  • 3,673
  • 4
  • 26
  • 38