File: test_args.cpp

package info (click to toggle)
hippomocks 5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 672 kB
  • sloc: cpp: 7,791; ansic: 31; makefile: 28
file content (39 lines) | stat: -rw-r--r-- 688 bytes parent folder | download | duplicates (2)
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
#include "hippomocks.h"
#include "Framework.h"

class IB {
public:
	virtual ~IB() {}
	virtual void f(int);
	virtual void g(int) = 0;
};

TEST (checkArgumentsAccepted)
{
	MockRepository mocks;
	IB *iamock = mocks.Mock<IB>();
	mocks.ExpectCall(iamock, IB::f).With(1);
	mocks.ExpectCall(iamock, IB::g).With(2);
	iamock->f(1);
	iamock->g(2);
}

TEST (checkArgumentsChecked)
{
	MockRepository mocks;
	IB *iamock = mocks.Mock<IB>();
	mocks.ExpectCall(iamock, IB::f).With(1);
	mocks.ExpectCall(iamock, IB::g).With(1);
	bool exceptionCaught = false;
	try 
	{
		iamock->f(2);
	}
	catch (HippoMocks::ExpectationException)
	{
		exceptionCaught = true;
	}
	CHECK(exceptionCaught);
	mocks.reset();
}