Ejemplo n.º 1
0
        public void ShouldValidateFailure(string category)
        {
            var attr = new KeyRuleAttribute();

            Assert.IsFalse(attr.IsValid(category));
        }
Ejemplo n.º 2
0
        public void ShouldValidateSuccess(string category)
        {
            var attr = new KeyRuleAttribute();

            Assert.IsTrue(attr.IsValid(category));
        }