eol-style:native.
[mono.git] / mcs / class / System.XML / Test / System.Xml.Serialization / XmlIncludeAttributeTests.cs
1 //
2 // Tests for System.Xml.Serialization.XmlIncludeAttribute
3 //
4 // Author:
5 //   Gert Driesen
6 //
7 // (C) 2005 Novell
8 //
9
10 using System.Xml.Serialization;
11
12 using NUnit.Framework;
13
14 namespace MonoTests.System.XmlSerialization
15 {
16         [TestFixture]
17         public class XmlIncludeAttributeTests
18         {
19                 [Test]
20                 public void TypeDefault ()
21                 {
22                         XmlIncludeAttribute attr = new XmlIncludeAttribute (null);
23                         Assert.IsNull (attr.Type);
24                 }
25         }
26 }