このスレッドの非常に優れたコンテンツを見てきましたが、問題は解決していません。MSTEST プリンシパルアクセス許可
私のクラス:
public class SecurityUsingAttributes
{
[PrincipalPermission(SecurityAction.Demand, Role = "SomeRole")]
public int MyMethod1()
{
return 5;
}
}
私のテスト:
[TestClass]
public class SecurityUsingAttributesTests
{
[TestMethod]
public void TestMethod1()
{
IIdentity identity = new GenericIdentity(@"MyDomain\MyName");
string[] roles = new string[] { "SomeRole"};
IPrincipal genericPrincipal = new GenericPrincipal(identity, roles);
Thread.CurrentPrincipal = genericPrincipal;
SecurityUsingAttributes target = new SecurityUsingAttributes();
Assert.IsTrue(5 == target.MyMethod1());
}
}
これで動作します。