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

namespace OpenVic {
   class A_005_nation_tests : public TestScript {

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

      void add_requirements() {
      }

      void execute_script() {
      }
   };
}