blob: 427f9dffb0f27434fa276d9c7bcbfa6df75a944c (
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.XmlEnumAttribute
//
// Author:
// Gert Driesen
//
// (C) 2005 Novell
//
using System.Xml.Serialization;
using NUnit.Framework;
namespace MonoTests.System.XmlSerialization
{
[TestFixture]
public class XmlEnumAttributeTests
{
[Test]
public void NameDefault ()
{
XmlEnumAttribute attr = new XmlEnumAttribute ();
Assert.IsNull (attr.Name);
}
}
}
|