blob: d6178ba432261b12685ef7047a8a5f926353631e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "turnsmm/turn-order.hpp"
#include <catch2/catch_test_macros.hpp>
SCENARIO("Creating a turn order", "[lib][object][lifetime]")
{
GIVEN("A turn order constructed using the default constructor")
{
auto instance = Turns::TurnOrder{};
THEN("it's running state is false")
{
REQUIRE_FALSE(instance.get_running());
}
}
}
|