mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
43 lines
916 B
C++
43 lines
916 B
C++
/*
|
|
* CHeroClassTest.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 CHeroClassTest : public Test
|
|
{
|
|
public:
|
|
MOCK_METHOD4(registarCb, void(int32_t, int32_t, const std::string &, const std::string &));
|
|
|
|
protected:
|
|
std::shared_ptr<CHeroClass> subject;
|
|
|
|
void SetUp() override
|
|
{
|
|
subject = std::make_shared<CHeroClass>();
|
|
}
|
|
};
|
|
|
|
TEST_F(CHeroClassTest, RegistersIconsDoesNothing)
|
|
{
|
|
auto cb = [this](auto && PH1, auto && PH2, auto && PH3, auto && PH4)
|
|
{
|
|
registarCb(std::forward<decltype(PH1)>(PH1), std::forward<decltype(PH2)>(PH2), std::forward<decltype(PH3)>(PH3), std::forward<decltype(PH4)>(PH4));
|
|
};
|
|
subject->registerIcons(cb);
|
|
}
|
|
|
|
}
|