aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/testing/TestScript.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvic-simulation/testing/TestScript.hpp')
-rw-r--r--src/openvic-simulation/testing/TestScript.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/openvic-simulation/testing/TestScript.hpp b/src/openvic-simulation/testing/TestScript.hpp
index c278323..bfc2e95 100644
--- a/src/openvic-simulation/testing/TestScript.hpp
+++ b/src/openvic-simulation/testing/TestScript.hpp
@@ -1,7 +1,8 @@
#pragma once
-#include <testing/Requirement.hpp>
#include <vector>
-#include <GameManager.hpp>
+
+#include "openvic-simulation/GameManager.hpp"
+#include "openvic-simulation/testing/Requirement.hpp"
namespace OpenVic {
@@ -12,7 +13,6 @@ namespace OpenVic {
std::string script_name;
public:
-
// expects an overriden method that performs arbitrary code execution
// so that each script uniquely performs tests
// for both requirement adding to script and to execute code
@@ -36,6 +36,8 @@ namespace OpenVic {
void set_script_name(std::string in_script_name);
// Methods
- void pass_or_fail_req_with_actual_and_target_values(std::string req_name, std::string target_value, std::string actual_value);
+ void pass_or_fail_req_with_actual_and_target_values(
+ std::string req_name, std::string target_value, std::string actual_value
+ );
};
}