public void Should_DisableOne()
        {
            var mapEventActivationFlags = MapEventActivationFlags.All().Disable(MapEventType.Click);

            Assert.NotEmpty(mapEventActivationFlags.EnabledEvents);
            Assert.DoesNotContain(MapEventType.Click.ToString(), mapEventActivationFlags.EnabledEvents);
        }
        public void Should_HaveEverything_Enabled()
        {
            var mapEventActivationFlags = MapEventActivationFlags.All();

            Assert.NotEmpty(mapEventActivationFlags.EnabledEvents);
        }