Quiero probar el fallo en caso de que falle algún método en un objeto simulado, utilizando google mock. lo que el código sea algo como:google mock: cómo puedo "ESPERAR" que no se invocará ningún método en un simulacro
auto mocObj = new MockObj;
EXPECT_NO_METHOD_CALL(mocObj); //this is what I'm locking for
auto mainObj = new MainObj(mocObj , ......and other mocks); // here I simulate a fail using the other mock objects, and I want to be sure the no methods are called on the mockObj
Pregunta: ¿por qué está renovando sus objetos? No es necesario ... –