File: test_array.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 (21 lines) | stat: -rw-r--r-- 438 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
#include "hippomocks.h"
#include "Framework.h"

class IArrayArgs {
public:
	virtual ~IArrayArgs() {}
	virtual void f(std::string);
	virtual void g(std::wstring) = 0;
};

TEST (checkArrayArgumentsAccepted)
{
	MockRepository mocks;
	IArrayArgs *iamock = mocks.Mock<IArrayArgs>();
	mocks.ExpectCall(iamock, IArrayArgs::f).With("Hello");
	mocks.ExpectCall(iamock, IArrayArgs::g).With(L"World");
	iamock->f("Hello");
	iamock->g(L"World");
}