CVcmiTestConfig.h 433 B

1234567891011121314151617181920
  1. /*
  2. * CVcmiTestConfig.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "StdInc.h"
  12. /// Global setup/tear down class for unit tests.
  13. class CVcmiTestConfig : public ::testing::Environment
  14. {
  15. public:
  16. void SetUp() override;
  17. void TearDown() override;
  18. };