Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 array.

How do I mock this side effect? I tried the following:

double a_mockedValues[] = {1., 2.};
ON_CALL(myMock, myFunc(_)).WillByDefault(SetArgPointee<0>(a_mockedValues));

My intention is that the caller of myFunc receives the values 1. and 2. into the array that it passes to the mocked method.

However, this approach does not work. The compiler says something like:

cannot specify explicit initializer for arrays

Does anybody know how to mock the behavior of such a parameter?

Thank you.

share|improve this question

1 Answer

up vote 1 down vote accepted

There is actually a predicate for this specific use-case: SetArrayArgument (see the third example under Mocking Side Effects in the Google Mock CookBook (http://code.google.com/p/googlemock/wiki/CookBook).

Your code would then become:

double a_mockedValues[] = { 1., 2. };
ON_CALL(myMock, myFunc(_)).WillByDefault(SetArrayArgument<0>(a_mockedValues, a_mockedValues + 2));
share|improve this answer
Thank you very much, that's what I wanted. Although I get a huge compiler warning: std::_Copy_impl': Function call with parameters that may be unsafe... But I suppose I could do nothing else but suppress the warning or use something else than an array. – anhoppe Jan 14 at 11:42
Do you have the newest version of Google Mock? The header contains an instruction to disable this warning automatically, but only if _MSC_VER is defined. Also, please 'accept' this answer by clicking on the checkmark to the left. – rmhartog Jan 14 at 11:51
Opps, forgot to check, sry. And yes, I could disable the warning. Thank you. – anhoppe Jan 14 at 12:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.