2013-04-22 17:49:28 +03:00
|
|
|
/*
|
|
|
|
* CVcmiTestConfig.h, 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
|
|
|
|
*
|
|
|
|
*/
|
2017-07-13 10:26:03 +02:00
|
|
|
#pragma once
|
2013-04-22 17:49:28 +03:00
|
|
|
|
2018-04-15 13:02:31 +02:00
|
|
|
#include "StdInc.h"
|
|
|
|
|
2013-04-22 17:49:28 +03:00
|
|
|
/// Global setup/tear down class for unit tests.
|
2018-04-15 13:02:31 +02:00
|
|
|
class CVcmiTestConfig : public ::testing::Environment
|
2013-04-22 17:49:28 +03:00
|
|
|
{
|
|
|
|
public:
|
2018-04-15 13:02:31 +02:00
|
|
|
virtual void SetUp() override;
|
|
|
|
virtual void TearDown() override;
|
2013-04-22 17:49:28 +03:00
|
|
|
};
|