I receive a compilation error while using the following Google Mock declaration: EXPECT_CALL(some_object, someFunction(1,An<AStructIDefined>()))
I am trying to mock a templated method. Here is the class containing the method to mock : class myClass
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