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

ReadDotAtom_WithValidDotAtom_ShouldReadCorrectly() private method

private ReadDotAtom_WithValidDotAtom_ShouldReadCorrectly ( ) : void
return void
        public void ReadDotAtom_WithValidDotAtom_ShouldReadCorrectly()
        {
            int index = ValidDotAtom.Length - 1;
            index = DotAtomReader.ReadReverse(ValidDotAtom, index);

            Assert.Equal(0, index);
        }
MailAddressParserTest