* VBCodeGenerator.cs: Fixed generated code for abstract properties.
[mono.git] / mcs / class / System / Test / System.CodeDom / CodeTypeConstructorTest.cs
1 //
2 // CodeTypeConstructorTest.cs
3 //      - Unit tests for System.CodeDom.CodeTypeConstructor
4 //
5 // Author:
6 //      Gert Driesen  <drieseng@users.sourceforge.net>
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using NUnit.Framework;
31
32 using System;
33 using System.CodeDom;
34 using System.Collections.Specialized;
35
36 namespace MonoTests.System.CodeDom
37 {
38         [TestFixture]
39         public class CodeTypeConstructorTest
40         {
41                 [Test]
42                 public void Constructor0 ()
43                 {
44                         CodeTypeConstructor ctc = new CodeTypeConstructor ();
45
46                         Assert.AreEqual (MemberAttributes.Private | MemberAttributes.Final,
47                                 ctc.Attributes, "#1");
48
49                         Assert.IsNotNull (ctc.Comments, "#2");
50                         Assert.AreEqual (0, ctc.Comments.Count, "#3");
51
52                         Assert.IsNotNull (ctc.CustomAttributes, "#4");
53                         Assert.AreEqual (0, ctc.CustomAttributes.Count, "#5");
54
55 #if NET_2_0
56                         Assert.IsNotNull (ctc.StartDirectives, "#6");
57                         Assert.AreEqual (0, ctc.StartDirectives.Count, "#7");
58
59                         Assert.IsNotNull (ctc.EndDirectives, "#8");
60                         Assert.AreEqual (0, ctc.EndDirectives.Count, "#9");
61
62                         Assert.IsNotNull (ctc.TypeParameters, "#10");
63                         Assert.AreEqual (0, ctc.TypeParameters.Count, "#11");
64 #endif
65
66                         Assert.IsNull (ctc.LinePragma, "#12");
67
68                         Assert.IsNotNull (ctc.Name, "#13");
69                         Assert.AreEqual (".cctor", ctc.Name, "#14");
70
71                         Assert.IsNotNull (ctc.UserData, "#15");
72                         Assert.AreEqual (typeof(ListDictionary), ctc.UserData.GetType (), "#16");
73                         Assert.AreEqual (0, ctc.UserData.Count, "#17");
74
75                         Assert.IsNotNull (ctc.ImplementationTypes, "#18");
76                         Assert.AreEqual (0, ctc.ImplementationTypes.Count, "#19");
77
78                         Assert.IsNotNull (ctc.Parameters, "#20");
79                         Assert.AreEqual (0, ctc.Parameters.Count, "#21");
80
81                         Assert.IsNull (ctc.PrivateImplementationType, "#22");
82
83                         Assert.IsNotNull (ctc.ReturnType, "#23");
84                         Assert.AreEqual (typeof(void).FullName, ctc.ReturnType.BaseType, "#24");
85
86                         Assert.IsNotNull (ctc.ReturnTypeCustomAttributes, "#25");
87                         Assert.AreEqual (0, ctc.ReturnTypeCustomAttributes.Count, "#26");
88
89                         Assert.IsNotNull (ctc.Statements, "#27");
90                         Assert.AreEqual (0, ctc.Statements.Count, "#28");
91
92                         string name = "mono";
93                         ctc.Name = name;
94                         Assert.IsNotNull (ctc.Name, "#29");
95                         Assert.AreSame (name, ctc.Name, "#30");
96
97                         ctc.Name = null;
98                         Assert.IsNotNull (ctc.Name, "#31");
99                         Assert.AreEqual (string.Empty, ctc.Name, "#32");
100
101                         CodeLinePragma clp = new CodeLinePragma ("mono", 10);
102                         ctc.LinePragma = clp;
103                         Assert.IsNotNull (ctc.LinePragma, "#33");
104                         Assert.AreSame (clp, ctc.LinePragma, "#34");
105
106                         ctc.LinePragma = null;
107                         Assert.IsNull (ctc.LinePragma, "#35");
108                 }
109         }
110 }