public void GivenTwoSimpleFeatureSwitches_ReturnsFalse_IfIsEnabledStatesAreDifferent()
            {
                //Arrange
                const string validFeatureType = "Femah.Core.FeatureSwitchTypes.SimpleFeatureSwitch, Femah.Core, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null";
                var featureSwitch1 = new SimpleFeatureSwitch
                {
                    Name = "TestFeatureSwitch1",
                    FeatureType = validFeatureType,
                    IsEnabled = true
                };

                var featureSwitch2 = new SimpleFeatureSwitch
                {
                    Name = "TestFeatureSwitch1",
                    FeatureType = validFeatureType,
                    IsEnabled = false
                };

                //Act
                var equal = featureSwitch1.Equals(featureSwitch2);

                //Assert
                Assert.IsFalse(equal);
            }