1
0
mirror of https://github.com/vcmi/vcmi.git synced 2026-05-20 09:49:37 +02:00
Files

21 lines
433 B
C++
Raw Permalink Normal View History

/*
* 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
*
*/
#pragma once
2018-04-15 14:02:31 +03:00
#include "StdInc.h"
/// Global setup/tear down class for unit tests.
2018-04-15 14:02:31 +03:00
class CVcmiTestConfig : public ::testing::Environment
{
public:
2024-02-10 20:22:08 +01:00
void SetUp() override;
void TearDown() override;
};