public void PropertyValueMatches()
        {
            var propertySetting = new ActivityPropertySetting();

            propertySetting.SetProperty("Value", "True");

            Assert.IsTrue(propertySetting.ValueMatches("True"));
            Assert.IsTrue(propertySetting.ValueMatches("true"));
            Assert.IsFalse(propertySetting.ValueMatches("False"));

            propertySetting.SetProperty("Value", "S*");
            Assert.IsTrue(propertySetting.ValueMatches("Skip"));
            Assert.IsTrue(propertySetting.ValueMatches("Stop"));
            Assert.IsFalse(propertySetting.ValueMatches("Continue"));
        }