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
|
/*
* CHeroTest.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "../../lib/CHeroHandler.h"
namespace test
{
using namespace ::testing;
class CHeroTest : public Test
{
public:
MOCK_METHOD3(registarCb, void(int32_t, const std::string &, const std::string &));
protected:
std::shared_ptr<CHero> subject;
void SetUp() override
{
subject = std::make_shared<CHero>();
}
};
TEST_F(CHeroTest, RegistersIcons)
{
subject->imageIndex = 4242;
subject->iconSpecSmall = "Test1";
subject->iconSpecLarge = "Test2";
subject->portraitSmall = "Test3";
subject->portraitLarge = "Test4";
auto cb = std::bind(&CHeroTest::registarCb, this, _1, _2, _3);
EXPECT_CALL(*this, registarCb(Eq(4242), "UN32", "Test1"));
EXPECT_CALL(*this, registarCb(Eq(4242), "UN44", "Test2"));
EXPECT_CALL(*this, registarCb(Eq(4242), "PORTRAITSSMALL", "Test3"));
EXPECT_CALL(*this, registarCb(Eq(4242), "PORTRAITSLARGE", "Test4"));
subject->registerIcons(cb);
}
}
|