mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
39 lines
592 B
C++
39 lines
592 B
C++
|
/*
|
||
|
* TimedTest.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 "EffectFixture.h"
|
||
|
|
||
|
#include <vstd/RNG.h>
|
||
|
|
||
|
namespace test
|
||
|
{
|
||
|
using namespace ::spells;
|
||
|
using namespace ::spells::effects;
|
||
|
using namespace ::testing;
|
||
|
|
||
|
class TimedTest : public Test, public EffectFixture
|
||
|
{
|
||
|
public:
|
||
|
TimedTest()
|
||
|
: EffectFixture("core:timed")
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
void SetUp() override
|
||
|
{
|
||
|
EffectFixture::setUp();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|