aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/testing/test_scripts/A_005_nation_tests.cpp
blob: bfa8a59f0e442247b72778aa5fbfcc26b99fb56a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "openvic-simulation/GameManager.hpp"
#include "openvic-simulation/testing/TestScript.hpp"

namespace OpenVic {
   class A_005_nation_tests : public TestScript {

   public:
      A_005_nation_tests() : TestScript { "A_005_nation_tests" } {
         add_requirements();
      }

      void add_requirements() {}

      void execute_script() {}
   };
}