Appccelerate.Formatters.StringTruncationFormatterTest.WithoutLength C# (CSharp) Method

WithoutLength() private method

private WithoutLength ( ) : void
return void
        public void WithoutLength()
        {
            string.Format(new StringTruncationFormatter(), "{0,-10}", "12345678")
                .Should().Be("12345678  ");
        }