Ok, so I'm using gtest for unit testing, and I've got something I want to do:
class A {
/* Private members */
public:
bool function_to_test(int index);
}
In the test function, I'd like to use:
A testEntity;
const int b = 40;
ASSERT_PRED1(testEntity.function_to_test, b);
This doesn't work as ASSERT_PREDx seems to be designed for global scope functions. I get a message on the lines of
argument of type ‘bool (A::)(int) {aka bool (A::)(int)}’ does not match ‘bool (A::*)(int)’
I was wondering if there was a good work around for this? I can always use a function with a global variable, but I wasn't sure if there was a one-line way around it.
function_to_testa static member function? – rhalbersma Jan 18 at 14:57