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

namespace OpenVic {
   class A_004_networking_tests : public TestScript {

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

      void add_requirements() {}

      void execute_script() {}
   };
}