blob: 81a915a79800da172cbe9297b7d1a2c0a2900e04 (
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.XmlIncludeAttribute
//
// Author:
// Gert Driesen
//
// (C) 2005 Novell
//
using System.Xml.Serialization;
using NUnit.Framework;
namespace MonoTests.System.XmlSerialization
{
[TestFixture]
public class XmlIncludeAttributeTests
{
[Test]
public void TypeDefault ()
{
XmlIncludeAttribute attr = new XmlIncludeAttribute (null);
Assert.IsNull (attr.Type);
}
}
}
|