public void Constructor1_Deny_Unrestricted ()
{
CodeNamespaceCollection coll = new CodeNamespaceCollection (array);
coll.CopyTo (array, 0);
Assert.AreEqual (1, coll.Add (cn), "Add");
Assert.AreSame (cn, coll[0], "this[int]");
coll.AddRange (array);
coll.AddRange (coll);
Assert.IsTrue (coll.Contains (cn), "Contains");
Assert.AreEqual (0, coll.IndexOf (cn), "IndexOf");
coll.Insert (0, cn);
coll.Remove (cn);
}