Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@ -0,0 +1,52 @@
//
// MailAddressCollectionTest.cs - NUnit Test Cases for System.Net.MailAddress.MailAddressCollection
//
// Authors:
// John Luke (john.luke@gmail.com)
//
// (C) 2005 John Luke
//
#if NET_2_0
using NUnit.Framework;
using System;
using System.IO;
using System.Net.Mail;
using System.Net.Mime;
namespace MonoTests.System.Net.Mail
{
[TestFixture]
public class MailAddressCollectionTest
{
MailAddressCollection ac;
MailAddress a;
[SetUp]
public void GetReady ()
{
ac = new MailAddressCollection ();
a = new MailAddress ("foo@bar.com");
}
[Test]
public void InitialCount ()
{
Assert.IsTrue (ac.Count == 0);
}
[Test]
public void AddCount ()
{
ac.Add (a);
Assert.IsTrue (ac.Count == 1);
}
[Test]
public void RemoveCount ()
{
ac.Remove (a);
Assert.IsTrue (ac.Count == 0);
}
}
}
#endif