2009-03-11 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Runtime.Serialization / Test / System.Runtime.Serialization / AttributesTest.cs
1 //\r
2 // AttributesTest.cs\r
3 //\r
4 // Author:\r
5 //      Eyal Alaluf <mainsoft.com>\r
6 //\r
7 // Copyright (C) 2008 Mainsoft.co http://www.mainsoft.com\r
8 \r
9 //\r
10 // Permission is hereby granted, free of charge, to any person obtaining\r
11 // a copy of this software and associated documentation files (the\r
12 // "Software"), to deal in the Software without restriction, including\r
13 // without limitation the rights to use, copy, modify, merge, publish,\r
14 // distribute, sublicense, and/or sell copies of the Software, and to\r
15 // permit persons to whom the Software is furnished to do so, subject to\r
16 // the following conditions:\r
17 // \r
18 // The above copyright notice and this permission notice shall be\r
19 // included in all copies or substantial portions of the Software.\r
20 // \r
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
28 //\r
29 \r
30 //\r
31 // This test code contains tests for attributes in System.Runtime.Serialization\r
32 //\r
33 \r
34 using System;\r
35 using System.Collections.Generic;\r
36 using System.Collections.ObjectModel;\r
37 using System.IO;\r
38 using System.Net;\r
39 using System.Runtime.Serialization;\r
40 using System.Text;\r
41 using System.Xml;\r
42 using NUnit.Framework;\r
43 \r
44 namespace MonoTests.System.Runtime.Serialization\r
45 {\r
46         [TestFixture]\r
47         public class AttributesTest\r
48         {\r
49                 [Test]\r
50                 public void TestContractNamespaceAttribute ()\r
51                 {\r
52                         ContractNamespaceAttribute x = new ContractNamespaceAttribute ("test");\r
53                         Assert.AreEqual (null, x.ClrNamespace, "#01");\r
54                         Assert.AreEqual ("test", x.ContractNamespace, "#02");\r
55                 }\r
56 \r
57                 [Test]\r
58                 public void TestDataContractAttribute ()\r
59                 {\r
60                         DataContractAttribute x = new DataContractAttribute ();\r
61                         Assert.AreEqual (null, x.Name, "#01");\r
62                         Assert.AreEqual (null, x.Namespace, "#02");\r
63                 }\r
64 \r
65                 [Test]\r
66                 public void TestDataMemberAttribute ()\r
67                 {\r
68                         DataMemberAttribute x = new DataMemberAttribute ();\r
69                         Assert.AreEqual (null, x.Name, "#01");\r
70                         Assert.AreEqual (-1, x.Order, "#02");\r
71                         Assert.AreEqual (true, x.EmitDefaultValue, "#02");\r
72                         Assert.AreEqual (false, x.IsRequired, "#02");\r
73                 }\r
74         }\r
75 }\r