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

ReadDotAtom_WithValidDotAtomAndDoubleDots_ShouldReadCorrectly() private method

        public void ReadDotAtom_WithValidDotAtomAndDoubleDots_ShouldReadCorrectly()
        {
            int index = ValidDotAtomDoubleDots.Length - 1;
            index = DotAtomReader.ReadReverse(ValidDotAtomDoubleDots, index);

            Assert.Equal(0, index);
        }
MailAddressParserTest