NetPackFixture.cpp 473 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * NetPackFixture.cpp, 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. #include "StdInc.h"
  11. #include "NetPackFixture.h"
  12. namespace test
  13. {
  14. NetPackFixture::NetPackFixture()
  15. {
  16. }
  17. NetPackFixture::~NetPackFixture() = default;
  18. void NetPackFixture::setUp()
  19. {
  20. gameState = std::make_shared<GameStateFake>();
  21. }
  22. }