Exemplo n.º 1
0
        public void TestNoCodeFixAttributeReason()
        {
            string reason    = "Reason";
            var    attribute = new NoCodeFixAttribute(reason);

            Assert.Same(reason, attribute.Reason);
        }
 public void TestNoCodeFixAttributeReason()
 {
     string reason = "Reason";
     var attribute = new NoCodeFixAttribute(reason);
     Assert.Same(reason, attribute.Reason);
 }
        public void TestNoCodeFixAttribute()
        {
            var attribute = new NoCodeFixAttribute("Message");

            Assert.Equal("Message", attribute.Reason);
        }