aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/testing/Requirement.hpp
diff options
context:
space:
mode:
author CptAlanSmith <123112708+CptAlanSmith@users.noreply.github.com>2023-09-25 21:51:49 +0200
committer GitHub <noreply@github.com>2023-09-25 21:51:49 +0200
commit127ca294056817bc5814ef5516b29a67ff3fa3bb (patch)
tree2e5c5676a43793678dfd75f83a862eb3f9f4a780 /src/openvic-simulation/testing/Requirement.hpp
parent05b6db7305398e12363f727a50315972cc9a5a54 (diff)
Testing (#28)
* Dataloader stubs + default compat path + bits+bobs * Followup big dataloader commit * Fixes for building scons * Initial proof of concept auto-testing Shows how we can pull loaded data and display it back * data-loader include * Re-did headless Because hubert insisted it be done like this ;) * Auto-Testing Framework Basics * Requirements Calculations * Fix for messy merge (teach me to use merge tools) * Fixing up misc merge issues to fully reconcile with master changes * Re-added missing getters * Move of testing files due to folder reorgs * Update of file tests * Test scripting updates - elimnination of issues with data variables hanging over from big merges Routed gamemanager down to scripts on execute * Update StringUtils.hpp * Initial pipeline building * Pipe fabrication * Continued work on goods testing, removal of pragma once lines * Finish of economy tests, initial results outputting * Output of results * Removal of direct.h for cross compatibility --------- Co-authored-by: Hop311 <hop3114@gmail.com>
Diffstat (limited to 'src/openvic-simulation/testing/Requirement.hpp')
-rw-r--r--src/openvic-simulation/testing/Requirement.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/openvic-simulation/testing/Requirement.hpp b/src/openvic-simulation/testing/Requirement.hpp
index aeb36e7..caea5c6 100644
--- a/src/openvic-simulation/testing/Requirement.hpp
+++ b/src/openvic-simulation/testing/Requirement.hpp
@@ -5,10 +5,16 @@ namespace OpenVic {
class Requirement {
+ // Loaded during construction
std::string id;
std::string text;
std::string acceptance_criteria;
bool pass = false; // Explicitly false to begin
+ bool tested = false;
+
+ // Initialised and used during script execution
+ std::string target_value;
+ std::string actual_value;
public:
@@ -23,11 +29,17 @@ namespace OpenVic {
std::string get_text();
std::string get_acceptance_criteria();
bool get_pass();
+ bool get_tested();
+ std::string get_target_value();
+ std::string get_actual_value();
// Setters
void set_id(std::string in_id);
void set_text(std::string in_text);
void set_acceptance_criteria(std::string in_acceptance_criteria);
void set_pass(bool in_pass);
+ void set_tested(bool in_tested);
+ void set_target_value(std::string in_target_value);
+ void set_actual_value(std::string in_actual_value);
};
}