2017-07-04 13:29:50 +02:00
|
|
|
/*
|
|
|
|
* main.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 "CVcmiTestConfig.h"
|
|
|
|
#include "../lib/filesystem/CMemoryBuffer.h"
|
|
|
|
|
2017-08-09 00:09:29 +02:00
|
|
|
int main(int argc, char * argv[])
|
2017-07-18 21:18:37 +02:00
|
|
|
{
|
2017-07-04 13:29:50 +02:00
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
2018-04-15 13:02:31 +02:00
|
|
|
::testing::AddGlobalTestEnvironment(new CVcmiTestConfig());
|
2017-07-04 13:29:50 +02:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|