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

            propertySetting.SetProperty("Property", "*Save*draft*");

            Assert.IsTrue(propertySetting.PropertyNameMatches("Save as draft"));
            Assert.IsTrue(propertySetting.PropertyNameMatches("Save to Drafts"));
            Assert.IsFalse(propertySetting.PropertyNameMatches("To"));
        }