1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#include "hippomocks.h"
#include "Framework.h"
class IZombie {
public:
virtual ~IZombie() {}
virtual void a() = 0;
};
TEST (checkZombieCallsAreReported)
{
bool exceptionCaught = false;
MockRepository mocks;
IZombie *iamock = mocks.Mock<IZombie>();
mocks.ExpectCall(iamock, IZombie::a);
mocks.ExpectCallDestructor(iamock);
iamock->a();
delete iamock;
try
{
iamock->a();
}
catch(HippoMocks::ZombieMockException &)
{
exceptionCaught = true;
}
CHECK(exceptionCaught);
}
|