public void GetAttributeBody_returns_body()
        {
            var configuration = new MaxLengthStringConfiguration { MaxLength = 30 };
            var code = new CSharpCodeHelper();

            Assert.Equal("StringLength(30)", configuration.GetAttributeBody(code));
        }
        public void GetAttributeBody_returns_body()
        {
            var configuration = new MaxLengthStringConfiguration {
                MaxLength = 30
            };
            var code = new CSharpCodeHelper();

            Assert.Equal("StringLength(30)", configuration.GetAttributeBody(code));
        }