Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

26 lines
659 B
C#

// MutexAccessRuleTest - NUnit Test Cases for MutexAccessRule
//
// Authors:
// James Bellinger (jfb@zer7.com)
using System;
using System.Security.AccessControl;
using System.Security.Principal;
using NUnit.Framework;
namespace MonoTests.System.Security.AccessControl
{
[TestFixture]
public class MutexAccessRuleTest
{
[Test]
public void ConstructsWithoutCrashingAndRemembersRights ()
{
SecurityIdentifier id = new SecurityIdentifier (WellKnownSidType.WorldSid, null);
MutexAccessRule rule = new MutexAccessRule (id, MutexRights.FullControl, AccessControlType.Allow);
Assert.AreEqual (rule.MutexRights, MutexRights.FullControl);
}
}
}