System.Net.Mail.Tests.AttachmentTest.ConstructorNullName C# (CSharp) Méthode

ConstructorNullName() private méthode

private ConstructorNullName ( ) : void
Résultat void
        public void ConstructorNullName()
        {
            Attachment attach = new Attachment(new MemoryStream(), null, "application/octet-stream");
            Assert.Equal(null, attach.Name);
        }