public void Should_DisableOne()
        {
            var events = GeolocationEventActivationFlags.All().Disable(GeolocationEventType.GeolocationError);

            Assert.NotEmpty(events.EnabledEvents);
            Assert.DoesNotContain(GeolocationEventType.GeolocationError.ToString(), events.EnabledEvents);
        }
        public void Should_HaveEverything_Enabled()
        {
            var events = GeolocationEventActivationFlags.All();

            Assert.NotEmpty(events.EnabledEvents);
        }