From 286763000e4e5919c07f2840c64ecc7932530175 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Mon, 25 Jun 2018 20:26:05 +0200 Subject: Updated test cases and made engine work correctly according to tests I don't think a tesla appeared in this match. I need to contrive a bot to build one. --- tests/monte-carlo-test.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/monte-carlo-test.rs (limited to 'tests/monte-carlo-test.rs') diff --git a/tests/monte-carlo-test.rs b/tests/monte-carlo-test.rs new file mode 100644 index 0000000..479b36d --- /dev/null +++ b/tests/monte-carlo-test.rs @@ -0,0 +1,19 @@ +extern crate zombot; +extern crate time; +use time::{PreciseTime, Duration}; + +use zombot::*; + +const STATE_PATH: &str = "tests/state0.json"; + +// there are assertions in the game engine, run when it's in debug mode +#[test] +fn it_does_a_normal_turn_successfully() { + let start_time = PreciseTime::now(); + let (settings, state) = match input::json::read_state_from_file(STATE_PATH) { + Ok(ok) => ok, + Err(error) => panic!("Error while parsing JSON file: {}", error) + }; + let max_time = Duration::milliseconds(1950); + strategy::monte_carlo::choose_move(&settings, &state, &start_time, max_time); +} -- cgit v1.2.3