public void CtorZetNaam()
        {
            const string name   = "MyCodetable";
            var          attrib = new CodetableControllerAttribute(name);

            Assert.Equal(name, attrib.Name);
        }
 public void DefaultNaamIsController()
 {
     var attrib = new CodetableControllerAttribute();
     Assert.Equal("[controller]", attrib.Name);
 }
 public void CtorZetNaam()
 {
     const string name = "MyCodetable";
     var attrib = new CodetableControllerAttribute(name);
     Assert.Equal(name, attrib.Name);
 }
        public void DefaultNaamIsController()
        {
            var attrib = new CodetableControllerAttribute();

            Assert.Equal("[controller]", attrib.Name);
        }