diff options
author | hop311 <hop3114@gmail.com> | 2024-02-19 21:36:19 +0100 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2024-02-19 21:56:05 +0100 |
commit | e5a7ddfa0aeb8f62e2b53f111122c1c51c03dabc (patch) | |
tree | d55471ba1dd0a487e14e2ab18a3c4e3e2d0140ad /src/openvic-simulation/testing/TestScript.hpp | |
parent | 35e5f7828a41736194362186ad4f946fad5964d1 (diff) |
Fixed point rounding functions and sources cleanup
Diffstat (limited to 'src/openvic-simulation/testing/TestScript.hpp')
-rw-r--r-- | src/openvic-simulation/testing/TestScript.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/openvic-simulation/testing/TestScript.hpp b/src/openvic-simulation/testing/TestScript.hpp index b41246e..fdf23a5 100644 --- a/src/openvic-simulation/testing/TestScript.hpp +++ b/src/openvic-simulation/testing/TestScript.hpp @@ -10,9 +10,11 @@ namespace OpenVic { std::vector<Requirement*> requirements = std::vector<Requirement*>(); GameManager* PROPERTY_RW(game_manager); - std::string PROPERTY_RW(script_name); + std::string PROPERTY(script_name); public: + TestScript(std::string_view new_script_name); + // 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 |