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

WithLengthStringShortEnough() private method

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