public void TestWithMaxStrikes()
        {
            // GIVEN an empty config builder
            DarkRiftServerConfigurationBuilder builder = DarkRiftServerConfigurationBuilder.Create();

            // WHEN max strikes are set
            builder.WithMaxStrikes(123);

            // THEN the max strikes are set in the spawn data
            Assert.AreEqual(123, builder.ServerSpawnData.Server.MaxStrikes);
        }