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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#include <string>
#include "hippomocks.h"
#include "Framework.h"
class IOutParam {
public:
virtual ~IOutParam() {}
virtual void a(std::string& out) = 0;
virtual void b(std::string** out) = 0;
virtual void c(char** out) = 0;
};
TEST (checkOutParamsAreFilledIn_ConstChar)
{
MockRepository mocks;
IOutParam *iamock = mocks.Mock<IOutParam>();
mocks.ExpectCall(iamock, IOutParam::a).With(Out("Hello World"));
std::string out;
iamock->a(out);
CHECK(out == "Hello World");
}
TEST (checkOutParamsAreFilledIn_String)
{
MockRepository mocks;
IOutParam *iamock = mocks.Mock<IOutParam>();
std::string teststring("Hello World");
mocks.ExpectCall(iamock, IOutParam::a).With(Out(teststring));
std::string out;
iamock->a(out);
CHECK(out == teststring);
}
TEST (checkOutParamsAreFilledIn_PointerToString)
{
MockRepository mocks;
IOutParam *iamock = mocks.Mock<IOutParam>();
std::string teststring("Hello World");
std::string *outString = new std::string(teststring);
mocks.ExpectCall(iamock, IOutParam::b).With(Out(outString));
std::string* out = 0;
iamock->b(&out);
CHECK(*out == teststring);
delete outString;
}
TEST (checkOutParamsAreFilledIn_Char)
{
MockRepository mocks;
IOutParam *iamock = mocks.Mock<IOutParam>();
const char* teststring = "Hello World";
mocks.ExpectCall(iamock, IOutParam::c).With(Out((char*)teststring));
char* out = 0;
iamock->c(&out);
CHECK(strcmp(out, teststring) == 0);
}
|