System.Net.Mail.Tests.MailAddressParserTest.ReadQuotedString_WithUnicodeAndUnicodeIsInvalid_ShouldThrow C# (CSharp) 메소드

ReadQuotedString_WithUnicodeAndUnicodeIsInvalid_ShouldThrow() 개인적인 메소드

        public void ReadQuotedString_WithUnicodeAndUnicodeIsInvalid_ShouldThrow()
        {
            int index = UnicodeQuotedString.Length - 1;
            Assert.Throws<FormatException>(() => { QuotedStringFormatReader.ReadReverseUnQuoted(UnicodeQuotedString, index, false, false); });
        }
MailAddressParserTest