summaryrefslogtreecommitdiff
path: root/mcs/class/System.XML/Test/System.Xml.Serialization/SoapIncludeAttributeTests.cs
blob: 9adea0aa0eeb6013e740c524d0c7239f5ec18325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// Tests for System.Xml.Serialization.SoapIncludeAttribute
//
// Author:
//   Gert Driesen
//
// (C) 2005 Novell
//

using System.Xml.Serialization;

using NUnit.Framework;

namespace MonoTests.System.XmlSerialization
{
	[TestFixture]
	public class SoapIncludeAttributeTests
	{
		[Test]
		public void TypeDefault ()
		{
			SoapIncludeAttribute attr = new SoapIncludeAttribute (null);
			Assert.IsNull (attr.Type);
		}
	}
}