Merge pull request #1032 from miguelzf/master
[mono.git] / mcs / class / corlib / Test / System.Security.Claims / ClaimsIdentityTest.cs
1 //
2 // WindowsIdentityTest.cs - NUnit Test Cases for WindowsIdentity
3 //
4 // Author:
5 //      Sebastien Pouliot (sebastien@ximian.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
9 //
10 #if NET_4_5
11 using NUnit.Framework;
12 using System;
13 using System.Security.Claims;
14
15 namespace MonoTests.System.Security.Claims {
16
17         [TestFixture]
18         public class ClaimsIdentityTest {
19
20                 [Test]
21                 public void EmptyCtorWorks () {
22                         var id = new ClaimsIdentity ();
23                         Assert.IsNull (id.AuthenticationType, "#1");
24                         
25                 }
26         }
27 }
28 #endif