public CustomRouteAttribute(string template)
 {
     InnerAttribute = new RouteAttribute(template);
 }
        public void DefaultCtor_IsEmptyString()
        {
            RouteAttribute attribute = new RouteAttribute();

            Assert.Equal(String.Empty, attribute.RouteTemplate);
        }
Example #3
0
        public void DefaultCtor_IsEmptyString()
        {
            RouteAttribute attribute = new RouteAttribute();

            Assert.Equal(String.Empty, attribute.Template);
        }