public void ShouldReturnExpectedAllowBots()
        {
            var defaultGameSettings =
                new DefaultGameSettingsFactory()
                .Get();

            Assert.IsTrue(defaultGameSettings.AllowBots);
        }
        public void ShouldReturnExpectedDesiredPlayerCount()
        {
            const int expectedResult      = 5;
            var       defaultGameSettings =
                new DefaultGameSettingsFactory()
                .Get();

            Assert.AreEqual(expectedResult, defaultGameSettings.DesiredPlayerCount);
        }