A weird game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
turings-tarpit/tests/game_engine.cpp

11 lines
236 B

#include <doctest.h>
#include "../game_engine.hpp"
TEST_CASE("game engine can start and take hit") {
// test fails on purpose right now
GameEngine game{4};
string err{"error"};
game.hit(err);
CHECK(game.is_dead() == true);
}