public void Should_EnableOne()
        {
            var mapEventActivationFlags = MapEventActivationFlags.None().Enable(MapEventType.Click);

            Assert.Single(mapEventActivationFlags.EnabledEvents);
            Assert.Equal(mapEventActivationFlags.EnabledEvents.First(), MapEventType.Click.ToString());
        }
        public void Should_HaveEverything_Disabled()
        {
            var mapEventActivationFlags = MapEventActivationFlags.None();

            Assert.Empty(mapEventActivationFlags.EnabledEvents);
        }