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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#include "hippomocks.h"
#include "Framework.h"
class IM {
public:
virtual ~IM() {}
virtual void begin() = 0;
virtual void end() = 0;
virtual void a() = 0;
virtual void b() = 0;
};
TEST (checkTransactionStyleWorks)
{
MockRepository mocks;
IM *iamock = mocks.Mock<IM>();
mocks.autoExpect = false;
Call &beginCall = mocks.ExpectCall(iamock, IM::begin);
Call &aCall = mocks.ExpectCall(iamock, IM::a).After(beginCall);
Call &bCall = mocks.ExpectCall(iamock, IM::b).After(beginCall);
mocks.ExpectCall(iamock, IM::end).After(aCall).After(bCall);
iamock->begin();
iamock->b();
iamock->a();
iamock->end();
}
TEST (checkTransactionStyleFailIfOneSkipped)
{
MockRepository mocks;
IM *iamock = mocks.Mock<IM>();
mocks.autoExpect = false;
Call &beginCall = mocks.ExpectCall(iamock, IM::begin);
Call &aCall = mocks.ExpectCall(iamock, IM::a).After(beginCall);
Call &bCall = mocks.ExpectCall(iamock, IM::b).After(beginCall);
mocks.ExpectCall(iamock, IM::end).After(aCall).After(bCall);
iamock->begin();
iamock->b();
bool exceptionCaught = false;
try {
iamock->end();
}
catch (HippoMocks::ExpectationException &)
{
exceptionCaught = true;
}
CHECK(exceptionCaught);
mocks.reset();
}
|