2005-05-28 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Sat, 28 May 2005 14:53:50 +0000 (14:53 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Sat, 28 May 2005 14:53:50 +0000 (14:53 -0000)
* HostSecurityManagerTest.cs: Remove NotWorking from tests.

svn path=/trunk/mcs/; revision=45139

mcs/class/corlib/Test/System.Security/ChangeLog
mcs/class/corlib/Test/System.Security/HostSecurityManagerTest.cs

index 736e0560b057f5ee92638efffa82dac0e315f212..3a5aa86f76b82fc6ffa31ea57c21b5973c356312 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-28  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * HostSecurityManagerTest.cs: Remove NotWorking from tests.
+
 2005-05-27  Sebastien Pouliot  <sebastien@ximian.com>
 
        * NamedPermissionSetTest.cs: Re-enable the "NotWorking" unit test.
index 54e7d154790bf31afabdbcf10faa3f02428d1c57..321e085affd928bea52c4c2105625e655660b79e 100644 (file)
@@ -31,7 +31,6 @@
 using NUnit.Framework;
 using System;
 using System.Reflection;
-//using System.Runtime.Hosting;
 using System.Security;
 using System.Security.Policy;
 
@@ -57,18 +56,14 @@ namespace MonoTests.System.Security {
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (ArgumentException))]
                public void DetermineApplicationTrust_Evidence_Null_TrustManagerContext ()
                {
                        HostSecurityManager hsm = new HostSecurityManager ();
-                       Evidence app = new Evidence ();
-                       //app.AddHost (new ActivationArgument ());
-                       hsm.DetermineApplicationTrust (app, null, new TrustManagerContext ());
+                       hsm.DetermineApplicationTrust (new Evidence (), null, new TrustManagerContext ());
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (ArgumentException))]
                public void DetermineApplicationTrust_Evidence_Evidence_Null ()
                {