summaryrefslogtreecommitdiff
path: root/mcs/class/System.XML/Test/System.Xml.Serialization/XmlAnyElementAttributeTests.cs
blob: 2c41f4244d3fe9d28e035daaa4fc73b453b1db7f (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
27
28
29
30
31
32
33
34
35
36
//
// Tests for System.Xml.Serialization.XmlAnyElementAttribute
//
// Author:
//   Gert Driesen
//
// (C) 2005 Novell
//

using System.Xml.Serialization;

using NUnit.Framework;

namespace MonoTests.System.XmlSerialization
{
	[TestFixture]
	public class XmlAnyElementAttributeTests
	{
		[Test]
		public void NameDefault ()
		{
			XmlAnyElementAttribute attr = new XmlAnyElementAttribute ();
			Assert.AreEqual (string.Empty, attr.Name, "#1");

			attr.Name = null;
			Assert.AreEqual (string.Empty, attr.Name, "#2");
		}

		[Test]
		public void NamespaceDefault ()
		{
			XmlAnyElementAttribute attr = new XmlAnyElementAttribute ();
			Assert.IsNull (attr.Namespace);
		}
	}
}