コード例 #1
0
        public void ShouldRollForPlaceOnTheWallWhenPassigRoomWallSize()
        {
            // given
            const int wallSize = 10;

            // when
            var placeOnTheWall = _yoloDice.RollForPlaceOnTheWall(wallSize);

            // then
            Assert.That(placeOnTheWall, Is.InRange(1, 9));
        }