File: test_dontcare.cpp

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

class IZ { 
public:
	virtual ~IZ() {}
};

class IY {
public:
	virtual bool test(int a, IZ &b);
};

bool operator==(const IZ &, const IZ &)
{
	return false;
}

TEST (checkDontcareIsIgnored)
{
	MockRepository mocks;
	IY *iamock = mocks.Mock<IY>();
	mocks.OnCall(iamock, IY::test).Return(false);
	mocks.OnCall(iamock, IY::test).With(42, _).Return(true);
	IZ iz;
	EQUALS(true, iamock->test(42, iz));
	EQUALS(false, iamock->test(40, iz));
}