System.Net.Mail.Tests.MailAddressParserTest.ReadCFWS_WithSingleSpace_ShouldReadTheSpace C# (CSharp) Method

ReadCFWS_WithSingleSpace_ShouldReadTheSpace() private method

private ReadCFWS_WithSingleSpace_ShouldReadTheSpace ( ) : void
return void
        public void ReadCFWS_WithSingleSpace_ShouldReadTheSpace()
        {
            int index = SingleSpace.Length - 1;

            index = WhitespaceReader.ReadCfwsReverse(SingleSpace, index);
            Assert.Equal(-1, index);
        }
MailAddressParserTest