corlib: Implement System.Type.GetTypeFromCLSID.
[mono.git] / mcs / class / corlib / Test / System / TypeTest.cs
1 // TypeTest.cs - NUnit Test Cases for the System.Type class
2 //
3 // Authors:
4 //      Zoltan Varga (vargaz@freemail.hu)
5 //  Patrik Torstensson
6 //
7 // (C) 2003 Ximian, Inc.  http://www.ximian.com
8 // 
9
10 using NUnit.Framework;
11 using System;
12 using System.Threading;
13 using System.Collections;
14 using System.Collections.Generic;
15 using System.IO;
16 using System.Reflection;
17 #if !MONOTOUCH
18 using System.Reflection.Emit;
19 #endif
20 using System.Runtime.InteropServices;
21 using System.Text;
22 using System.Globalization;
23
24 class NoNamespaceClass {
25 }
26
27 namespace MonoTests.System
28 {
29         class Super : ICloneable
30         {
31                 public virtual object Clone ()
32                 {
33                         return null;
34                 }
35         }
36
37         class Duper: Super
38         {
39         }
40
41         interface IFace1
42         {
43                 void foo ();
44         }
45
46         interface IFace2 : IFace1
47         {
48                 void bar ();
49         }
50
51         interface IFace3 : IFace2
52         {
53         }
54
55         enum TheEnum
56         {
57                 A,
58                 B,
59                 C
60         };
61
62         abstract class Base
63         {
64                 public int level;
65
66                 public abstract int this [byte i] {
67                         get;
68                 }
69
70                 public abstract int this [int i] {
71                         get;
72                 }
73
74                 public abstract void TestVoid ();
75                 public abstract void TestInt (int i);
76         }
77
78         class DeriveVTable : Base
79         {
80                 public override int this [byte i] {
81                         get { return 1; }
82                 }
83
84                 public override int this [int i] {
85                         get { return 1; }
86                 }
87
88                 public override void TestVoid ()
89                 {
90                         level = 1;
91                 }
92
93                 public override void TestInt (int i)
94                 {
95                         level = 1;
96                 }
97         }
98
99         class NewVTable : DeriveVTable
100         {
101                 public new int this [byte i] {
102                         get { return 2; }
103                 }
104
105                 public new int this [int i] {
106                         get { return 2; }
107                 }
108
109                 public new void TestVoid ()
110                 {
111                         level = 2;
112                 }
113
114                 public new void TestInt (int i)
115                 {
116                         level = 2;
117                 }
118
119                 public void Overload ()
120                 {
121                 }
122
123                 public void Overload (int i)
124                 {
125                 }
126
127                 public NewVTable (out int i)
128                 {
129                         i = 0;
130                 }
131
132                 public void byref_method (out int i)
133                 {
134                         i = 0;
135                 }
136         }
137
138         class Base1
139         {
140                 public virtual int Foo {
141                         get { return 1; }
142                         set { }
143                 }
144         }
145
146         class Derived1 : Base1
147         {
148                 public override int Foo {
149                         set { }
150                 }
151         }
152
153         class Derived2 : Base1
154         {
155                 public new int Foo {
156                         get { return 1; }
157                         set { }
158                 }
159         }
160
161         public class Foo<T>
162         {
163                 public T Whatever;
164         
165                 public T Test {
166                         get { throw new NotImplementedException (); }
167                 }
168
169                 public T Execute (T a)
170                 {
171                         return a;
172                 }
173                 
174                 public class Nested<K> {}
175         }
176         
177         class Foo<T, U>
178         {
179         }
180
181         public interface IBar<T>
182         {
183         }
184
185         public class Baz<T> : IBar<T>
186         {
187         }
188
189         class Gazonk {
190
191                 public static void Bang<S> () {}
192         }
193
194         public class Bug348522
195         {
196                 public void Test (int __argument)
197                 {
198                 }
199         }
200
201         public class FirstMethodBinder : Binder
202         {
203                 public override MethodBase BindToMethod (BindingFlags bindingAttr, MethodBase [] match, ref object [] args,
204                                                          ParameterModifier [] modifiers, CultureInfo culture, string [] names,
205                                                          out object state)
206                 {
207                         state = null;
208                         return match [0];
209                 }
210                 
211                 public override object ChangeType (object value, Type type1, CultureInfo culture)
212                 {
213                         return value;
214                 }
215                 
216                 // The rest is just to please the compiler
217                 public override FieldInfo BindToField (BindingFlags a, FieldInfo[] b, object c, CultureInfo d)
218                 {
219                         return null;
220                 }
221                 
222                 public override void ReorderArgumentArray(ref object[] a, object b)
223                 {
224                 }
225                 
226                 public override MethodBase SelectMethod(BindingFlags a, MethodBase[] b, Type[] c, ParameterModifier[] d)
227                 {
228                     return null;
229                 }
230                 
231                 public override PropertyInfo SelectProperty(BindingFlags a, PropertyInfo[] b, Type c, Type[] d, ParameterModifier[] e)
232                 {
233                         return null;
234                 }
235         }
236
237         [TestFixture]
238         public class TypeTest
239         {
240 #if !MONOTOUCH
241                 private ModuleBuilder module;
242 #endif
243                 const string ASSEMBLY_NAME = "MonoTests.System.TypeTest";
244                 static int typeIndexer = 0;
245
246                 [SetUp]
247                 public void SetUp ()
248                 {
249                         AssemblyName assemblyName = new AssemblyName ();
250                         assemblyName.Name = ASSEMBLY_NAME;
251 #if !MONOTOUCH
252                         var assembly = AppDomain.CurrentDomain.DefineDynamicAssembly (
253                                         assemblyName, AssemblyBuilderAccess.RunAndSave, Path.GetTempPath ());
254                         module = assembly.DefineDynamicModule ("module1");
255 #endif
256                 }
257
258                 private string genTypeName ()
259                 {
260                         return "t" + (typeIndexer++);
261                 }
262
263                 private void ByrefMethod (ref int i, ref Derived1 j, ref Base1 k)
264                 {
265                 }
266
267                 public interface IFace {
268                 }
269
270                 private void GenericMethod<Q, T1> (Q q, T1 t) where T1 : IFace
271                 {
272                 }
273
274                 [Test]
275                 public void TestIsAssignableFrom ()
276                 {
277                         // Simple tests for inheritance
278                         Assert.AreEqual (typeof (Super).IsAssignableFrom (typeof (Duper)) , true, "#01");
279                         Assert.AreEqual (typeof (Duper).IsAssignableFrom (typeof (Duper)), true, "#02");
280                         Assert.AreEqual (typeof (Object).IsAssignableFrom (typeof (Duper)), true, "#03");
281                         Assert.AreEqual (typeof (ICloneable).IsAssignableFrom (typeof (Duper)), true, "#04");
282
283                         // Tests for arrays
284                         Assert.AreEqual (typeof (Super[]).IsAssignableFrom (typeof (Duper[])), true, "#05");
285                         Assert.AreEqual (typeof (Duper[]).IsAssignableFrom (typeof (Super[])), false, "#06");
286                         Assert.AreEqual (typeof (Object[]).IsAssignableFrom (typeof (Duper[])), true, "#07");
287                         Assert.AreEqual (typeof (ICloneable[]).IsAssignableFrom (typeof (Duper[])), true, "#08");
288
289                         // Tests for multiple dimensional arrays
290                         Assert.AreEqual (typeof (Super[][]).IsAssignableFrom (typeof (Duper[][])), true, "#09");
291                         Assert.AreEqual (typeof (Duper[][]).IsAssignableFrom (typeof (Super[][])), false, "#10");
292                         Assert.AreEqual (typeof (Object[][]).IsAssignableFrom (typeof (Duper[][])), true, "#11");
293                         Assert.AreEqual (typeof (ICloneable[][]).IsAssignableFrom (typeof (Duper[][])), true, "#12");
294
295                         // Tests for vectors<->one dimensional arrays */
296 #if TARGET_JVM // Lower bounds arrays are not supported for TARGET_JVM.
297                         Array arr1 = Array.CreateInstance (typeof (int), new int[] {1});
298                         Assert.AreEqual (typeof (int[]).IsAssignableFrom (arr1.GetType ()), true, "#13");
299 #else
300                         Array arr1 = Array.CreateInstance (typeof (int), new int[] {1}, new int[] {0});
301                         Array arr2 = Array.CreateInstance (typeof (int), new int[] {1}, new int[] {10});
302
303                         Assert.AreEqual (typeof (int[]).IsAssignableFrom (arr1.GetType ()), true, "#13");
304                         Assert.AreEqual (typeof (int[]).IsAssignableFrom (arr2.GetType ()), false, "#14");
305 #endif // TARGET_JVM
306
307                         // Test that arrays of enums can be cast to their base types
308                         Assert.AreEqual (typeof (int[]).IsAssignableFrom (typeof (TypeCode[])), true, "#15");
309
310                         // Test that arrays of valuetypes can't be cast to arrays of
311                         // references
312                         Assert.AreEqual (typeof (object[]).IsAssignableFrom (typeof (TypeCode[])), false, "#16");
313                         Assert.AreEqual (typeof (ValueType[]).IsAssignableFrom (typeof (TypeCode[])), false, "#17");
314                         Assert.AreEqual (typeof (Enum[]).IsAssignableFrom (typeof (TypeCode[])), false, "#18");
315
316                         // Test that arrays of enums can't be cast to arrays of references
317                         Assert.AreEqual (typeof (object[]).IsAssignableFrom (typeof (TheEnum[])), false, "#19");
318                         Assert.AreEqual (typeof (ValueType[]).IsAssignableFrom (typeof (TheEnum[])), false, "#20");
319                         Assert.AreEqual (typeof (Enum[]).IsAssignableFrom (typeof (TheEnum[])), false, "#21");
320
321                         // Check that ValueType and Enum are recognized as reference types
322                         Assert.AreEqual (typeof (object).IsAssignableFrom (typeof (ValueType)), true, "#22");
323                         Assert.AreEqual (typeof (object).IsAssignableFrom (typeof (Enum)), true, "#23");
324                         Assert.AreEqual (typeof (ValueType).IsAssignableFrom (typeof (Enum)), true, "#24");
325
326                         Assert.AreEqual (typeof (object[]).IsAssignableFrom (typeof (ValueType[])), true, "#25");
327                         Assert.AreEqual (typeof (ValueType[]).IsAssignableFrom (typeof (ValueType[])), true, "#26");
328                         Assert.AreEqual (typeof (Enum[]).IsAssignableFrom (typeof (ValueType[])), false, "#27");
329
330                         Assert.AreEqual (typeof (object[]).IsAssignableFrom (typeof (Enum[])), true, "#28");
331                         Assert.AreEqual (typeof (ValueType[]).IsAssignableFrom (typeof (Enum[])), true, "#29");
332                         Assert.AreEqual (typeof (Enum[]).IsAssignableFrom (typeof (Enum[])), true, "#30");
333
334                         // Tests for byref types
335                         MethodInfo mi = typeof (TypeTest).GetMethod ("ByrefMethod", BindingFlags.Instance|BindingFlags.NonPublic);
336                         Assert.IsTrue (mi.GetParameters ()[2].ParameterType.IsAssignableFrom (mi.GetParameters ()[1].ParameterType));
337                         Assert.IsTrue (mi.GetParameters ()[1].ParameterType.IsAssignableFrom (mi.GetParameters ()[1].ParameterType));
338
339                         // Tests for type parameters
340                         mi = typeof (TypeTest).GetMethod ("GenericMethod", BindingFlags.Instance|BindingFlags.NonPublic);
341                         Assert.IsTrue (mi.GetParameters ()[0].ParameterType.IsAssignableFrom (mi.GetParameters ()[0].ParameterType));
342                         Assert.IsFalse (mi.GetParameters ()[0].ParameterType.IsAssignableFrom (typeof (int)));
343
344                         // Tests for parameters with generic constraints
345                         mi = typeof (TypeTest).GetMethod ("GenericMethod", BindingFlags.Instance|BindingFlags.NonPublic);
346                         Assert.IsTrue (typeof (IFace).IsAssignableFrom (mi.GetParameters ()[1].ParameterType));
347                 }
348
349                 [Test]
350                 [ExpectedException (typeof (ArgumentException))]
351                 public void GetInterfaceMapOnInterface ()
352                 {
353                         typeof (IList).GetInterfaceMap (typeof (ICollection));
354                 }
355
356                 [Test]
357                 public void TestIsSubclassOf ()
358                 {
359                         Assert.IsTrue (typeof (ICloneable).IsSubclassOf (typeof (object)), "#01");
360
361                         // Tests for byref types
362                         Type paramType = typeof (TypeTest).GetMethod ("ByrefMethod", BindingFlags.Instance|BindingFlags.NonPublic).GetParameters () [0].ParameterType;
363                         Assert.IsTrue (!paramType.IsSubclassOf (typeof (ValueType)), "#02");
364                         //Assert.IsTrue (paramType.IsSubclassOf (typeof (Object)), "#03");
365                         Assert.IsTrue (!paramType.IsSubclassOf (paramType), "#04");
366                 }
367
368                 [Test]
369                 public void TestGetMethodImpl ()
370                 {
371                         // Test binding of new slot methods (using no types)
372                         Assert.AreEqual (typeof (Base), typeof (Base).GetMethod("TestVoid").DeclaringType, "#01");
373                         Assert.AreEqual (typeof (NewVTable), typeof (NewVTable).GetMethod ("TestVoid").DeclaringType, "#02");
374
375                         // Test binding of new slot methods (using types)
376                         Assert.AreEqual (typeof (Base), typeof (Base).GetMethod ("TestInt", new Type[] { typeof (int) }).DeclaringType, "#03");
377                         Assert.AreEqual (typeof (NewVTable), typeof (NewVTable).GetMethod ("TestInt", new Type[] { typeof (int) }).DeclaringType, "#04");
378
379                         // Test overload resolution
380                         Assert.AreEqual (0, typeof (NewVTable).GetMethod ("Overload", new Type[0]).GetParameters ().Length, "#05");
381
382                         // Test byref parameters
383                         Assert.AreEqual (null, typeof (NewVTable).GetMethod ("byref_method", new Type[] { typeof (int) }), "#06");
384                         Type byrefInt = typeof (NewVTable).GetMethod ("byref_method").GetParameters ()[0].ParameterType;
385                         Assert.IsNotNull (typeof (NewVTable).GetMethod ("byref_method", new Type[] { byrefInt }), "#07");
386                 }
387
388                 [Test]
389                 [Category ("TargetJvmNotWorking")]
390                 public void TestGetPropertyImpl ()
391                 {
392                         // Test getting property that is exact
393                         Assert.AreEqual (typeof (NewVTable), typeof (NewVTable).GetProperty ("Item", new Type[1] { typeof (Int32) }).DeclaringType, "#01");
394
395                         // Test getting property that is not exact
396                         Assert.AreEqual (typeof (NewVTable), typeof (NewVTable).GetProperty ("Item", new Type[1] { typeof (Int16) }).DeclaringType, "#02");
397
398                         // Test overriding of properties when only the set accessor is overriden
399                         Assert.AreEqual (1, typeof (Derived1).GetProperties ().Length, "#03");
400                 }
401
402                 [Test]
403                 public void GetProperties ()
404                 {
405                         // Test hide-by-name-and-signature
406                         Assert.AreEqual (1, typeof (Derived2).GetProperties ().Length);
407                         Assert.AreEqual (typeof (Derived2), typeof (Derived2).GetProperties ()[0].DeclaringType);
408                 }
409
410                 [Test] // GetProperties (BindingFlags)
411                 public void GetProperties_Flags ()
412                 {
413                         PropertyInfo [] props;
414                         Type type = typeof (Bar);
415                         BindingFlags flags;
416
417                         flags = BindingFlags.Instance | BindingFlags.NonPublic;
418                         props = type.GetProperties (flags);
419
420                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#A1");
421                         Assert.IsTrue (ContainsProperty (props, "ProtInstBase"), "#A2");
422                         Assert.IsTrue (ContainsProperty (props, "ProIntInstBase"), "#A3");
423                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#A4");
424                         Assert.IsTrue (ContainsProperty (props, "IntInstBase"), "#A5");
425                         Assert.IsTrue (ContainsProperty (props, "PrivInst"), "#A6");
426                         Assert.IsTrue (ContainsProperty (props, "ProtInst"), "#A7");
427                         Assert.IsTrue (ContainsProperty (props, "ProIntInst"), "#A8");
428                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#A9");
429                         Assert.IsTrue (ContainsProperty (props, "IntInst"), "#A10");
430                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#A11");
431                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#A12");
432                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#A13");
433                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#A14");
434                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#A15");
435                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#A16");
436                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#A17");
437                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#A18");
438                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#A19");
439                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#A20");
440                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#A21");
441                         Assert.IsTrue (ContainsProperty (props, "ProtInstBlue"), "#A22");
442                         Assert.IsTrue (ContainsProperty (props, "ProIntInstBlue"), "#A23");
443                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#A24");
444                         Assert.IsTrue (ContainsProperty (props, "IntInstBlue"), "#A25");
445                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#A26");
446                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#A27");
447                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#A28");
448                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#A29");
449                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#A30");
450
451                         flags = BindingFlags.Instance | BindingFlags.Public;
452                         props = type.GetProperties (flags);
453
454                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#B1");
455                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#B2");
456                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#B3");
457                         Assert.IsTrue (ContainsProperty (props, "PubInstBase"), "#B4");
458                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#B5");
459                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#B6");
460                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#B7");
461                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#B8");
462                         Assert.IsTrue (ContainsProperty (props, "PubInst"), "#B9");
463                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#B10");
464                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#B11");
465                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#B12");
466                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#B13");
467                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#B14");
468                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#B15");
469                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#B16");
470                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#B17");
471                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#B18");
472                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#B19");
473                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#B20");
474                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#B21");
475                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#B22");
476                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#B23");
477                         Assert.IsTrue (ContainsProperty (props, "PubInstBlue"), "#B24");
478                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#B25");
479                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#B26");
480                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#B27");
481                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#B28");
482                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#B29");
483                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#B30");
484
485                         flags = BindingFlags.Static | BindingFlags.Public;
486                         props = type.GetProperties (flags);
487
488                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#C1");
489                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#C2");
490                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#C3");
491                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#C4");
492                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#C5");
493                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#C6");
494                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#C7");
495                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#C8");
496                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#C9");
497                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#C10");
498                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#C11");
499                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#C12");
500                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#C13");
501                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#C14");
502                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#C15");
503                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#C16");
504                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#C17");
505                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#C18");
506                         Assert.IsTrue (ContainsProperty (props, "PubStat"), "#C19");
507                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#C20");
508                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#C21");
509                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#C22");
510                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#C23");
511                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#C24");
512                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#C25");
513                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#C26");
514                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#C27");
515                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#C28");
516                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#C29");
517                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#C30");
518
519                         flags = BindingFlags.Static | BindingFlags.NonPublic;
520                         props = type.GetProperties (flags);
521
522                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#D1");
523                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#D2");
524                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#D3");
525                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#D4");
526                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#D5");
527                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#D6");
528                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#D7");
529                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#D8");
530                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#D9");
531                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#D10");
532                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#D11");
533                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#D12");
534                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#D13");
535                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#D14");
536                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#D15");
537                         Assert.IsTrue (ContainsProperty (props, "PrivStat"), "#D16");
538                         Assert.IsTrue (ContainsProperty (props, "ProtStat"), "#D17");
539                         Assert.IsTrue (ContainsProperty (props, "ProIntStat"), "#D18");
540                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#D19");
541                         Assert.IsTrue (ContainsProperty (props, "IntStat"), "#D20");
542                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#D21");
543                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#D22");
544                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#D23");
545                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#D24");
546                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#D25");
547                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#D26");
548                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#D27");
549                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#D28");
550                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#D29");
551                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#D30");
552
553                         flags = BindingFlags.Instance | BindingFlags.NonPublic |
554                                 BindingFlags.FlattenHierarchy;
555                         props = type.GetProperties (flags);
556
557                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#E1");
558                         Assert.IsTrue (ContainsProperty (props, "ProtInstBase"), "#E2");
559                         Assert.IsTrue (ContainsProperty (props, "ProIntInstBase"), "#E3");
560                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#E4");
561                         Assert.IsTrue (ContainsProperty (props, "IntInstBase"), "#E5");
562                         Assert.IsTrue (ContainsProperty (props, "PrivInst"), "#E6");
563                         Assert.IsTrue (ContainsProperty (props, "ProtInst"), "#E7");
564                         Assert.IsTrue (ContainsProperty (props, "ProIntInst"), "#E8");
565                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#E9");
566                         Assert.IsTrue (ContainsProperty (props, "IntInst"), "#E10");
567                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#E11");
568                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#E12");
569                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#E13");
570                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#E14");
571                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#E15");
572                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#E16");
573                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#E17");
574                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#E18");
575                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#E19");
576                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#E20");
577                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#E21");
578                         Assert.IsTrue (ContainsProperty (props, "ProtInstBlue"), "#E22");
579                         Assert.IsTrue (ContainsProperty (props, "ProIntInstBlue"), "#E23");
580                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#E24");
581                         Assert.IsTrue (ContainsProperty (props, "IntInstBlue"), "#E25");
582                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#E26");
583                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#E27");
584                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#E28");
585                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#E29");
586                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#E30");
587
588                         flags = BindingFlags.Instance | BindingFlags.Public |
589                                 BindingFlags.FlattenHierarchy;
590                         props = type.GetProperties (flags);
591
592                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#F1");
593                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#F2");
594                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#F3");
595                         Assert.IsTrue (ContainsProperty (props, "PubInstBase"), "#F4");
596                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#F5");
597                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#F6");
598                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#F7");
599                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#F8");
600                         Assert.IsTrue (ContainsProperty (props, "PubInst"), "#F9");
601                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#F10");
602                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#F11");
603                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#F12");
604                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#F13");
605                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#F14");
606                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#F15");
607                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#F16");
608                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#F17");
609                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#F18");
610                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#F19");
611                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#F20");
612                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#F21");
613                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#F22");
614                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#F23");
615                         Assert.IsTrue (ContainsProperty (props, "PubInstBlue"), "#F24");
616                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#F25");
617                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#F26");
618                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#F27");
619                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#F28");
620                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#F29");
621                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#F30");
622
623                         flags = BindingFlags.Static | BindingFlags.Public |
624                                 BindingFlags.FlattenHierarchy;
625                         props = type.GetProperties (flags);
626
627                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#G1");
628                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#G2");
629                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#G3");
630                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#G4");
631                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#G5");
632                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#G6");
633                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#G7");
634                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#G8");
635                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#G9");
636                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#G10");
637                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#G11");
638                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#G12");
639                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#G13");
640                         Assert.IsTrue (ContainsProperty (props, "PubStatBase"), "#G14");
641                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#G15");
642                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#G16");
643                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#G17");
644                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#G18");
645                         Assert.IsTrue (ContainsProperty (props, "PubStat"), "#G19");
646                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#G20");
647                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#G21");
648                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#G22");
649                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#G23");
650                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#G24");
651                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#G25");
652                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#G26");
653                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#G27");
654                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#G28");
655                         Assert.IsTrue (ContainsProperty (props, "PubStatBlue"), "#G29");
656                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#G30");
657
658                         flags = BindingFlags.Static | BindingFlags.NonPublic |
659                                 BindingFlags.FlattenHierarchy;
660                         props = type.GetProperties (flags);
661
662                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#H1");
663                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#H2");
664                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#H3");
665                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#H4");
666                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#H5");
667                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#H6");
668                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#H7");
669                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#H8");
670                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#H9");
671                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#H10");
672                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#H11");
673                         Assert.IsTrue (ContainsProperty (props, "ProtStatBase"), "#H12");
674                         Assert.IsTrue (ContainsProperty (props, "ProIntStatBase"), "#H13");
675                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#H14");
676                         Assert.IsTrue (ContainsProperty (props, "IntStatBase"), "#H15");
677                         Assert.IsTrue (ContainsProperty (props, "PrivStat"), "#H16");
678                         Assert.IsTrue (ContainsProperty (props, "ProtStat"), "#H17");
679                         Assert.IsTrue (ContainsProperty (props, "ProIntStat"), "#H18");
680                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#H19");
681                         Assert.IsTrue (ContainsProperty (props, "IntStat"), "#H20");
682                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#H21");
683                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#H22");
684                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#H23");
685                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#H24");
686                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#H25");
687                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#H26");
688                         Assert.IsTrue (ContainsProperty (props, "ProtStatBlue"), "#H27");
689                         Assert.IsTrue (ContainsProperty (props, "ProIntStatBlue"), "#H28");
690                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#H29");
691                         Assert.IsTrue (ContainsProperty (props, "IntStatBlue"), "#H30");
692
693                         flags = BindingFlags.Instance | BindingFlags.NonPublic |
694                                 BindingFlags.DeclaredOnly;
695                         props = type.GetProperties (flags);
696
697                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#I1");
698                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#I2");
699                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#I3");
700                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#I4");
701                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#I5");
702                         Assert.IsTrue (ContainsProperty (props, "PrivInst"), "#I6");
703                         Assert.IsTrue (ContainsProperty (props, "ProtInst"), "#I7");
704                         Assert.IsTrue (ContainsProperty (props, "ProIntInst"), "#I8");
705                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#I9");
706                         Assert.IsTrue (ContainsProperty (props, "IntInst"), "#I10");
707                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#I11");
708                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#I12");
709                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#I13");
710                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#I14");
711                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#I15");
712                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#I16");
713                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#I17");
714                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#I18");
715                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#I19");
716                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#I20");
717                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#I21");
718                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#I22");
719                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#I23");
720                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#I24");
721                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#I25");
722                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#I26");
723                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#I27");
724                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#I28");
725                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#I29");
726                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#I30");
727
728                         flags = BindingFlags.Instance | BindingFlags.Public |
729                                 BindingFlags.DeclaredOnly;
730                         props = type.GetProperties (flags);
731
732                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#J1");
733                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#J2");
734                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#J3");
735                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#J4");
736                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#J5");
737                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#J6");
738                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#J7");
739                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#J8");
740                         Assert.IsTrue (ContainsProperty (props, "PubInst"), "#J9");
741                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#J10");
742                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#J11");
743                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#J12");
744                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#J13");
745                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#J14");
746                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#J15");
747                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#J16");
748                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#J17");
749                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#J18");
750                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#J19");
751                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#J20");
752                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#J21");
753                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#J22");
754                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#J23");
755                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#J24");
756                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#J25");
757                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#J26");
758                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#J27");
759                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#J28");
760                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#J29");
761                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#J30");
762
763                         flags = BindingFlags.Static | BindingFlags.Public |
764                                 BindingFlags.DeclaredOnly;
765                         props = type.GetProperties (flags);
766
767                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#K1");
768                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#K2");
769                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#K3");
770                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#K4");
771                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#K5");
772                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#K6");
773                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#K7");
774                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#K8");
775                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#K9");
776                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#K10");
777                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#K11");
778                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#K12");
779                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#K13");
780                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#K14");
781                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#K15");
782                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#K16");
783                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#K17");
784                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#K18");
785                         Assert.IsTrue (ContainsProperty (props, "PubStat"), "#K19");
786                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#K20");
787                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#K21");
788                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#K22");
789                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#K23");
790                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#K24");
791                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#K25");
792                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#K26");
793                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#K27");
794                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#K28");
795                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#K29");
796                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#K30");
797
798                         flags = BindingFlags.Static | BindingFlags.NonPublic |
799                                 BindingFlags.DeclaredOnly;
800                         props = type.GetProperties (flags);
801
802                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#L1");
803                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#L2");
804                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#L3");
805                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#L4");
806                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#L5");
807                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#L6");
808                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#L7");
809                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#L8");
810                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#L9");
811                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#L10");
812                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#L11");
813                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#L12");
814                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#L13");
815                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#L14");
816                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#L15");
817                         Assert.IsTrue (ContainsProperty (props, "PrivStat"), "#L16");
818                         Assert.IsTrue (ContainsProperty (props, "ProtStat"), "#L17");
819                         Assert.IsTrue (ContainsProperty (props, "ProIntStat"), "#L18");
820                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#L19");
821                         Assert.IsTrue (ContainsProperty (props, "IntStat"), "#L20");
822                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#L21");
823                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#L22");
824                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#L23");
825                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#L24");
826                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#L25");
827                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#L26");
828                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#L27");
829                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#L28");
830                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#L29");
831                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#L30");
832
833                         flags = BindingFlags.Instance | BindingFlags.NonPublic |
834                                 BindingFlags.Public;
835                         props = type.GetProperties (flags);
836
837                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#M1");
838                         Assert.IsTrue (ContainsProperty (props, "ProtInstBase"), "#M2");
839                         Assert.IsTrue (ContainsProperty (props, "ProIntInstBase"), "#M3");
840                         Assert.IsTrue (ContainsProperty (props, "PubInstBase"), "#M4");
841                         Assert.IsTrue (ContainsProperty (props, "IntInstBase"), "#M5");
842                         Assert.IsTrue (ContainsProperty (props, "PrivInst"), "#M6");
843                         Assert.IsTrue (ContainsProperty (props, "ProtInst"), "#M7");
844                         Assert.IsTrue (ContainsProperty (props, "ProIntInst"), "#M8");
845                         Assert.IsTrue (ContainsProperty (props, "PubInst"), "#M9");
846                         Assert.IsTrue (ContainsProperty (props, "IntInst"), "#M10");
847                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#M11");
848                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#M12");
849                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#M13");
850                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#M14");
851                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#M15");
852                         Assert.IsFalse (ContainsProperty (props, "PrivStat"), "#M16");
853                         Assert.IsFalse (ContainsProperty (props, "ProtStat"), "#M17");
854                         Assert.IsFalse (ContainsProperty (props, "ProIntStat"), "#M18");
855                         Assert.IsFalse (ContainsProperty (props, "PubStat"), "#M19");
856                         Assert.IsFalse (ContainsProperty (props, "IntStat"), "#M20");
857                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#M21");
858                         Assert.IsTrue (ContainsProperty (props, "ProtInstBlue"), "#M22");
859                         Assert.IsTrue (ContainsProperty (props, "ProIntInstBlue"), "#M23");
860                         Assert.IsTrue (ContainsProperty (props, "PubInstBlue"), "#M24");
861                         Assert.IsTrue (ContainsProperty (props, "IntInstBlue"), "#M25");
862                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#M26");
863                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#M27");
864                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#M28");
865                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#M29");
866                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#M30");
867
868                         flags = BindingFlags.Static | BindingFlags.NonPublic |
869                                 BindingFlags.Public;
870                         props = type.GetProperties (flags);
871
872                         Assert.IsFalse (ContainsProperty (props, "PrivInstBase"), "#N1");
873                         Assert.IsFalse (ContainsProperty (props, "ProtInstBase"), "#N2");
874                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBase"), "#N3");
875                         Assert.IsFalse (ContainsProperty (props, "PubInstBase"), "#N4");
876                         Assert.IsFalse (ContainsProperty (props, "IntInstBase"), "#N5");
877                         Assert.IsFalse (ContainsProperty (props, "PrivInst"), "#N6");
878                         Assert.IsFalse (ContainsProperty (props, "ProtInst"), "#N7");
879                         Assert.IsFalse (ContainsProperty (props, "ProIntInst"), "#N8");
880                         Assert.IsFalse (ContainsProperty (props, "PubInst"), "#N9");
881                         Assert.IsFalse (ContainsProperty (props, "IntInst"), "#N10");
882                         Assert.IsFalse (ContainsProperty (props, "PrivStatBase"), "#N11");
883                         Assert.IsFalse (ContainsProperty (props, "ProtStatBase"), "#N12");
884                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBase"), "#N13");
885                         Assert.IsFalse (ContainsProperty (props, "PubStatBase"), "#N14");
886                         Assert.IsFalse (ContainsProperty (props, "IntStatBase"), "#N15");
887                         Assert.IsTrue (ContainsProperty (props, "PrivStat"), "#N16");
888                         Assert.IsTrue (ContainsProperty (props, "ProtStat"), "#N17");
889                         Assert.IsTrue (ContainsProperty (props, "ProIntStat"), "#N18");
890                         Assert.IsTrue (ContainsProperty (props, "PubStat"), "#N19");
891                         Assert.IsTrue (ContainsProperty (props, "IntStat"), "#N20");
892                         Assert.IsFalse (ContainsProperty (props, "PrivInstBlue"), "#N21");
893                         Assert.IsFalse (ContainsProperty (props, "ProtInstBlue"), "#N22");
894                         Assert.IsFalse (ContainsProperty (props, "ProIntInstBlue"), "#N23");
895                         Assert.IsFalse (ContainsProperty (props, "PubInstBlue"), "#N24");
896                         Assert.IsFalse (ContainsProperty (props, "IntInstBlue"), "#N25");
897                         Assert.IsFalse (ContainsProperty (props, "PrivStatBlue"), "#N26");
898                         Assert.IsFalse (ContainsProperty (props, "ProtStatBlue"), "#N27");
899                         Assert.IsFalse (ContainsProperty (props, "ProIntStatBlue"), "#N28");
900                         Assert.IsFalse (ContainsProperty (props, "PubStatBlue"), "#N29");
901                         Assert.IsFalse (ContainsProperty (props, "IntStatBlue"), "#N30");
902                 }
903
904                 [Test] // GetProperty (String)
905                 public void GetProperty1_Name_Null ()
906                 {
907                         Type type = typeof (Bar);
908                         try {
909                                 type.GetProperty ((string) null);
910                                 Assert.Fail ("#1");
911                         } catch (ArgumentNullException ex) {
912                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
913                                 Assert.IsNull (ex.InnerException, "#3");
914                                 Assert.IsNotNull (ex.Message, "#4");
915                                 Assert.IsNotNull (ex.ParamName, "#5");
916                                 Assert.AreEqual ("name", ex.ParamName, "#6");
917                         }
918                 }
919
920                 [Test] // GetProperty (String, BindingFlags)
921                 public void GetProperty2 ()
922                 {
923                         Type type = typeof (Bar);
924                         BindingFlags flags;
925
926                         flags = BindingFlags.Instance | BindingFlags.NonPublic;
927
928                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#A1");
929                         Assert.IsNotNull (type.GetProperty ("ProtInstBase", flags), "#A2");
930                         Assert.IsNotNull (type.GetProperty ("ProIntInstBase", flags), "#A3");
931                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#A4");
932                         Assert.IsNotNull (type.GetProperty ("IntInstBase", flags), "#A5");
933                         Assert.IsNotNull (type.GetProperty ("PrivInst", flags), "#A6");
934                         Assert.IsNotNull (type.GetProperty ("ProtInst", flags), "#A7");
935                         Assert.IsNotNull (type.GetProperty ("ProIntInst", flags), "#A8");
936                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#A9");
937                         Assert.IsNotNull (type.GetProperty ("IntInst", flags), "#A10");
938                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#A11");
939                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#A12");
940                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#A13");
941                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#A14");
942                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#A15");
943                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#A16");
944                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#A17");
945                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#A18");
946                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#A19");
947                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#A20");
948                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#A21");
949                         Assert.IsNotNull (type.GetProperty ("ProtInstBlue", flags), "#A22");
950                         Assert.IsNotNull (type.GetProperty ("ProIntInstBlue", flags), "#A23");
951                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#A24");
952                         Assert.IsNotNull (type.GetProperty ("IntInstBlue", flags), "#A25");
953                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#A26");
954                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#A27");
955                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#A28");
956                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#A29");
957                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#A30");
958
959                         flags = BindingFlags.Instance | BindingFlags.Public;
960
961                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#B1");
962                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#B2");
963                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#B3");
964                         Assert.IsNotNull (type.GetProperty ("PubInstBase", flags), "#B4");
965                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#B5");
966                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#B6");
967                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#B7");
968                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#B8");
969                         Assert.IsNotNull (type.GetProperty ("PubInst", flags), "#B9");
970                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#B10");
971                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#B11");
972                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#B12");
973                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#B13");
974                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#B14");
975                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#B15");
976                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#B16");
977                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#B17");
978                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#B18");
979                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#B19");
980                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#B20");
981                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#B21");
982                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#B22");
983                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#B23");
984                         Assert.IsNotNull (type.GetProperty ("PubInstBlue", flags), "#B24");
985                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#B25");
986                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#B26");
987                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#B27");
988                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#B28");
989                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#B29");
990                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#B30");
991
992                         flags = BindingFlags.Static | BindingFlags.Public;
993
994                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#C1");
995                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#C2");
996                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#C3");
997                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#C4");
998                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#C5");
999                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#C6");
1000                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#C7");
1001                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#C8");
1002                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#C9");
1003                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#C10");
1004                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#C11");
1005                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#C12");
1006                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#C13");
1007                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#C14");
1008                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#C15");
1009                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#C16");
1010                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#C17");
1011                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#C18");
1012                         Assert.IsNotNull (type.GetProperty ("PubStat", flags), "#C19");
1013                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#C20");
1014                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#C21");
1015                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#C22");
1016                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#C23");
1017                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#C24");
1018                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#C25");
1019                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#C26");
1020                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#C27");
1021                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#C28");
1022                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#C29");
1023                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#C30");
1024
1025                         flags = BindingFlags.Static | BindingFlags.NonPublic;
1026
1027                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#D1");
1028                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#D2");
1029                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#D3");
1030                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#D4");
1031                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#D5");
1032                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#D6");
1033                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#D7");
1034                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#D8");
1035                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#D9");
1036                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#D10");
1037                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#D11");
1038                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#D12");
1039                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#D13");
1040                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#D14");
1041                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#D15");
1042                         Assert.IsNotNull (type.GetProperty ("PrivStat", flags), "#D16");
1043                         Assert.IsNotNull (type.GetProperty ("ProtStat", flags), "#D17");
1044                         Assert.IsNotNull (type.GetProperty ("ProIntStat", flags), "#D18");
1045                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#D19");
1046                         Assert.IsNotNull (type.GetProperty ("IntStat", flags), "#D20");
1047                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#D21");
1048                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#D22");
1049                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#D23");
1050                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#D24");
1051                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#D25");
1052                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#D26");
1053                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#D27");
1054                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#D28");
1055                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#D29");
1056                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#D30");
1057
1058                         flags = BindingFlags.Instance | BindingFlags.NonPublic |
1059                                 BindingFlags.FlattenHierarchy;
1060
1061                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#E1");
1062                         Assert.IsNotNull (type.GetProperty ("ProtInstBase", flags), "#E2");
1063                         Assert.IsNotNull (type.GetProperty ("ProIntInstBase", flags), "#E3");
1064                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#E4");
1065                         Assert.IsNotNull (type.GetProperty ("IntInstBase", flags), "#E5");
1066                         Assert.IsNotNull (type.GetProperty ("PrivInst", flags), "#E6");
1067                         Assert.IsNotNull (type.GetProperty ("ProtInst", flags), "#E7");
1068                         Assert.IsNotNull (type.GetProperty ("ProIntInst", flags), "#E8");
1069                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#E9");
1070                         Assert.IsNotNull (type.GetProperty ("IntInst", flags), "#E10");
1071                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#E11");
1072                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#E12");
1073                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#E13");
1074                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#E14");
1075                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#E15");
1076                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#E16");
1077                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#E17");
1078                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#E18");
1079                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#E19");
1080                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#E20");
1081                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#E21");
1082                         Assert.IsNotNull (type.GetProperty ("ProtInstBlue", flags), "#E22");
1083                         Assert.IsNotNull (type.GetProperty ("ProIntInstBlue", flags), "#E23");
1084                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#E24");
1085                         Assert.IsNotNull (type.GetProperty ("IntInstBlue", flags), "#E25");
1086                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#E26");
1087                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#E27");
1088                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#E28");
1089                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#E29");
1090                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#E30");
1091
1092                         flags = BindingFlags.Instance | BindingFlags.Public |
1093                                 BindingFlags.FlattenHierarchy;
1094
1095                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#F1");
1096                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#F2");
1097                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#F3");
1098                         Assert.IsNotNull (type.GetProperty ("PubInstBase", flags), "#F4");
1099                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#F5");
1100                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#F6");
1101                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#F7");
1102                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#F8");
1103                         Assert.IsNotNull (type.GetProperty ("PubInst", flags), "#F9");
1104                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#F10");
1105                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#F11");
1106                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#F12");
1107                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#F13");
1108                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#F14");
1109                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#F15");
1110                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#F16");
1111                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#F17");
1112                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#F18");
1113                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#F19");
1114                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#F20");
1115                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#F21");
1116                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#F22");
1117                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#F23");
1118                         Assert.IsNotNull (type.GetProperty ("PubInstBlue", flags), "#F24");
1119                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#F25");
1120                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#F26");
1121                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#F27");
1122                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#F28");
1123                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#F29");
1124                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#F30");
1125
1126                         flags = BindingFlags.Static | BindingFlags.Public |
1127                                 BindingFlags.FlattenHierarchy;
1128
1129                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#G1");
1130                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#G2");
1131                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#G3");
1132                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#G4");
1133                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#G5");
1134                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#G6");
1135                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#G7");
1136                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#G8");
1137                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#G9");
1138                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#G10");
1139                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#G11");
1140                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#G12");
1141                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#G13");
1142                         Assert.IsNotNull (type.GetProperty ("PubStatBase", flags), "#G14");
1143                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#G15");
1144                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#G16");
1145                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#G17");
1146                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#G18");
1147                         Assert.IsNotNull (type.GetProperty ("PubStat", flags), "#G19");
1148                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#G20");
1149                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#G21");
1150                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#G22");
1151                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#G23");
1152                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#G24");
1153                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#G25");
1154                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#G26");
1155                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#G27");
1156                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#G28");
1157                         Assert.IsNotNull (type.GetProperty ("PubStatBlue", flags), "#G29");
1158                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#G30");
1159
1160                         flags = BindingFlags.Static | BindingFlags.NonPublic |
1161                                 BindingFlags.FlattenHierarchy;
1162
1163                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#H1");
1164                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#H2");
1165                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#H3");
1166                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#H4");
1167                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#H5");
1168                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#H6");
1169                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#H7");
1170                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#H8");
1171                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#H9");
1172                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#H10");
1173                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#H11");
1174                         Assert.IsNotNull (type.GetProperty ("ProtStatBase", flags), "#H12");
1175                         Assert.IsNotNull (type.GetProperty ("ProIntStatBase", flags), "#H13");
1176                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#H14");
1177                         Assert.IsNotNull (type.GetProperty ("IntStatBase", flags), "#H15");
1178                         Assert.IsNotNull (type.GetProperty ("PrivStat", flags), "#H16");
1179                         Assert.IsNotNull (type.GetProperty ("ProtStat", flags), "#H17");
1180                         Assert.IsNotNull (type.GetProperty ("ProIntStat", flags), "#H18");
1181                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#H19");
1182                         Assert.IsNotNull (type.GetProperty ("IntStat", flags), "#H20");
1183                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#H21");
1184                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#H22");
1185                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#H23");
1186                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#H24");
1187                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#H25");
1188                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#H26");
1189                         Assert.IsNotNull (type.GetProperty ("ProtStatBlue", flags), "#H27");
1190                         Assert.IsNotNull (type.GetProperty ("ProIntStatBlue", flags), "#H28");
1191                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#H29");
1192                         Assert.IsNotNull (type.GetProperty ("IntStatBlue", flags), "#H30");
1193
1194                         flags = BindingFlags.Instance | BindingFlags.NonPublic |
1195                                 BindingFlags.DeclaredOnly;
1196
1197                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#I1");
1198                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#I2");
1199                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#I3");
1200                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#I4");
1201                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#I5");
1202                         Assert.IsNotNull (type.GetProperty ("PrivInst", flags), "#I6");
1203                         Assert.IsNotNull (type.GetProperty ("ProtInst", flags), "#I7");
1204                         Assert.IsNotNull (type.GetProperty ("ProIntInst", flags), "#I8");
1205                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#I9");
1206                         Assert.IsNotNull (type.GetProperty ("IntInst", flags), "#I10");
1207                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#I11");
1208                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#I12");
1209                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#I13");
1210                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#I14");
1211                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#I15");
1212                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#I16");
1213                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#I17");
1214                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#I18");
1215                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#I19");
1216                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#I20");
1217                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#I21");
1218                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#I22");
1219                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#I23");
1220                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#I24");
1221                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#I25");
1222                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#I26");
1223                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#I27");
1224                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#I28");
1225                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#I29");
1226                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#I30");
1227
1228                         flags = BindingFlags.Instance | BindingFlags.Public |
1229                                 BindingFlags.DeclaredOnly;
1230
1231                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#J1");
1232                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#J2");
1233                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#J3");
1234                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#J4");
1235                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#J5");
1236                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#J6");
1237                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#J7");
1238                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#J8");
1239                         Assert.IsNotNull (type.GetProperty ("PubInst", flags), "#J9");
1240                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#J10");
1241                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#J11");
1242                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#J12");
1243                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#J13");
1244                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#J14");
1245                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#J15");
1246                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#J16");
1247                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#J17");
1248                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#J18");
1249                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#J19");
1250                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#J20");
1251                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#J21");
1252                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#J22");
1253                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#J23");
1254                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#J24");
1255                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#J25");
1256                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#J26");
1257                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#J27");
1258                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#J28");
1259                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#J29");
1260                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#J30");
1261
1262                         flags = BindingFlags.Static | BindingFlags.Public |
1263                                 BindingFlags.DeclaredOnly;
1264
1265                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#K1");
1266                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#K2");
1267                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#K3");
1268                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#K4");
1269                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#K5");
1270                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#K6");
1271                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#K7");
1272                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#K8");
1273                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#K9");
1274                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#K10");
1275                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#K11");
1276                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#K12");
1277                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#K13");
1278                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#K14");
1279                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#K15");
1280                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#K16");
1281                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#K17");
1282                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#K18");
1283                         Assert.IsNotNull (type.GetProperty ("PubStat", flags), "#K19");
1284                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#K20");
1285                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#K21");
1286                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#K22");
1287                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#K23");
1288                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#K24");
1289                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#K25");
1290                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#K26");
1291                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#K27");
1292                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#K28");
1293                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#K29");
1294                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#K30");
1295
1296                         flags = BindingFlags.Static | BindingFlags.NonPublic |
1297                                 BindingFlags.DeclaredOnly;
1298
1299                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#L1");
1300                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#L2");
1301                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#L3");
1302                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#L4");
1303                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#L5");
1304                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#L6");
1305                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#L7");
1306                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#L8");
1307                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#L9");
1308                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#L10");
1309                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#L11");
1310                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#L12");
1311                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#L13");
1312                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#L14");
1313                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#L15");
1314                         Assert.IsNotNull (type.GetProperty ("PrivStat", flags), "#L16");
1315                         Assert.IsNotNull (type.GetProperty ("ProtStat", flags), "#L17");
1316                         Assert.IsNotNull (type.GetProperty ("ProIntStat", flags), "#L18");
1317                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#L19");
1318                         Assert.IsNotNull (type.GetProperty ("IntStat", flags), "#L20");
1319                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#L21");
1320                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#L22");
1321                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#L23");
1322                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#L24");
1323                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#L25");
1324                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#L26");
1325                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#L27");
1326                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#L28");
1327                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#L29");
1328                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#L30");
1329
1330                         flags = BindingFlags.Instance | BindingFlags.NonPublic |
1331                                 BindingFlags.Public;
1332
1333                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#M1");
1334                         Assert.IsNotNull (type.GetProperty ("ProtInstBase", flags), "#M2");
1335                         Assert.IsNotNull (type.GetProperty ("ProIntInstBase", flags), "#M3");
1336                         Assert.IsNotNull (type.GetProperty ("PubInstBase", flags), "#M4");
1337                         Assert.IsNotNull (type.GetProperty ("IntInstBase", flags), "#M5");
1338                         Assert.IsNotNull (type.GetProperty ("PrivInst", flags), "#M6");
1339                         Assert.IsNotNull (type.GetProperty ("ProtInst", flags), "#M7");
1340                         Assert.IsNotNull (type.GetProperty ("ProIntInst", flags), "#M8");
1341                         Assert.IsNotNull (type.GetProperty ("PubInst", flags), "#M9");
1342                         Assert.IsNotNull (type.GetProperty ("IntInst", flags), "#M10");
1343                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#M11");
1344                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#M12");
1345                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#M13");
1346                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#M14");
1347                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#M15");
1348                         Assert.IsNull (type.GetProperty ("PrivStat", flags), "#M16");
1349                         Assert.IsNull (type.GetProperty ("ProtStat", flags), "#M17");
1350                         Assert.IsNull (type.GetProperty ("ProIntStat", flags), "#M18");
1351                         Assert.IsNull (type.GetProperty ("PubStat", flags), "#M19");
1352                         Assert.IsNull (type.GetProperty ("IntStat", flags), "#M20");
1353                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#M21");
1354                         Assert.IsNotNull (type.GetProperty ("ProtInstBlue", flags), "#M22");
1355                         Assert.IsNotNull (type.GetProperty ("ProIntInstBlue", flags), "#M23");
1356                         Assert.IsNotNull (type.GetProperty ("PubInstBlue", flags), "#M24");
1357                         Assert.IsNotNull (type.GetProperty ("IntInstBlue", flags), "#M25");
1358                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#M26");
1359                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#M27");
1360                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#M28");
1361                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#M29");
1362                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#M30");
1363
1364                         flags = BindingFlags.Static | BindingFlags.NonPublic |
1365                                 BindingFlags.Public;
1366
1367                         Assert.IsNull (type.GetProperty ("PrivInstBase", flags), "#N1");
1368                         Assert.IsNull (type.GetProperty ("ProtInstBase", flags), "#N2");
1369                         Assert.IsNull (type.GetProperty ("ProIntInstBase", flags), "#N3");
1370                         Assert.IsNull (type.GetProperty ("PubInstBase", flags), "#N4");
1371                         Assert.IsNull (type.GetProperty ("IntInstBase", flags), "#N5");
1372                         Assert.IsNull (type.GetProperty ("PrivInst", flags), "#N6");
1373                         Assert.IsNull (type.GetProperty ("ProtInst", flags), "#N7");
1374                         Assert.IsNull (type.GetProperty ("ProIntInst", flags), "#N8");
1375                         Assert.IsNull (type.GetProperty ("PubInst", flags), "#N9");
1376                         Assert.IsNull (type.GetProperty ("IntInst", flags), "#N10");
1377                         Assert.IsNull (type.GetProperty ("PrivStatBase", flags), "#N11");
1378                         Assert.IsNull (type.GetProperty ("ProtStatBase", flags), "#N12");
1379                         Assert.IsNull (type.GetProperty ("ProIntStatBase", flags), "#N13");
1380                         Assert.IsNull (type.GetProperty ("PubStatBase", flags), "#N14");
1381                         Assert.IsNull (type.GetProperty ("IntStatBase", flags), "#N15");
1382                         Assert.IsNotNull (type.GetProperty ("PrivStat", flags), "#N16");
1383                         Assert.IsNotNull (type.GetProperty ("ProtStat", flags), "#N17");
1384                         Assert.IsNotNull (type.GetProperty ("ProIntStat", flags), "#N18");
1385                         Assert.IsNotNull (type.GetProperty ("PubStat", flags), "#N19");
1386                         Assert.IsNotNull (type.GetProperty ("IntStat", flags), "#N20");
1387                         Assert.IsNull (type.GetProperty ("PrivInstBlue", flags), "#N21");
1388                         Assert.IsNull (type.GetProperty ("ProtInstBlue", flags), "#N22");
1389                         Assert.IsNull (type.GetProperty ("ProIntInstBlue", flags), "#N23");
1390                         Assert.IsNull (type.GetProperty ("PubInstBlue", flags), "#N24");
1391                         Assert.IsNull (type.GetProperty ("IntInstBlue", flags), "#N25");
1392                         Assert.IsNull (type.GetProperty ("PrivStatBlue", flags), "#N26");
1393                         Assert.IsNull (type.GetProperty ("ProtStatBlue", flags), "#N27");
1394                         Assert.IsNull (type.GetProperty ("ProIntStatBlue", flags), "#N28");
1395                         Assert.IsNull (type.GetProperty ("PubStatBlue", flags), "#N29");
1396                         Assert.IsNull (type.GetProperty ("IntStatBlue", flags), "#N30");
1397                 }
1398
1399                 [Test] // GetProperty (String, BindingFlags)
1400                 public void GetProperty2_Name_Null ()
1401                 {
1402                         Type type = typeof (Bar);
1403                         try {
1404                                 type.GetProperty ((string) null);
1405                                 Assert.Fail ("#1");
1406                         } catch (ArgumentNullException ex) {
1407                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1408                                 Assert.IsNull (ex.InnerException, "#3");
1409                                 Assert.IsNotNull (ex.Message, "#4");
1410                                 Assert.IsNotNull (ex.ParamName, "#5");
1411                                 Assert.AreEqual ("name", ex.ParamName, "#6");
1412                         }
1413                 }
1414
1415                 [Test] // GetProperty (String, Type)
1416                 public void GetProperty3_Name_Null ()
1417                 {
1418                         Type type = typeof (Bar);
1419                         try {
1420                                 type.GetProperty ((string) null, typeof (int));
1421                                 Assert.Fail ("#1");
1422                         } catch (ArgumentNullException ex) {
1423                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1424                                 Assert.IsNull (ex.InnerException, "#3");
1425                                 Assert.IsNotNull (ex.Message, "#4");
1426                                 Assert.IsNotNull (ex.ParamName, "#5");
1427                                 Assert.AreEqual ("name", ex.ParamName, "#6");
1428                         }
1429                 }
1430
1431                 [Test] // GetProperty (String, Type [])
1432                 public void GetProperty4_Name_Null ()
1433                 {
1434                         Type type = typeof (Bar);
1435                         try {
1436                                 type.GetProperty ((string) null, Type.EmptyTypes);
1437                                 Assert.Fail ("#1");
1438                         } catch (ArgumentNullException ex) {
1439                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1440                                 Assert.IsNull (ex.InnerException, "#3");
1441                                 Assert.IsNotNull (ex.Message, "#4");
1442                                 Assert.IsNotNull (ex.ParamName, "#5");
1443                                 Assert.AreEqual ("name", ex.ParamName, "#6");
1444                         }
1445                 }
1446
1447                 [Test] // GetProperty (String, Type, Type [])
1448                 public void GetProperty5_Name_Null ()
1449                 {
1450                         Type type = typeof (Bar);
1451                         try {
1452                                 type.GetProperty ((string) null, typeof (int),
1453                                         Type.EmptyTypes);
1454                                 Assert.Fail ("#1");
1455                         } catch (ArgumentNullException ex) {
1456                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1457                                 Assert.IsNull (ex.InnerException, "#3");
1458                                 Assert.IsNotNull (ex.Message, "#4");
1459                                 Assert.IsNotNull (ex.ParamName, "#5");
1460                                 Assert.AreEqual ("name", ex.ParamName, "#6");
1461                         }
1462                 }
1463
1464                 [Test] // GetProperty (String, Type, Type [], ParameterModifier [])
1465                 public void GetProperty6_Name_Null ()
1466                 {
1467                         Type type = typeof (Bar);
1468                         try {
1469                                 type.GetProperty ((string) null, typeof (int),
1470                                         Type.EmptyTypes, null);
1471                                 Assert.Fail ("#1");
1472                         } catch (ArgumentNullException ex) {
1473                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1474                                 Assert.IsNull (ex.InnerException, "#3");
1475                                 Assert.IsNotNull (ex.Message, "#4");
1476                                 Assert.IsNotNull (ex.ParamName, "#5");
1477                                 Assert.AreEqual ("name", ex.ParamName, "#6");
1478                         }
1479                 }
1480
1481                 [Test] // GetProperty (String, BindingFlags, Binder, Type, Type [], ParameterModifier [])
1482                 public void GetProperty7_Name_Null ()
1483                 {
1484                         Type type = typeof (Bar);
1485                         try {
1486                                 type.GetProperty ((string) null, BindingFlags.Public,
1487                                         null, typeof (int), Type.EmptyTypes, null);
1488                                 Assert.Fail ("#1");
1489                         } catch (ArgumentNullException ex) {
1490                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1491                                 Assert.IsNull (ex.InnerException, "#3");
1492                                 Assert.IsNotNull (ex.Message, "#4");
1493                                 Assert.IsNotNull (ex.ParamName, "#5");
1494                                 Assert.AreEqual ("name", ex.ParamName, "#6");
1495                         }
1496                 }
1497
1498                 [Test]
1499                 public void GetProperty8_PropertyType ()
1500                 {
1501                         Type type = typeof (Bar);
1502                         Assert.IsNull (type.GetProperty ("PubInst", BindingFlags.Public | BindingFlags.Instance,
1503                                                          null, typeof (int), Type.EmptyTypes, null), "#1");
1504                         Assert.IsNotNull (type.GetProperty ("PubInst", BindingFlags.Public | BindingFlags.Instance, null, 
1505                                                             typeof (long), new Type[0], null), "#2");
1506                 }
1507
1508 #if !TARGET_JVM // StructLayout not supported for TARGET_JVM
1509                 [StructLayout(LayoutKind.Explicit, Pack = 4, Size = 64)]
1510                 public class Class1
1511                 {
1512                 }
1513
1514                 [StructLayout(LayoutKind.Explicit, CharSet=CharSet.Unicode)]
1515                 public class Class2
1516                 {
1517                 }
1518
1519                 [Test]
1520                 public void StructLayoutAttribute ()
1521                 {
1522                         StructLayoutAttribute attr1 = typeof (TypeTest).StructLayoutAttribute;
1523                         Assert.AreEqual (LayoutKind.Auto, attr1.Value);
1524
1525                         StructLayoutAttribute attr2 = typeof (Class1).StructLayoutAttribute;
1526                         Assert.AreEqual (LayoutKind.Explicit, attr2.Value);
1527                         Assert.AreEqual (4, attr2.Pack);
1528                         Assert.AreEqual (64, attr2.Size);
1529
1530                         StructLayoutAttribute attr3 = typeof (Class2).StructLayoutAttribute;
1531                         Assert.AreEqual (LayoutKind.Explicit, attr3.Value);
1532                         Assert.AreEqual (CharSet.Unicode, attr3.CharSet);
1533                 }
1534 #endif // TARGET_JVM
1535
1536                 [Test]
1537                 public void Namespace ()
1538                 {
1539                         Assert.AreEqual (null, typeof (NoNamespaceClass).Namespace);
1540                 }
1541
1542                 [Test]
1543                 public void GenericParameterNamespace ()
1544                 {
1545                         var t = typeof (Foo<>).GetGenericArguments () [0];
1546
1547                         Assert.AreEqual ("T", t.Name);
1548                         Assert.AreEqual ("MonoTests.System", t.Namespace);
1549
1550                         var s = typeof (Gazonk).GetMethod ("Bang").GetGenericArguments () [0];
1551
1552                         Assert.AreEqual ("S", s.Name);
1553                         Assert.AreEqual ("MonoTests.System", s.Namespace);
1554                 }
1555
1556                 public static void Reflected (ref int a)
1557                 {
1558                 }
1559
1560                 [Test]
1561                 public void Name ()
1562                 {
1563                         Assert.AreEqual ("Int32&", typeof (TypeTest).GetMethod ("Reflected").GetParameters () [0].ParameterType.Name);
1564                         Assert.AreEqual ("String[*]", Array.CreateInstance (typeof(string), new int[] { 1 }, new int[] { 1 }).GetType ().Name);
1565                 }
1566
1567                 [Test]
1568                 public void GetInterfaces ()
1569                 {
1570                         Type[] t = typeof (Duper).GetInterfaces ();
1571                         Assert.AreEqual (1, t.Length);
1572                         Assert.AreEqual (typeof (ICloneable), t[0]);
1573
1574                         Type[] t2 = typeof (IFace3).GetInterfaces ();
1575                         Assert.AreEqual (2, t2.Length);
1576                 }
1577
1578                 [Test]
1579                 public void GetInterfacesGenericVarWithConstraints ()
1580                 {
1581                         var a = typeof (TypeTest).GetMethod ("GenericMethod");
1582
1583                         var p = a.GetParameters ();
1584                         var i = p[0].ParameterType.GetElementType ();
1585                         i.GetInterfaces ();
1586                 }
1587
1588                 public static void GenericMethod<T, T2> (T[] arr) where T: IComparable<T> {
1589                 }
1590
1591                 public int AField;
1592
1593                 [Test]
1594                 public void GetFieldIgnoreCase ()
1595                 {
1596                         Assert.IsNotNull (typeof (TypeTest).GetField ("afield", BindingFlags.Instance|BindingFlags.Public|BindingFlags.IgnoreCase));
1597                 }
1598
1599                 public int Count {
1600                         internal get {
1601                                 return 0;
1602                         }
1603
1604                         set {
1605                         }
1606                 }
1607
1608                 [Test]
1609                 public void GetPropertyAccessorModifiers ()
1610                 {
1611                         Assert.IsNotNull (typeof (TypeTest).GetProperty ("Count", BindingFlags.Instance | BindingFlags.Public));
1612                         Assert.IsNull (typeof (TypeTest).GetProperty ("Count", BindingFlags.Instance | BindingFlags.NonPublic));
1613                 }
1614
1615                 [Test]
1616                 public void IsAbstract ()
1617                 {
1618                         Assert.IsFalse (typeof (string).IsAbstract, "#1");
1619                         Assert.IsTrue (typeof (ICloneable).IsAbstract, "#2");
1620                         Assert.IsTrue (typeof (ValueType).IsAbstract, "#3");
1621                         Assert.IsTrue (typeof (Enum).IsAbstract, "#4");
1622                         Assert.IsFalse (typeof (TimeSpan).IsAbstract, "#5");
1623                         Assert.IsTrue (typeof (TextReader).IsAbstract, "#6");
1624
1625                         // LAMESPEC:
1626                         // https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=286308
1627                         Type [] typeArgs = typeof (List<>).GetGenericArguments ();
1628                         Assert.IsFalse (typeArgs [0].IsAbstract, "#7");
1629                 }
1630 #if !MOBILE
1631                 [Test]
1632                 public void IsCOMObject ()
1633                 {
1634                         Type type = typeof (string);
1635                         Assert.IsFalse (type.IsCOMObject, "#1");
1636
1637                         TypeBuilder tb = module.DefineType (genTypeName ());
1638                         type = tb.CreateType ();
1639                         Assert.IsFalse (type.IsCOMObject, "#2");
1640                 }
1641
1642                 [Test]
1643                 public void IsImport ()
1644                 {
1645                         Type type = typeof (string);
1646                         Assert.IsFalse (type.IsImport, "#1");
1647
1648                         TypeBuilder tb = module.DefineType (genTypeName ());
1649                         type = tb.CreateType ();
1650                         Assert.IsFalse (type.IsImport, "#2");
1651
1652                         tb = module.DefineType (genTypeName (), TypeAttributes.Import |
1653                                 TypeAttributes.Interface | TypeAttributes.Abstract);
1654                         type = tb.CreateType ();
1655                         Assert.IsTrue (type.IsImport, "#3");
1656                 }
1657 #endif
1658                 [Test]
1659                 public void IsInterface ()
1660                 {
1661                         Assert.IsFalse (typeof (string).IsInterface, "#1");
1662                         Assert.IsTrue (typeof (ICloneable).IsInterface, "#2");
1663                 }
1664
1665                 [Test]
1666                 public void IsPrimitive () {
1667                         Assert.IsTrue (typeof (IntPtr).IsPrimitive, "#1");
1668                         Assert.IsTrue (typeof (int).IsPrimitive, "#2");
1669                         Assert.IsFalse (typeof (string).IsPrimitive, "#2");
1670                 }
1671
1672                 [Test]
1673                 public void IsValueType ()
1674                 {
1675                         Assert.IsTrue (typeof (int).IsValueType, "#1");
1676                         Assert.IsFalse (typeof (Enum).IsValueType, "#2");
1677                         Assert.IsFalse (typeof (ValueType).IsValueType, "#3");
1678                         Assert.IsTrue (typeof (AttributeTargets).IsValueType, "#4");
1679                         Assert.IsFalse (typeof (string).IsValueType, "#5");
1680                         Assert.IsTrue (typeof (TimeSpan).IsValueType, "#6");
1681                 }
1682
1683                 [Test]
1684                 [Category("NotDotNet")]
1685                 // Depends on the GAC working, which it doesn't durring make distcheck.
1686                 [Category ("NotWorking")]
1687                 public void GetTypeWithWhitespace ()
1688                 {
1689                         Assert.IsNotNull (Type.GetType
1690                                                    (@"System.Configuration.NameValueSectionHandler,
1691                         System,
1692 Version=1.0.5000.0,
1693 Culture=neutral
1694 ,
1695 PublicKeyToken=b77a5c561934e089"));
1696                 }
1697
1698                 [Test]
1699                 public void GetTypeNonVectorArray ()
1700                 {
1701                         Type t = Type.GetType ("System.String[*]");
1702                         Assert.AreEqual ("System.String[*]", t.ToString ());
1703                 }
1704                 
1705                 [Test]
1706                 public void TypeFromCLSID ()
1707                 {
1708                         Guid CLSID_ShellDesktop = new Guid("00021400-0000-0000-c000-000000000046");
1709                         Guid CLSID_Bogus = new Guid("1ea9d7a9-f7ab-443b-b486-30d285b21f1b");
1710
1711                         Type t1 = Type.GetTypeFromCLSID (CLSID_ShellDesktop);
1712
1713                         Type t2 = Type.GetTypeFromCLSID (CLSID_Bogus);
1714
1715                         Assert.AreEqual (t1.FullName, "System.__ComObject");
1716
1717                         if (Environment.OSVersion.Platform == PlatformID.Win32Windows ||
1718                                 Environment.OSVersion.Platform == PlatformID.Win32NT)
1719                                 Activator.CreateInstance(t1);
1720
1721                         Assert.AreEqual (t2.FullName, "System.__ComObject");
1722
1723                         Assert.AreNotEqual (t1, t2);
1724                 }
1725
1726                 [Test]
1727                 [Category("NotWorking")] // Mono throws TargetInvokationException
1728                 [ExpectedException("System.Runtime.InteropServices.COMException")]
1729                 public void TypeFromCLSIDBogus ()
1730                 {
1731                         Guid CLSID_Bogus = new Guid("1ea9d7a9-f7ab-443b-b486-30d285b21f1b");
1732                         Type t = Type.GetTypeFromCLSID (CLSID_Bogus);
1733                         if (Environment.OSVersion.Platform == PlatformID.Win32Windows ||
1734                                 Environment.OSVersion.Platform == PlatformID.Win32NT)
1735                                 Activator.CreateInstance(t);
1736                         else
1737                                 throw new COMException ();
1738                 }
1739                 
1740                 [Test]
1741                 public void ExerciseFilterName ()
1742                 {
1743                         MemberInfo[] mi = typeof(Base).FindMembers(
1744                                 MemberTypes.Method, 
1745                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1746                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1747                                 Type.FilterName, "*");
1748                         Assert.AreEqual (4, mi.Length);
1749                         mi = typeof(Base).FindMembers(
1750                                 MemberTypes.Method, 
1751                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1752                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1753                                 Type.FilterName, "Test*");
1754                         Assert.AreEqual (2, mi.Length);
1755                         mi = typeof(Base).FindMembers(
1756                                 MemberTypes.Method, 
1757                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1758                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1759                                 Type.FilterName, "TestVoid");
1760                         Assert.AreEqual (1, mi.Length);
1761                         mi = typeof(Base).FindMembers(
1762                                 MemberTypes.Method, 
1763                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1764                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1765                                 Type.FilterName, "NonExistingMethod");
1766                         Assert.AreEqual (0, mi.Length);
1767                 }
1768                 
1769                 [Test]
1770                 public void ExerciseFilterNameIgnoreCase ()
1771                 {
1772                         MemberInfo[] mi = typeof(Base).FindMembers(
1773                                 MemberTypes.Method, 
1774                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1775                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1776                                 Type.FilterNameIgnoreCase, "*");
1777                         Assert.AreEqual (4, mi.Length);
1778                         mi = typeof(Base).FindMembers(
1779                                 MemberTypes.Method, 
1780                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1781                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1782                                 Type.FilterNameIgnoreCase, "test*");
1783                         Assert.AreEqual (2, mi.Length);
1784                         mi = typeof(Base).FindMembers(
1785                                 MemberTypes.Method, 
1786                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1787                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1788                                 Type.FilterNameIgnoreCase, "TESTVOID");
1789                         Assert.AreEqual (1, mi.Length);
1790                         mi = typeof(Base).FindMembers(
1791                                 MemberTypes.Method, 
1792                                 BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic |
1793                                 BindingFlags.Instance | BindingFlags.DeclaredOnly,
1794                                 Type.FilterNameIgnoreCase, "NonExistingMethod");
1795                         Assert.AreEqual (0, mi.Length);
1796                 }
1797
1798                 [Test]
1799                 [ExpectedException (typeof (InvalidFilterCriteriaException))]
1800                 public void FilterAttribute_Invalid ()
1801                 {
1802                         Type.FilterAttribute (MethodBase.GetCurrentMethod (), (byte) 1);
1803                 }
1804
1805                 [Test]
1806                 public void GenericParameterMemberType ()
1807                 {
1808                         var t = typeof (Foo<>).GetGenericArguments () [0];
1809                         Assert.IsNotNull (t);
1810
1811                         Assert.AreEqual (MemberTypes.TypeInfo, t.MemberType);
1812                 }
1813
1814                 public class ByRef0
1815                 {
1816                         public int field;
1817                         public int property {
1818                                 get { return 0; }
1819                         }
1820                         public ByRef0 (int i) {}
1821                         public void f (int i) {}
1822                 }
1823
1824                 [Test]
1825                 public void ByrefTypes ()
1826                 {
1827                         Type t = Type.GetType ("MonoTests.System.TypeTest+ByRef0&");
1828                         Assert.IsNotNull (t);
1829                         Assert.IsTrue (t.IsByRef);
1830                         Assert.AreEqual (0, t.GetMethods (BindingFlags.Public | BindingFlags.Instance).Length);
1831                         Assert.AreEqual (0, t.GetConstructors (BindingFlags.Public | BindingFlags.Instance).Length);
1832                         Assert.AreEqual (0, t.GetEvents (BindingFlags.Public | BindingFlags.Instance).Length);
1833                         Assert.AreEqual (0, t.GetProperties (BindingFlags.Public | BindingFlags.Instance).Length);
1834
1835                         Assert.IsNull (t.GetMethod ("f"));
1836                         Assert.IsNull (t.GetField ("field"));
1837                         Assert.IsNull (t.GetProperty ("property"));
1838                 }
1839                 
1840                 [Test]
1841                 public void TestAssemblyQualifiedName ()
1842                 {
1843                         Type t = Type.GetType ("System.Byte[]&");
1844                         Assert.IsTrue (t.AssemblyQualifiedName.StartsWith ("System.Byte[]&"));
1845                         
1846                         t = Type.GetType ("System.Byte*&");
1847                         Assert.IsTrue (t.AssemblyQualifiedName.StartsWith ("System.Byte*&"));
1848                         
1849                         t = Type.GetType ("System.Byte&");
1850                         Assert.IsTrue (t.AssemblyQualifiedName.StartsWith ("System.Byte&"));
1851                 }
1852
1853                 struct B
1854                 {
1855                         int value;
1856                 }
1857
1858                 [Test]
1859                 public void CreateValueTypeNoCtor ()
1860                 {
1861                         typeof(B).InvokeMember ("", BindingFlags.CreateInstance, null, null, null);
1862                 }
1863
1864                 [Test]
1865                 [ExpectedException (typeof (MissingMethodException))]
1866                 public void CreateValueTypeNoCtorArgs ()
1867                 {
1868                         typeof(B).InvokeMember ("", BindingFlags.CreateInstance, null, null, new object [] { 1 });
1869                 }
1870
1871                 internal static string bug336841 (string param1, params string [] param2)
1872                 {
1873                         StringBuilder sb = new StringBuilder ();
1874                         sb.Append ("#A:");
1875                         sb.Append (param1);
1876                         sb.Append ("|");
1877                         for (int i = 0; i < param2.Length; i++) {
1878                                 if (i > 0)
1879                                         sb.Append (",");
1880                                 sb.Append (param2 [i]);
1881                         }
1882                         return sb.ToString ();
1883                 }
1884
1885                 internal static string bug336841 (string param1)
1886                 {
1887                         return "#B:" + param1;
1888                 }
1889
1890                 internal static string bug336841 (params string [] param1)
1891                 {
1892                         StringBuilder sb = new StringBuilder ();
1893                         sb.Append ("#C:");
1894                         for (int i = 0; i < param1.Length; i++) {
1895                                 if (i > 0)
1896                                         sb.Append (";");
1897                                 sb.Append (param1 [i]);
1898                         }
1899                         return sb.ToString ();
1900                 }
1901
1902                 [Test]
1903                 public void InvokeMember_GetSetField ()
1904                 {
1905                         typeof (X).InvokeMember ("Value", BindingFlags.Public |
1906                                 BindingFlags.Static | BindingFlags.FlattenHierarchy |
1907                                 BindingFlags.SetField, null, null, new object [] { 5 });
1908
1909                         Assert.AreEqual (5, X.Value, "#A1");
1910                         Assert.AreEqual (5, typeof (X).InvokeMember ("Value",
1911                                 BindingFlags.Public | BindingFlags.Static |
1912                                 BindingFlags.FlattenHierarchy | BindingFlags.GetField,
1913                                 null, null, new object [0]), "#A2");
1914                         Assert.AreEqual (5, Y.Value, "#A3");
1915                         Assert.AreEqual (5, typeof (Y).InvokeMember ("Value",
1916                                 BindingFlags.Public | BindingFlags.Static |
1917                                 BindingFlags.FlattenHierarchy | BindingFlags.GetField,
1918                                 null, null, new object [0]), "#A4");
1919
1920                         try {
1921                                 typeof (X).InvokeMember ("Value", BindingFlags.Public |
1922                                         BindingFlags.Static | BindingFlags.FlattenHierarchy |
1923                                         BindingFlags.GetField | BindingFlags.SetField,
1924                                         null, null, new object [] { 5 });
1925                                 Assert.Fail ("#B1");
1926                         } catch (ArgumentException ex) {
1927                                 // Cannot specify both Get and Set on a field
1928                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#B2");
1929                                 Assert.IsNull (ex.InnerException, "#B3");
1930                                 Assert.IsNotNull (ex.Message, "#B4");
1931                                 Assert.IsNotNull (ex.ParamName, "#B5");
1932                                 Assert.AreEqual ("bindingFlags", ex.ParamName, "#B6");
1933                         }
1934                 }
1935
1936                 [Test]
1937                 public void InvokeMember_GetSetProperty ()
1938                 {
1939                         try {
1940                                 typeof (ArrayList).InvokeMember ("Item",
1941                                         BindingFlags.GetProperty | BindingFlags.SetProperty |
1942                                         BindingFlags.Instance | BindingFlags.Public,
1943                                         null, new ArrayList (), new object [] { 0, "bar" });
1944                                 Assert.Fail ("#1");
1945                         } catch (ArgumentException ex) {
1946                                 // Cannot specify both Get and Set on a property
1947                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
1948                                 Assert.IsNull (ex.InnerException, "#3");
1949                                 Assert.IsNotNull (ex.Message, "#4");
1950                                 Assert.IsNotNull (ex.ParamName, "#5");
1951                                 Assert.AreEqual ("bindingFlags", ex.ParamName, "#6");
1952                         }
1953                 }
1954
1955
1956                 [Test]
1957                 public void InvokeMember_InvokeMethod_Set ()
1958                 {
1959                         try {
1960                                 typeof (ArrayList).InvokeMember ("ToString",
1961                                         BindingFlags.InvokeMethod | BindingFlags.SetField |
1962                                         BindingFlags.Instance | BindingFlags.Public,
1963                                         null, new ArrayList (), new object [0]);
1964                                 Assert.Fail ("#A1");
1965                         } catch (ArgumentException ex) {
1966                                 // Cannot specify Set on a field and Invoke on a method
1967                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#A2");
1968                                 Assert.IsNull (ex.InnerException, "#A3");
1969                                 Assert.IsNotNull (ex.Message, "#A4");
1970                                 Assert.IsNotNull (ex.ParamName, "#A5");
1971                                 Assert.AreEqual ("bindingFlags", ex.ParamName, "#A6");
1972                         }
1973
1974                         try {
1975                                 typeof (ArrayList).InvokeMember ("ToString",
1976                                         BindingFlags.InvokeMethod | BindingFlags.SetProperty |
1977                                         BindingFlags.Instance | BindingFlags.Public,
1978                                         null, new ArrayList (), new object [0]);
1979                                 Assert.Fail ("#B1");
1980                         } catch (ArgumentException ex) {
1981                                 // Cannot specify Set on a property and Invoke on a method
1982                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#B2");
1983                                 Assert.IsNull (ex.InnerException, "#B3");
1984                                 Assert.IsNotNull (ex.Message, "#B4");
1985                                 Assert.IsNotNull (ex.ParamName, "#B5");
1986                                 Assert.AreEqual ("bindingFlags", ex.ParamName, "#B6");
1987                         }
1988                 }
1989
1990                 [Test]
1991                 public void InvokeMember_MatchPrimitiveTypeWithInterface ()
1992                 {
1993                         object [] invokeargs = { 1 };
1994                         typeof (Z).InvokeMember ("", BindingFlags.DeclaredOnly |
1995                                 BindingFlags.Public | BindingFlags.NonPublic |
1996                                 BindingFlags.Instance | BindingFlags.CreateInstance,
1997                                 null, null, invokeargs);
1998                 }
1999
2000                 [Test]
2001                 public void InvokeMember_Name_Null ()
2002                 {
2003                         try {
2004                                 typeof (X).InvokeMember ((string) null,
2005                                         BindingFlags.Public | BindingFlags.Static |
2006                                         BindingFlags.FlattenHierarchy | BindingFlags.SetField,
2007                                         null, null, new object [] { 5 });
2008                                 Assert.Fail ("#1");
2009                         } catch (ArgumentNullException ex) {
2010                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2011                                 Assert.IsNull (ex.InnerException, "#3");
2012                                 Assert.IsNotNull (ex.Message, "#4");
2013                                 Assert.IsNotNull (ex.ParamName, "#5");
2014                                 Assert.AreEqual ("name", ex.ParamName, "#6");
2015                         }
2016                 }
2017
2018                 [Test]
2019                 public void InvokeMember_NoOperation ()
2020                 {
2021                         try {
2022                                 typeof (TypeTest).InvokeMember ("Run", BindingFlags.Public |
2023                                         BindingFlags.Static, null, null, new object [0]);
2024                                 Assert.Fail ("#1");
2025                         } catch (ArgumentException ex) {
2026                                 // Must specify binding flags describing the
2027                                 // invoke operation required
2028                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
2029                                 Assert.IsNull (ex.InnerException, "#3");
2030                                 Assert.IsNotNull (ex.Message, "#4");
2031                                 Assert.IsNotNull (ex.ParamName, "#5");
2032                                 Assert.AreEqual ("bindingFlags", ex.ParamName, "#6");
2033                         }
2034                 }
2035
2036                 [Test] // bug #321735
2037                 public void InvokeMember_SetFieldProperty ()
2038                 {
2039                         ArrayList list = new ArrayList ();
2040                         list.Add ("foo");
2041                         list.GetType ().InvokeMember ("Item",
2042                                 BindingFlags.SetField | BindingFlags.SetProperty |
2043                                 BindingFlags.Instance | BindingFlags.Public,
2044                                 null, list, new object [] { 0, "bar" });
2045                         Assert.AreEqual ("bar", list [0]);
2046                 }
2047
2048                 [Test]
2049                 public void InvokeMember_SetField_ProvidedArgs ()
2050                 {
2051                         try {
2052                                 typeof (X).InvokeMember ("Value", BindingFlags.Public |
2053                                         BindingFlags.Static | BindingFlags.SetField,
2054                                         null, null, new object [0]);
2055                                 Assert.Fail ("#A1");
2056                         } catch (ArgumentException ex) {
2057                                 // Only the field value can be specified to set
2058                                 // a field value
2059                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#A2");
2060                                 Assert.IsNull (ex.InnerException, "#A3");
2061                                 Assert.IsNotNull (ex.Message, "#A4");
2062                                 Assert.IsNotNull (ex.ParamName, "#A5");
2063                                 Assert.AreEqual ("bindingFlags", ex.ParamName, "#6");
2064                         }
2065
2066                         try {
2067                                 typeof (X).InvokeMember ("Value", BindingFlags.Public |
2068                                         BindingFlags.Static | BindingFlags.SetField,
2069                                         null, null, null);
2070                                 Assert.Fail ("#B1");
2071                         } catch (ArgumentNullException ex) {
2072                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#B2");
2073                                 Assert.IsNull (ex.InnerException, "#B3");
2074                                 Assert.IsNotNull (ex.Message, "#B4");
2075                                 Assert.IsNotNull (ex.ParamName, "#B5");
2076                                 Assert.AreEqual ("providedArgs", ex.ParamName, "#B6");
2077                         }
2078                 }
2079
2080                 [Test] // bug #336841
2081                 [Category ("NotDotNet")] // https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=306797
2082                 public void InvokeMember_VarArgs ()
2083                 {
2084                         BindingFlags flags = BindingFlags.InvokeMethod | BindingFlags.Public |
2085                                 BindingFlags.NonPublic | BindingFlags.OptionalParamBinding |
2086                                 BindingFlags.Static | BindingFlags.FlattenHierarchy |
2087                                 BindingFlags.Instance;
2088
2089                         Type type = typeof (TypeTest);
2090                         string result = (string) type.InvokeMember ("bug336841",
2091                                 flags, null, null, new object [] { "1" });
2092                         Assert.IsNotNull (result, "#A1");
2093                         Assert.AreEqual ("#B:1", result, "#A2");
2094
2095                         result = (string) type.InvokeMember ("bug336841", flags,
2096                                 null, null, new object [] { "1", "2", "3", "4" });
2097                         Assert.IsNotNull (result, "#B1");
2098                         Assert.AreEqual ("#A:1|2,3,4", result, "#B2");
2099                 }
2100
2101         
2102                 [Test] // bug #348522
2103                 public void InvokeMember_WithoutDefaultValue ()
2104                 {
2105                         BindingFlags flags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.InvokeMethod;
2106                         try {
2107                                 typeof (Bug348522).InvokeMember ("Test", flags, new FirstMethodBinder (), new Bug348522(),
2108                                         new object [] {Missing.Value}, null, null, null);
2109                                 Assert.Fail ("#1");
2110                         } catch (ArgumentException ex) {
2111                                 // Missing parameter does not have a default value
2112                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
2113                                 Assert.IsNull (ex.InnerException, "#3");
2114                                 Assert.IsNotNull (ex.Message, "#4");
2115                                 Assert.IsNotNull (ex.ParamName, "#5");
2116                                 Assert.AreEqual ("parameters", ex.ParamName, "#6");
2117                         }
2118                 }
2119
2120             [Test]
2121                 public void TestMissing () {
2122                         Assert.AreEqual (Type.Missing, Missing.Value);
2123                 }
2124
2125                 [Test]
2126                 public void GetGenericMethodDefinitionOverInflatedMethodOnGTD () {
2127                         var l = typeof (List<>);
2128                         var m = l.GetMethod ("ConvertAll");
2129                         var infl = m.MakeGenericMethod (typeof (int));
2130                         var res = m.GetGenericMethodDefinition ();
2131                         Assert.AreEqual (m, res, "#1");
2132                 }
2133
2134                 [Test]
2135                 public void InvokeMember_OutParam ()
2136                 {
2137                         object[] args = new object[] { new string [0] };
2138                         typeof (TypeTest).InvokeMember ("OutTest", BindingFlags.InvokeMethod | BindingFlags.Static | BindingFlags.Public, null, null, args);
2139                         Assert.IsTrue (args [0] is string[]);
2140                         Assert.AreEqual (10, ((string[])args[0]).Length);
2141                 }
2142
2143                 public static void OutTest (out string[] a1)
2144                 {
2145                         a1 = new string [10];
2146                 }
2147
2148                 class X
2149                 {
2150                         public static int Value;
2151                 }
2152
2153                 class Y : X
2154                 {
2155                 }
2156
2157                 class Z
2158                 {
2159                         public Z (IComparable value)
2160                         {
2161                         }
2162                 }
2163         
2164                 public static void Run ()
2165                 {
2166                 }
2167
2168                 class TakesInt
2169                 {
2170                         private int i;
2171
2172                         public TakesInt (int x)
2173                         {
2174                                 i = x;
2175                         }
2176
2177                         public int Integer {
2178                                 get { return i; }
2179                         }
2180                 }
2181
2182                 class TakesObject
2183                 {
2184                         public TakesObject (object x) {}
2185                 }
2186
2187                 [Test] // bug #75241
2188                 public void GetConstructorNullInTypes ()
2189                 {
2190                         // This ends up calling type.GetConstructor ()
2191                         Activator.CreateInstance (typeof (TakesInt), new object [] { null });
2192                         Activator.CreateInstance (typeof (TakesObject), new object [] { null });
2193                 }
2194
2195                 [Test]
2196                 public void GetConstructor_TakeInt_Object ()
2197                 {
2198                         Assert.IsNull (typeof (TakesInt).GetConstructor (new Type[1] { typeof (object) }));
2199                 }
2200
2201                 [Test]
2202                 public void GetCustomAttributes_All ()
2203                 {
2204                         object [] attrs = typeof (A).GetCustomAttributes (false);
2205                         Assert.AreEqual (2, attrs.Length, "#A1");
2206                         Assert.IsTrue (HasAttribute (attrs, typeof (FooAttribute)), "#A2");
2207                         Assert.IsTrue (HasAttribute (attrs, typeof (VolatileModifier)), "#A3");
2208
2209                         attrs = typeof (BA).GetCustomAttributes (false);
2210                         Assert.AreEqual (1, attrs.Length, "#B1");
2211                         Assert.AreEqual (typeof (BarAttribute), attrs [0].GetType (), "#B2");
2212
2213                         attrs = typeof (BA).GetCustomAttributes (true);
2214                         Assert.AreEqual (2, attrs.Length, "#C1");
2215                         Assert.IsTrue (HasAttribute (attrs, typeof (BarAttribute)), "#C2");
2216                         Assert.IsTrue (HasAttribute (attrs, typeof (VolatileModifier)), "#C3");
2217
2218                         attrs = typeof (CA).GetCustomAttributes (false);
2219                         Assert.AreEqual (0, attrs.Length, "#D");
2220
2221                         attrs = typeof (CA).GetCustomAttributes (true);
2222                         Assert.AreEqual (1, attrs.Length, "#E1");
2223                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#E2");
2224                 }
2225
2226                 static bool HasAttribute (object [] attrs, Type attributeType)
2227                 {
2228                         foreach (object attr in attrs)
2229                                 if (attr.GetType () == attributeType)
2230                                         return true;
2231                         return false;
2232                 }
2233
2234                 [Test]
2235                 public void GetCustomAttributes_Type ()
2236                 {
2237                         object [] attrs = null;
2238
2239                         attrs = typeof (A).GetCustomAttributes (
2240                                 typeof (VolatileModifier), false);
2241                         Assert.AreEqual (1, attrs.Length, "#A1");
2242                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#A2");
2243                         attrs = typeof (A).GetCustomAttributes (
2244                                 typeof (VolatileModifier), true);
2245                         Assert.AreEqual (1, attrs.Length, "#A3");
2246                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#A4");
2247
2248                         attrs = typeof (A).GetCustomAttributes (
2249                                 typeof (NemerleAttribute), false);
2250                         Assert.AreEqual (1, attrs.Length, "#B1");
2251                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#B2");
2252                         attrs = typeof (A).GetCustomAttributes (
2253                                 typeof (NemerleAttribute), true);
2254                         Assert.AreEqual (1, attrs.Length, "#B3");
2255                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#B4");
2256
2257                         attrs = typeof (A).GetCustomAttributes (
2258                                 typeof (FooAttribute), false);
2259                         Assert.AreEqual (1, attrs.Length, "#C1");
2260                         Assert.AreEqual (typeof (FooAttribute), attrs [0].GetType (), "#C2");
2261                         attrs = typeof (A).GetCustomAttributes (
2262                                 typeof (FooAttribute), false);
2263                         Assert.AreEqual (1, attrs.Length, "#C3");
2264                         Assert.AreEqual (typeof (FooAttribute), attrs [0].GetType (), "#C4");
2265
2266                         attrs = typeof (BA).GetCustomAttributes (
2267                                 typeof (VolatileModifier), false);
2268                         Assert.AreEqual (0, attrs.Length, "#D1");
2269                         attrs = typeof (BA).GetCustomAttributes (
2270                                 typeof (VolatileModifier), true);
2271                         Assert.AreEqual (1, attrs.Length, "#D2");
2272                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#D3");
2273
2274                         attrs = typeof (BA).GetCustomAttributes (
2275                                 typeof (NemerleAttribute), false);
2276                         Assert.AreEqual (0, attrs.Length, "#E1");
2277                         attrs = typeof (BA).GetCustomAttributes (
2278                                 typeof (NemerleAttribute), true);
2279                         Assert.AreEqual (1, attrs.Length, "#E2");
2280                         Assert.AreEqual (typeof (VolatileModifier), attrs [0].GetType (), "#E3");
2281
2282                         attrs = typeof (BA).GetCustomAttributes (
2283                                 typeof (FooAttribute), false);
2284                         Assert.AreEqual (1, attrs.Length, "#F1");
2285                         Assert.AreEqual (typeof (BarAttribute), attrs [0].GetType (), "#F2");
2286                         attrs = typeof (BA).GetCustomAttributes (
2287                                 typeof (FooAttribute), true);
2288                         Assert.AreEqual (1, attrs.Length, "#F3");
2289                         Assert.AreEqual (typeof (BarAttribute), attrs [0].GetType (), "#F4");
2290
2291                         attrs = typeof (bug82431A1).GetCustomAttributes (
2292                                 typeof (InheritAttribute), false);
2293                         Assert.AreEqual (1, attrs.Length, "#G1");
2294                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#G2");
2295                         attrs = typeof (bug82431A1).GetCustomAttributes (
2296                                 typeof (InheritAttribute), true);
2297                         Assert.AreEqual (1, attrs.Length, "#G3");
2298                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#G4");
2299
2300                         attrs = typeof (bug82431A1).GetCustomAttributes (
2301                                 typeof (NotInheritAttribute), false);
2302                         Assert.AreEqual (1, attrs.Length, "#H1");
2303                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#H2");
2304                         attrs = typeof (bug82431A1).GetCustomAttributes (
2305                                 typeof (InheritAttribute), true);
2306                         Assert.AreEqual (1, attrs.Length, "#H3");
2307                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#H4");
2308
2309                         attrs = typeof (bug82431A2).GetCustomAttributes (
2310                                 typeof (InheritAttribute), false);
2311                         Assert.AreEqual (0, attrs.Length, "#I1");
2312                         attrs = typeof (bug82431A2).GetCustomAttributes (
2313                                 typeof (InheritAttribute), true);
2314                         Assert.AreEqual (0, attrs.Length, "#I2");
2315
2316                         attrs = typeof (bug82431A2).GetCustomAttributes (
2317                                 typeof (NotInheritAttribute), false);
2318                         Assert.AreEqual (0, attrs.Length, "#J1");
2319                         attrs = typeof (bug82431A2).GetCustomAttributes (
2320                                 typeof (NotInheritAttribute), true);
2321                         Assert.AreEqual (0, attrs.Length, "#J2");
2322
2323                         attrs = typeof (bug82431A3).GetCustomAttributes (
2324                                 typeof (InheritAttribute), false);
2325                         Assert.AreEqual (2, attrs.Length, "#K1");
2326                         Assert.IsTrue (HasAttribute (attrs, typeof (InheritAttribute)), "#K2");
2327                         Assert.IsTrue (HasAttribute (attrs, typeof (NotInheritAttribute)), "#K3");
2328                         attrs = typeof (bug82431A3).GetCustomAttributes (
2329                                 typeof (InheritAttribute), true);
2330                         Assert.AreEqual (2, attrs.Length, "#K4");
2331                         Assert.IsTrue (HasAttribute (attrs, typeof (InheritAttribute)), "#K5");
2332                         Assert.IsTrue (HasAttribute (attrs, typeof (NotInheritAttribute)), "#K6");
2333
2334                         attrs = typeof (bug82431A3).GetCustomAttributes (
2335                                 typeof (NotInheritAttribute), false);
2336                         Assert.AreEqual (1, attrs.Length, "#L1");
2337                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#L2");
2338                         attrs = typeof (bug82431A3).GetCustomAttributes (
2339                                 typeof (NotInheritAttribute), true);
2340                         Assert.AreEqual (1, attrs.Length, "#L3");
2341                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#L4");
2342
2343                         attrs = typeof (bug82431B1).GetCustomAttributes (
2344                                 typeof (InheritAttribute), false);
2345                         Assert.AreEqual (1, attrs.Length, "#M1");
2346                         Assert.AreEqual (typeof (InheritAttribute), attrs [0].GetType (), "#M2");
2347                         attrs = typeof (bug82431B1).GetCustomAttributes (
2348                                 typeof (InheritAttribute), true);
2349                         Assert.AreEqual (1, attrs.Length, "#M3");
2350                         Assert.AreEqual (typeof (InheritAttribute), attrs [0].GetType (), "#M4");
2351
2352                         attrs = typeof (bug82431B1).GetCustomAttributes (
2353                                 typeof (NotInheritAttribute), false);
2354                         Assert.AreEqual (0, attrs.Length, "#N1");
2355                         attrs = typeof (bug82431B1).GetCustomAttributes (
2356                                 typeof (NotInheritAttribute), true);
2357                         Assert.AreEqual (0, attrs.Length, "#N2");
2358
2359                         attrs = typeof (bug82431B2).GetCustomAttributes (
2360                                 typeof (InheritAttribute), false);
2361                         Assert.AreEqual (0, attrs.Length, "#O1");
2362                         attrs = typeof (bug82431B2).GetCustomAttributes (
2363                                 typeof (InheritAttribute), true);
2364                         Assert.AreEqual (1, attrs.Length, "#O2");
2365                         Assert.AreEqual (typeof (InheritAttribute), attrs [0].GetType (), "#O3");
2366
2367                         attrs = typeof (bug82431B2).GetCustomAttributes (
2368                                 typeof (NotInheritAttribute), false);
2369                         Assert.AreEqual (0, attrs.Length, "#P1");
2370                         attrs = typeof (bug82431B2).GetCustomAttributes (
2371                                 typeof (NotInheritAttribute), true);
2372                         Assert.AreEqual (0, attrs.Length, "#P2");
2373
2374                         attrs = typeof (bug82431B3).GetCustomAttributes (
2375                                 typeof (InheritAttribute), false);
2376                         Assert.AreEqual (1, attrs.Length, "#Q1");
2377                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#Q2");
2378                         attrs = typeof (bug82431B3).GetCustomAttributes (
2379                                 typeof (InheritAttribute), true);
2380                         Assert.AreEqual (2, attrs.Length, "#Q3");
2381                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#Q4");
2382                         Assert.AreEqual (typeof (InheritAttribute), attrs [1].GetType (), "#Q5");
2383
2384                         attrs = typeof (bug82431B3).GetCustomAttributes (
2385                                 typeof (NotInheritAttribute), false);
2386                         Assert.AreEqual (1, attrs.Length, "#R1");
2387                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#R2");
2388                         attrs = typeof (bug82431B3).GetCustomAttributes (
2389                                 typeof (NotInheritAttribute), true);
2390                         Assert.AreEqual (1, attrs.Length, "#R3");
2391                         Assert.AreEqual (typeof (NotInheritAttribute), attrs [0].GetType (), "#R4");
2392
2393                         attrs = typeof (bug82431B4).GetCustomAttributes (
2394                                 typeof (InheritAttribute), false);
2395                         Assert.AreEqual (0, attrs.Length, "#S1");
2396                         attrs = typeof (bug82431B4).GetCustomAttributes (
2397                                 typeof (InheritAttribute), true);
2398                         Assert.AreEqual (1, attrs.Length, "#S2");
2399                         Assert.AreEqual (typeof (InheritAttribute), attrs [0].GetType (), "#S3");
2400
2401                         attrs = typeof (bug82431B4).GetCustomAttributes (
2402                                 typeof (NotInheritAttribute), false);
2403                         Assert.AreEqual (0, attrs.Length, "#T1");
2404                         attrs = typeof (bug82431B4).GetCustomAttributes (
2405                                 typeof (NotInheritAttribute), true);
2406                         Assert.AreEqual (0, attrs.Length, "#T2");
2407
2408                         attrs = typeof (A).GetCustomAttributes (
2409                                 typeof (string), false);
2410                         Assert.AreEqual (0, attrs.Length, "#U1");
2411                         attrs = typeof (A).GetCustomAttributes (
2412                                 typeof (string), true);
2413                         Assert.AreEqual (0, attrs.Length, "#U2");
2414                 }
2415
2416                 [Test] // bug #76150
2417                 public void IsDefined ()
2418                 {
2419                         Assert.IsTrue (typeof (A).IsDefined (typeof (NemerleAttribute), false), "#A1");
2420                         Assert.IsTrue (typeof (A).IsDefined (typeof (VolatileModifier), false), "#A2");
2421                         Assert.IsTrue (typeof (A).IsDefined (typeof (FooAttribute), false), "#A3");
2422                         Assert.IsFalse (typeof (A).IsDefined (typeof (BarAttribute), false), "#A4");
2423
2424                         Assert.IsFalse (typeof (BA).IsDefined (typeof (NemerleAttribute), false), "#B1");
2425                         Assert.IsFalse (typeof (BA).IsDefined (typeof (VolatileModifier), false), "#B2");
2426                         Assert.IsTrue (typeof (BA).IsDefined (typeof (FooAttribute), false), "#B3");
2427                         Assert.IsTrue (typeof (BA).IsDefined (typeof (BarAttribute), false), "#B4");
2428                         Assert.IsFalse (typeof (BA).IsDefined (typeof (string), false), "#B5");
2429                         Assert.IsFalse (typeof (BA).IsDefined (typeof (int), false), "#B6");
2430                         Assert.IsTrue (typeof (BA).IsDefined (typeof (NemerleAttribute), true), "#B7");
2431                         Assert.IsTrue (typeof (BA).IsDefined (typeof (VolatileModifier), true), "#B8");
2432                         Assert.IsTrue (typeof (BA).IsDefined (typeof (FooAttribute), true), "#B9");
2433                         Assert.IsTrue (typeof (BA).IsDefined (typeof (BarAttribute), true), "#B10");
2434                         Assert.IsFalse (typeof (BA).IsDefined (typeof (string), true), "#B11");
2435                         Assert.IsFalse (typeof (BA).IsDefined (typeof (int), true), "#B12");
2436                 }
2437
2438                 [Test]
2439                 public void IsDefined_AttributeType_Null ()
2440                 {
2441                         try {
2442                                 typeof (BA).IsDefined ((Type) null, false);
2443                                 Assert.Fail ("#1");
2444                         } catch (ArgumentNullException ex) {
2445                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2446                                 Assert.IsNull (ex.InnerException, "#3");
2447                                 Assert.IsNotNull (ex.Message, "#4");
2448                                 Assert.IsNotNull (ex.ParamName, "#5");
2449                                 Assert.AreEqual ("attributeType", ex.ParamName, "#6");
2450                         }
2451                 }
2452
2453                 [Test] // bug #82431
2454                 [Category ("NotWorking")]
2455                 public void IsDefined_Inherited ()
2456                 {
2457                         Assert.IsFalse (typeof (CA).IsDefined (typeof (NemerleAttribute), false), "#C1");
2458                         Assert.IsFalse (typeof (CA).IsDefined (typeof (VolatileModifier), false), "#C2");
2459                         Assert.IsFalse (typeof (CA).IsDefined (typeof (FooAttribute), false), "#C3");
2460                         Assert.IsFalse (typeof (CA).IsDefined (typeof (BarAttribute), false), "#C4");
2461                         Assert.IsTrue (typeof (CA).IsDefined (typeof (NemerleAttribute), true), "#C5");
2462                         Assert.IsTrue (typeof (CA).IsDefined (typeof (VolatileModifier), true), "#C6");
2463                         Assert.IsFalse (typeof (CA).IsDefined (typeof (FooAttribute), true), "#C7");
2464                         Assert.IsFalse (typeof (CA).IsDefined (typeof (BarAttribute), true), "#C8");
2465
2466                         Assert.IsFalse (typeof (BBA).IsDefined (typeof (NemerleAttribute), false), "#D1");
2467                         Assert.IsFalse (typeof (BBA).IsDefined (typeof (VolatileModifier), false), "#D2");
2468                         Assert.IsFalse (typeof (BBA).IsDefined (typeof (FooAttribute), false), "#D3");
2469                         Assert.IsFalse (typeof (BBA).IsDefined (typeof (BarAttribute), false), "#D4");
2470                         Assert.IsTrue (typeof (BBA).IsDefined (typeof (NemerleAttribute), true), "#D5");
2471                         Assert.IsTrue (typeof (BBA).IsDefined (typeof (VolatileModifier), true), "#D6");
2472                         Assert.IsTrue (typeof (BBA).IsDefined (typeof (FooAttribute), true), "#D7");
2473                         Assert.IsTrue (typeof (BBA).IsDefined (typeof (BarAttribute), true), "#D8");
2474
2475                         Assert.IsTrue (typeof (bug82431A1).IsDefined (typeof (InheritAttribute), false), "#E1");
2476                         Assert.IsTrue (typeof (bug82431A1).IsDefined (typeof (NotInheritAttribute), false), "#E2");
2477                         Assert.IsTrue (typeof (bug82431A1).IsDefined (typeof (InheritAttribute), true), "#E3");
2478                         Assert.IsTrue (typeof (bug82431A1).IsDefined (typeof (NotInheritAttribute), true), "#E4");
2479
2480                         Assert.IsFalse (typeof (bug82431A2).IsDefined (typeof (InheritAttribute), false), "#F1");
2481                         Assert.IsFalse (typeof (bug82431A2).IsDefined (typeof (NotInheritAttribute), false), "#F2");
2482                         Assert.IsFalse (typeof (bug82431A2).IsDefined (typeof (InheritAttribute), true), "#F3");
2483                         Assert.IsFalse (typeof (bug82431A2).IsDefined (typeof (NotInheritAttribute), true), "#F4");
2484
2485                         Assert.IsTrue (typeof (bug82431A3).IsDefined (typeof (InheritAttribute), false), "#G1");
2486                         Assert.IsTrue (typeof (bug82431A3).IsDefined (typeof (NotInheritAttribute), false), "#G2");
2487                         Assert.IsTrue (typeof (bug82431A3).IsDefined (typeof (InheritAttribute), true), "#G3");
2488                         Assert.IsTrue (typeof (bug82431A3).IsDefined (typeof (NotInheritAttribute), true), "#G4");
2489
2490                         Assert.IsTrue (typeof (bug82431B1).IsDefined (typeof (InheritAttribute), false), "#H1");
2491                         Assert.IsFalse (typeof (bug82431B1).IsDefined (typeof (NotInheritAttribute), false), "#H2");
2492                         Assert.IsTrue (typeof (bug82431B1).IsDefined (typeof (InheritAttribute), true), "#H3");
2493                         Assert.IsFalse (typeof (bug82431B1).IsDefined (typeof (NotInheritAttribute), true), "#H4");
2494
2495                         Assert.IsFalse (typeof (bug82431B2).IsDefined (typeof (InheritAttribute), false), "#I1");
2496                         Assert.IsFalse (typeof (bug82431B2).IsDefined (typeof (NotInheritAttribute), false), "#I2");
2497                         Assert.IsTrue (typeof (bug82431B2).IsDefined (typeof (InheritAttribute), true), "#I3");
2498                         Assert.IsFalse (typeof (bug82431B2).IsDefined (typeof (NotInheritAttribute), true), "#I4");
2499
2500                         Assert.IsTrue (typeof (bug82431B3).IsDefined (typeof (InheritAttribute), false), "#J1");
2501                         Assert.IsTrue (typeof (bug82431B3).IsDefined (typeof (NotInheritAttribute), false), "#J2");
2502                         Assert.IsTrue (typeof (bug82431B3).IsDefined (typeof (InheritAttribute), true), "#J3");
2503                         Assert.IsTrue (typeof (bug82431B3).IsDefined (typeof (NotInheritAttribute), true), "#J4");
2504
2505                         Assert.IsFalse (typeof (bug82431B4).IsDefined (typeof (InheritAttribute), false), "#K2");
2506                         Assert.IsFalse (typeof (bug82431B4).IsDefined (typeof (NotInheritAttribute), false), "#K2");
2507                         Assert.IsTrue (typeof (bug82431B4).IsDefined (typeof (InheritAttribute), true), "#K3");
2508                         Assert.IsFalse (typeof (bug82431B4).IsDefined (typeof (NotInheritAttribute), true), "#K4");
2509                 }
2510
2511                 [Test] // GetType (String)
2512                 public void GetType1_TypeName_Null ()
2513                 {
2514                         try {
2515                                 Type.GetType ((string) null);
2516                                 Assert.Fail ("#1");
2517                         } catch (ArgumentNullException ex) {
2518                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2519                                 Assert.IsNull (ex.InnerException, "#3");
2520                                 Assert.IsNotNull (ex.Message, "#4");
2521                                 Assert.AreEqual ("TypeName", ex.ParamName, "#5");
2522                         }
2523                 }
2524
2525                 [Test] // GetType (String, Boolean)
2526                 public void GetType2_TypeName_Null ()
2527                 {
2528                         try {
2529                                 Type.GetType ((string) null, false);
2530                                 Assert.Fail ("#1");
2531                         } catch (ArgumentNullException ex) {
2532                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2533                                 Assert.IsNull (ex.InnerException, "#3");
2534                                 Assert.IsNotNull (ex.Message, "#4");
2535                                 Assert.AreEqual ("TypeName", ex.ParamName, "#5");
2536                         }
2537                 }
2538
2539                 [Test] // GetType (String, Boolean, Boolean)
2540                 public void GetType3_TypeName_Null ()
2541                 {
2542                         try {
2543                                 Type.GetType ((string) null, false, false);
2544                                 Assert.Fail ("#1");
2545                         } catch (ArgumentNullException ex) {
2546                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2547                                 Assert.IsNull (ex.InnerException, "#3");
2548                                 Assert.IsNotNull (ex.Message, "#4");
2549                                 Assert.AreEqual ("TypeName", ex.ParamName, "#5");
2550                         }
2551                 }
2552
2553                 [Test]
2554                 public void GetTypeArray_Args_Null ()
2555                 {
2556                         try {
2557                                 Type.GetTypeArray ((object []) null);
2558                                 Assert.Fail ("#1");
2559                         } catch (ArgumentNullException ex) {
2560                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2561                                 Assert.IsNull (ex.InnerException, "#3");
2562                                 Assert.IsNotNull (ex.Message, "#4");
2563                                 Assert.AreEqual ("args", ex.ParamName, "#5");
2564                         }
2565                 }
2566
2567                 [Test]
2568                 public void GetTypeCode ()
2569                 {
2570                         Assert.AreEqual (TypeCode.Boolean, Type.GetTypeCode (typeof (bool)), "#1");
2571                         Assert.AreEqual (TypeCode.Byte, Type.GetTypeCode (typeof (byte)), "#2");
2572                         Assert.AreEqual (TypeCode.Char, Type.GetTypeCode (typeof (char)), "#3");
2573                         Assert.AreEqual (TypeCode.DateTime, Type.GetTypeCode (typeof (DateTime)), "#4");
2574                         Assert.AreEqual (TypeCode.DBNull, Type.GetTypeCode (typeof (DBNull)), "#5");
2575                         Assert.AreEqual (TypeCode.Decimal, Type.GetTypeCode (typeof (decimal)), "#6");
2576                         Assert.AreEqual (TypeCode.Double, Type.GetTypeCode (typeof (double)), "#7");
2577                         Assert.AreEqual (TypeCode.Empty, Type.GetTypeCode (null), "#8");
2578                         Assert.AreEqual (TypeCode.Int16, Type.GetTypeCode (typeof (short)), "#9");
2579                         Assert.AreEqual (TypeCode.Int32, Type.GetTypeCode (typeof (int)), "#10");
2580                         Assert.AreEqual (TypeCode.Int64, Type.GetTypeCode (typeof (long)), "#11");
2581                         Assert.AreEqual (TypeCode.Object, Type.GetTypeCode (typeof (TakesInt)), "#12");
2582                         Assert.AreEqual (TypeCode.SByte, Type.GetTypeCode (typeof (sbyte)), "#13");
2583                         Assert.AreEqual (TypeCode.Single, Type.GetTypeCode (typeof (float)), "#14");
2584                         Assert.AreEqual (TypeCode.String, Type.GetTypeCode (typeof (string)), "#15");
2585                         Assert.AreEqual (TypeCode.UInt16, Type.GetTypeCode (typeof (ushort)), "#16");
2586                         Assert.AreEqual (TypeCode.UInt32, Type.GetTypeCode (typeof (uint)), "#17");
2587                         Assert.AreEqual (TypeCode.UInt64, Type.GetTypeCode (typeof (ulong)), "#18");
2588                 }
2589
2590                 [Test]
2591                 public void GetTypeFromHandle_Handle_Zero ()
2592                 {
2593                         RuntimeTypeHandle handle = new RuntimeTypeHandle ();
2594
2595                         Assert.IsNull (Type.GetTypeFromHandle (handle));
2596                 }
2597
2598                 [Test]
2599                 public void GetTypeHandle_O_Null ()
2600                 {
2601                         try {
2602                                 Type.GetTypeHandle (null);
2603                                 Assert.Fail ("#1");
2604                         } catch (ArgumentNullException ex) {
2605                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2606                                 Assert.IsNull (ex.InnerException, "#3");
2607                                 Assert.IsNotNull (ex.Message, "#4");
2608                                 Assert.IsNull (ex.ParamName, "#5");
2609                         }
2610                 }
2611
2612                 [Test] // GetConstructor (Type [])
2613                 public void GetConstructor1 ()
2614                 {
2615                         Type type;
2616                         ConstructorInfo ctor;
2617
2618                         type = typeof (CtorsA);
2619                         ctor = type.GetConstructor (Type.EmptyTypes);
2620                         Assert.IsNotNull (ctor, "#A1");
2621                         Assert.AreEqual (0, ctor.GetParameters ().Length, "#A2");
2622                         Assert.IsFalse (ctor.IsStatic, "#A3");
2623                         Assert.IsTrue (ctor.IsPublic, "#A4");
2624                         Assert.AreEqual (".ctor", ctor.Name, "#A5");
2625
2626                         type = typeof (CtorsB);
2627                         ctor = type.GetConstructor (Type.EmptyTypes);
2628                         Assert.IsNotNull (ctor, "#B1");
2629                         Assert.AreEqual (0, ctor.GetParameters ().Length, "#B2");
2630                         Assert.IsFalse (ctor.IsStatic, "#B3");
2631                         Assert.IsTrue (ctor.IsPublic, "#B4");
2632                         Assert.AreEqual (".ctor", ctor.Name, "#B5");
2633
2634                         type = typeof (CtorsC);
2635                         ctor = type.GetConstructor (Type.EmptyTypes);
2636                         Assert.IsNull (ctor, "#C");
2637
2638                         type = typeof (CtorsC);
2639                         ctor = type.GetConstructor (new Type [] { typeof (int) });
2640                         Assert.IsNotNull (ctor, "#D1");
2641                         Assert.AreEqual (1, ctor.GetParameters ().Length, "#D2");
2642                         Assert.IsFalse (ctor.IsStatic, "#D3");
2643                         Assert.IsTrue (ctor.IsPublic, "#D4");
2644                         Assert.AreEqual (".ctor", ctor.Name, "#D5");
2645                 }
2646
2647                 [Test] // GetConstructor (Type [])
2648                 public void GetConstructor1_Types_Null ()
2649                 {
2650                         try {
2651                                 typeof (BindingFlags).GetConstructor (null);
2652                                 Assert.Fail ("#1");
2653                         } catch (ArgumentNullException ex) {
2654                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2655                                 Assert.IsNull (ex.InnerException, "#3");
2656                                 Assert.IsNotNull (ex.Message, "#4");
2657                                 Assert.IsNotNull (ex.ParamName, "#5");
2658                                 Assert.AreEqual ("types", ex.ParamName, "#6");
2659                         }
2660                 }
2661
2662                 [Test] // GetConstructor (Type [])
2663                 public void GetConstructor1_Types_ItemNull ()
2664                 {
2665                         Type type = typeof (BindingFlags);
2666                         try {
2667                                 type.GetConstructor (new Type[1] { null });
2668                                 Assert.Fail ("#A1");
2669                         } catch (ArgumentNullException ex) {
2670                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#A2");
2671                                 Assert.IsNull (ex.InnerException, "#A3");
2672                                 Assert.IsNotNull (ex.Message, "#A4");
2673                                 Assert.IsNotNull (ex.ParamName, "#A5");
2674                                 Assert.AreEqual ("types", ex.ParamName, "#A6");
2675                         }
2676
2677                         type = typeof (TakesInt);
2678                         try {
2679                                 type.GetConstructor (new Type [1] { null });
2680                                 Assert.Fail ("#B1");
2681                         } catch (ArgumentNullException ex) {
2682                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#B2");
2683                                 Assert.IsNull (ex.InnerException, "#B3");
2684                                 Assert.IsNotNull (ex.Message, "#B4");
2685                                 Assert.IsNotNull (ex.ParamName, "#B5");
2686                                 Assert.AreEqual ("types", ex.ParamName, "#B6");
2687                         }
2688                 }
2689
2690                 [Test] // GetConstructor (BindingFlags, Binder, Type [], ParameterModifier [])
2691                 public void GetConstructor2_Types_ItemNull ()
2692                 {
2693                         Type type = typeof (BindingFlags);
2694                         try {
2695                                 type.GetConstructor (BindingFlags.Default, null,
2696                                         new Type[1] { null }, null);
2697                                 Assert.Fail ("#1");
2698                         } catch (ArgumentNullException ex) {
2699                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2700                                 Assert.IsNull (ex.InnerException, "#3");
2701                                 Assert.IsNotNull (ex.Message, "#4");
2702                                 Assert.IsNotNull (ex.ParamName, "#5");
2703                                 Assert.AreEqual ("types", ex.ParamName, "#6");
2704                         }
2705                 }
2706
2707                 [Test] // GetConstructor (BindingFlags, Binder, CallingConventions, Type [], ParameterModifier [])
2708                 public void GetConstructor3_Types_ItemNull ()
2709                 {
2710                         Type type = typeof (BindingFlags);
2711                         try {
2712                                 type.GetConstructor (BindingFlags.Default,
2713                                         null, CallingConventions.Any,
2714                                         new Type[1] { null }, null);
2715                                 Assert.Fail ("#1");
2716                         } catch (ArgumentNullException ex) {
2717                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
2718                                 Assert.IsNull (ex.InnerException, "#3");
2719                                 Assert.IsNotNull (ex.Message, "#4");
2720                                 Assert.IsNotNull (ex.ParamName, "#5");
2721                                 Assert.AreEqual ("types", ex.ParamName, "#6");
2722                         }
2723                 }
2724
2725                 [Test]
2726                 public void GetMethod_Bug77367 ()
2727                 {
2728                         MethodInfo i = typeof (Bug77367).GetMethod ("Run", Type.EmptyTypes);
2729                         Assert.IsNull (i);
2730                 }
2731
2732 #if !TARGET_JVM && !MOBILE // Reflection.Emit is not supported for TARGET_JVM
2733                 [Test]
2734                 public void EqualsUnderlyingType ()
2735                 {
2736                         AssemblyBuilderAccess access = AssemblyBuilderAccess.RunAndSave;
2737                         TypeAttributes attribs = TypeAttributes.Public;
2738
2739                         AssemblyName name = new AssemblyName ();
2740                         name.Name = "enumtest";
2741                         AssemblyBuilder assembly = 
2742                                 AppDomain.CurrentDomain.DefineDynamicAssembly (
2743                                         name, access);
2744
2745                         ModuleBuilder module = assembly.DefineDynamicModule 
2746                                 ("m", "enumtest.dll");
2747                         EnumBuilder e = module.DefineEnum ("E", attribs, typeof (int));
2748
2749                         Assert.IsTrue (typeof (int).Equals (e));
2750                 }
2751 #endif // TARGET_JVM
2752
2753                 [Test]
2754                 public void Equals_Type_Null ()
2755                 {
2756                         Assert.IsFalse (typeof (int).Equals ((Type) null), "#1");
2757                         Assert.IsFalse (typeof (int).Equals ((object) null), "#2");
2758                 }
2759
2760                 [Test]
2761                 public void GetElementType_Bug63841 ()
2762                 {
2763                         Assert.IsNull (typeof (TheEnum).GetElementType (), "#1");
2764                 }
2765
2766                 [Test]
2767                 public void FullNameGenerics ()
2768                 {
2769                         Type fooType = typeof (Foo<>);
2770                         FieldInfo [] fields = fooType.GetFields ();
2771
2772                         Assert.AreEqual (1, fields.Length, "#0");
2773
2774                         Assert.IsNotNull (fooType.FullName, "#1");
2775                         Assert.IsNotNull (fooType.AssemblyQualifiedName, "#1a");
2776
2777                         FieldInfo field = fooType.GetField ("Whatever");
2778                         Assert.IsNotNull (field, "#2");
2779                         Assert.AreEqual (field, fields [0], "#2a");
2780                         Assert.IsNull (field.FieldType.FullName, "#3");
2781                         Assert.IsNull (field.FieldType.AssemblyQualifiedName, "#3a");
2782                         Assert.IsNotNull (field.FieldType.ToString (), "#4");
2783
2784                         PropertyInfo prop = fooType.GetProperty ("Test");
2785                         Assert.IsNotNull (prop, "#5");
2786                         Assert.IsNull (prop.PropertyType.FullName, "#6");
2787                         Assert.IsNull (prop.PropertyType.AssemblyQualifiedName, "#6a");
2788                         Assert.IsNotNull (prop.PropertyType.ToString (), "#7");
2789
2790                         MethodInfo method = fooType.GetMethod("Execute");
2791                         Assert.IsNotNull (method, "#8");
2792                         Assert.IsNull (method.ReturnType.FullName, "#9");
2793                         Assert.IsNull (method.ReturnType.AssemblyQualifiedName, "#9a");
2794                         Assert.IsNotNull (method.ReturnType.ToString (), "#10");
2795
2796                         ParameterInfo[] parameters = method.GetParameters();
2797                         Assert.AreEqual (1, parameters.Length, "#11");
2798                         Assert.IsNull (parameters[0].ParameterType.FullName, "#12");
2799                         Assert.IsNull (parameters[0].ParameterType.AssemblyQualifiedName, "#12a");
2800                         Assert.IsNotNull (parameters[0].ParameterType.ToString (), "#13");
2801                 }
2802
2803                 [Test]
2804                 public void TypeParameterIsNotGeneric ()
2805                 {
2806                         Type fooType = typeof (Foo<>);
2807                         Type type_param = fooType.GetGenericArguments () [0];
2808                         Assert.IsTrue (type_param.IsGenericParameter);
2809                         Assert.IsFalse (type_param.IsGenericType);
2810                         Assert.IsFalse (type_param.IsGenericTypeDefinition);
2811
2812                         // LAMESPEC: MSDN claims that this should be false, but .NET v2.0.50727 says it's true
2813                         // http://msdn2.microsoft.com/en-us/library/system.type.isgenerictype.aspx
2814                         Assert.IsTrue (type_param.ContainsGenericParameters);
2815                 }
2816
2817                 [Test]
2818                 public void IsAssignable ()
2819                 {
2820                         Type foo_type = typeof (Foo<>);
2821                         Type foo_int_type = typeof (Foo<int>);
2822                         Assert.IsFalse (foo_type.IsAssignableFrom (foo_int_type), "Foo<int> -!-> Foo<>");
2823                         Assert.IsFalse (foo_int_type.IsAssignableFrom (foo_type), "Foo<> -!-> Foo<int>");
2824
2825                         Type ibar_short_type = typeof (IBar<short>);
2826                         Type ibar_int_type = typeof (IBar<int>);
2827                         Type baz_short_type = typeof (Baz<short>);
2828                         Type baz_int_type = typeof (Baz<int>);
2829
2830                         Assert.IsTrue (ibar_int_type.IsAssignableFrom (baz_int_type), "Baz<int> -> IBar<int>");
2831                         Assert.IsTrue (ibar_short_type.IsAssignableFrom (baz_short_type), "Baz<short> -> IBar<short>");
2832
2833                         Assert.IsFalse (ibar_int_type.IsAssignableFrom (baz_short_type), "Baz<short> -!-> IBar<int>");
2834                         Assert.IsFalse (ibar_short_type.IsAssignableFrom (baz_int_type), "Baz<int> -!-> IBar<short>");
2835
2836                         // Nullable tests
2837                         Assert.IsTrue (typeof (Nullable<int>).IsAssignableFrom (typeof (int)));
2838                         Assert.IsFalse (typeof (int).IsAssignableFrom (typeof (Nullable<int>)));
2839                         Assert.IsTrue (typeof (Nullable<FooStruct>).IsAssignableFrom (typeof (FooStruct)));
2840                 }
2841
2842                 [Test]
2843                 public void IsInstanceOf ()
2844                 {
2845                         Assert.IsTrue (typeof (Nullable<int>).IsInstanceOfType (5));
2846                 }
2847
2848                 [Test]
2849                 public void IsInstanceOfArrayOfNullable ()
2850                 {
2851                         Assert.IsTrue (typeof (Nullable<int>[]).IsInstanceOfType (new Nullable<int> [0]));
2852                 }
2853
2854                 [Test]
2855                 public void IsInstanceOfType_Null ()
2856                 {
2857                         Assert.IsFalse (typeof (int).IsInstanceOfType (null), "int");
2858                         Assert.IsFalse (typeof (object).IsInstanceOfType (null), "object");
2859                         Assert.IsFalse (typeof (int?).IsInstanceOfType (null), "int?");
2860                 }
2861
2862                 [Test]
2863                 public void ByrefType ()
2864                 {
2865                         Type foo_type = typeof (Foo<>);
2866                         Type type_param = foo_type.GetGenericArguments () [0];
2867                         Type byref_type_param = type_param.MakeByRefType ();
2868                         Assert.IsFalse (byref_type_param.IsGenericParameter);
2869                         Assert.IsNull (byref_type_param.DeclaringType);
2870                 }
2871
2872                 [Test]
2873                 [ExpectedException (typeof (TypeLoadException))]
2874                 public void MakeByRefByRef ()
2875                 {
2876                         typeof (int).MakeByRefType ().MakeByRefType ();
2877                 }
2878
2879                 [Test]
2880                 public void MakeArrayTypeTest ()
2881                 {
2882                         // This should not crash:
2883                         typeof (void).MakeArrayType ();
2884                 }
2885                 
2886
2887                 [ComVisible (true)]
2888                 public class ComFoo<T> {
2889                 }
2890
2891                 [Test]
2892                 public void GetCustomAttributesGenericInstance ()
2893                 {
2894                         Assert.AreEqual (1, typeof (ComFoo<int>).GetCustomAttributes (typeof (ComVisibleAttribute), true).Length);
2895                 }
2896
2897                 interface ByRef1<T> { void f (ref T t); }
2898                 interface ByRef2 { void f<T> (ref T t); }
2899
2900                 interface ByRef3<T> where T:struct { void f (ref T? t); }
2901                 interface ByRef4 { void f<T> (ref T? t) where T:struct; }
2902
2903                 void CheckGenericByRef (Type t)
2904                 {
2905                         string name = t.Name;
2906                         t = t.GetMethod ("f").GetParameters () [0].ParameterType;
2907
2908                         Assert.IsFalse (t.IsGenericType, name);
2909                         Assert.IsFalse (t.IsGenericTypeDefinition, name);
2910                         Assert.IsFalse (t.IsGenericParameter, name);
2911                 }
2912
2913                 [Test]
2914                 public void GenericByRef ()
2915                 {
2916                         CheckGenericByRef (typeof (ByRef1<>));
2917                         CheckGenericByRef (typeof (ByRef2));
2918                         CheckGenericByRef (typeof (ByRef3<>));
2919                         CheckGenericByRef (typeof (ByRef4));
2920                 }
2921
2922                 public class Bug80242<T> {
2923                         public interface IFoo { }
2924                         public class Bar : IFoo { }
2925                         public class Baz : Bar { }
2926                 }
2927
2928                 [Test]
2929                 public void TestNestedTypes ()
2930                 {
2931                         Type t = typeof (Bug80242<object>);
2932                         Assert.IsFalse (t.IsGenericTypeDefinition);
2933                         foreach (Type u in t.GetNestedTypes ()) {
2934                                 Assert.IsTrue (u.IsGenericTypeDefinition, "{0} isn't a generic definition", u);
2935                                 Assert.AreEqual (u, u.GetGenericArguments () [0].DeclaringType);
2936                         }
2937                 }
2938
2939                 [Test] // bug #82211
2940                 public void GetMembers_GenericArgument ()
2941                 {
2942                         Type argType = typeof (ComFoo<>).GetGenericArguments () [0];
2943                         MemberInfo [] members = argType.GetMembers ();
2944                         Assert.IsNotNull (members, "#1");
2945                         Assert.AreEqual (4, members.Length, "#2");
2946                 }
2947
2948                 [Test]
2949                 [ExpectedException (typeof (ArgumentNullException))]
2950                 public void ReflectionOnlyGetTypeNullTypeName ()
2951                 {
2952                         Type.ReflectionOnlyGetType (null, false, false);
2953                 }
2954
2955                 [Test]
2956                 public void ReflectionOnlyGetTypeDoNotThrow ()
2957                 {
2958                         Assert.IsNull (Type.ReflectionOnlyGetType ("a, nonexistent.dll", false, false));
2959                 }
2960
2961                 [Test]
2962                 [ExpectedException (typeof (FileNotFoundException))]
2963                 public void ReflectionOnlyGetTypeThrow ()
2964                 {
2965                         Type.ReflectionOnlyGetType ("a, nonexistent.dll", true, false);
2966                 }
2967
2968                 [Test]
2969                 public void ReflectionOnlyGetType ()
2970                 {
2971                         Type t = Type.ReflectionOnlyGetType (typeof (int).AssemblyQualifiedName.ToString (), true, true);
2972                         Assert.AreEqual ("System.Int32", t.FullName);
2973                 }
2974
2975                 [Test]
2976 #if MONOTOUCH
2977                 [ExpectedException (typeof (NotSupportedException))]
2978 #endif
2979                 public void MakeGenericType_UserDefinedType ()
2980                 {
2981                         Type ut = new UserType (typeof (int));
2982                         Type t = typeof (Foo<>).MakeGenericType (ut);
2983                         Assert.IsTrue (t.IsGenericType, "#A1");
2984                         Assert.AreEqual (1, t.GetGenericArguments ().Length, "#A2");
2985
2986                         Type arg = t.GetGenericArguments () [0];
2987                         Assert.IsNotNull (arg, "#B1");
2988                         Assert.IsFalse (arg.IsGenericType, "#B2");
2989                         Assert.AreEqual (ut, arg, "#B3");
2990                 }
2991
2992                 [Category ("NotWorking")]
2993                 //We dont support instantiating a user type 
2994                 public void MakeGenericType_NestedUserDefinedType ()
2995                 {
2996                         Type ut = new UserType (new UserType (typeof (int)));
2997                         Type t = typeof (Foo<>).MakeGenericType (ut);
2998                         Assert.IsTrue (t.IsGenericType, "#A1");
2999                         Assert.AreEqual (1, t.GetGenericArguments ().Length, "#A2");
3000
3001                         Type arg = t.GetGenericArguments () [0];
3002                         Assert.IsNotNull (arg, "#B1");
3003                         Assert.IsFalse (arg.IsGenericType, "#B2");
3004                         Assert.AreEqual (ut, arg, "#B3");
3005                 }
3006                 
3007                 [Test]
3008                 [Category ("NotWorking")]
3009                 public void TestMakeGenericType_UserDefinedType_DotNet20SP1 () 
3010                 {
3011                         Type ut = new UserType(typeof(int));
3012                         Type t = typeof(Foo<>).MakeGenericType(ut);
3013                         Assert.IsTrue (t.IsGenericType, "#1");
3014
3015                         Assert.AreEqual (ut, t.GetGenericArguments()[0], "#2");
3016                 }
3017                 
3018                 [Test]
3019 #if MONOTOUCH
3020                 [ExpectedException (typeof (NotSupportedException))]
3021 #endif
3022                 public void MakeGenericType_BadUserType ()
3023                 {
3024                         Type ut = new UserType (null);
3025                         Type t = typeof (Foo<>).MakeGenericType (ut);
3026                         var g0 = t.GetGenericArguments () [0];
3027                         Assert.AreSame (g0, ut, "#1");
3028                 }
3029
3030                 [Test]
3031                 public void MakeGenericType_WrongNumOfArguments ()
3032                 {
3033                         try {
3034                                 Type t = typeof (Foo<,>).MakeGenericType (new Type [] { typeof (int) });
3035                                 Assert.Fail ("#1");
3036                         } catch (ArgumentException) {
3037                         }
3038                 }
3039
3040                 [AttributeUsage (AttributeTargets.All)]
3041                 public class DocAttribute : Attribute {
3042                         public DocAttribute (string docs) {}
3043                 }
3044                 
3045                 class GenericClassWithAttributes<[Doc ("T")] T, [Doc ("B")] B> 
3046                         where T : class, new ()
3047                         where B : Attribute
3048                 {
3049                         public T Bar { get{return null;}}
3050
3051                         public void M<[Doc ("X")] X> (X x)
3052                         {
3053                         }
3054                 }
3055         
3056                 [Test] //bug #377596
3057                 public void GetGenericArguments_ArgumentsHaveAttributes ()
3058                 {
3059                         Type type = typeof(GenericClassWithAttributes<,>);
3060                         Type[] tArgs = type.GetGenericArguments ();
3061                         MethodInfo m = type.GetMethod ("M");
3062                         Type[] mArgs = m.GetGenericArguments ();
3063                         Assert.AreEqual(1, tArgs[0].GetCustomAttributes (typeof (DocAttribute), true).Length, "#1");
3064                         Assert.AreEqual(1, tArgs[1].GetCustomAttributes (typeof (DocAttribute), true).Length, "#1");
3065                         Assert.AreEqual(1, mArgs[0].GetCustomAttributes (typeof (DocAttribute), true).Length, "#1");
3066                 }
3067
3068                 [Test] //bug #471255
3069                 public void GetTypeCalledUsingReflection ()
3070                 {
3071                         Type expectedType = Type.GetType ("NoNamespaceClass");
3072                         Assert.IsNotNull (expectedType, "#1");
3073                         MethodInfo m = typeof (Type).GetMethod ("GetType",  BindingFlags.Public | BindingFlags.Static, null, new Type [] { typeof (string) },  null);
3074                         object r = m.Invoke (null, BindingFlags.Default, null, new object [] { "NoNamespaceClass" }, CultureInfo.InvariantCulture);
3075                         Assert.AreSame (expectedType, r, "#2");
3076                 }
3077
3078         [Test]
3079         public void EqualsUserType () {
3080                 UserType2 t1 = new UserType2(null);
3081                 UserType2 t2 = new UserType2(t1);
3082                 Assert.IsTrue (t1.Equals(t2));
3083         }
3084
3085         [Test]
3086         public void GetHashCodeUserType () {
3087                 UserType2 t1 = new UserType2(null);
3088                 UserType2 t2 = new UserType2(t1);
3089                 Assert.AreEqual (42, t2.GetHashCode());
3090         }
3091         
3092         [Test]
3093         public void IsGenericTypeDefinitionUserType () {
3094                 Assert.IsFalse (new UserType(null).IsGenericTypeDefinition);
3095         }
3096         
3097         [Test]
3098         public void IsGenericTypeUserType () {
3099                 Assert.IsFalse (new UserType(null).IsGenericType);
3100         }
3101
3102         [Test]
3103         [ExpectedException (typeof (NotSupportedException))]
3104         public void GetGenericTypeDefinitionUserType () {
3105                 new UserType(null).GetGenericTypeDefinition ();
3106         }
3107
3108         [ExpectedException (typeof (NotSupportedException))]
3109         public void GetGenericArgumentsUserType () {
3110                 new UserType(null).GetGenericArguments ();
3111         }
3112         
3113         [Test]
3114         [ExpectedException (typeof (InvalidOperationException))]
3115         public void GenericParameterPositionUserType () {
3116                 Assert.IsTrue (new UserType(null).GenericParameterPosition == 0);
3117         }
3118
3119                 [Test]
3120                 public void TypeGetMemberReturnTypeTest ()
3121                 {
3122                         object obj;
3123                         MemberTypes memtype;
3124                         Type testtype;
3125                         object [] flagsandtypes = new object [] {
3126                                 MemberTypes.All, typeof (MemberInfo []),
3127                                 MemberTypes.Constructor, typeof (ConstructorInfo []),
3128                                 MemberTypes.Custom, typeof (MemberInfo []),
3129                                 MemberTypes.Event, typeof (EventInfo []),
3130                                 MemberTypes.Field, typeof (FieldInfo []),
3131                                 MemberTypes.Method, typeof (MethodInfo []),
3132                                 MemberTypes.NestedType, typeof (Type []),
3133                                 MemberTypes.Property, typeof (PropertyInfo []),
3134                                 MemberTypes.TypeInfo, typeof (Type [])};
3135
3136                         for (int i=0; i < flagsandtypes.Length; i+=2) {
3137                                 memtype = (MemberTypes)flagsandtypes [i];
3138                                 testtype = (Type)flagsandtypes [i+1];
3139                                 obj = GetType ().GetMember ("DummyMember", memtype,
3140                                                 BindingFlags.Public | BindingFlags.Instance);
3141                                 Assert.AreEqual (testtype.GetHashCode (), obj.GetType ().GetHashCode (),
3142                                                 "Expected " + testtype.FullName);
3143                         }
3144
3145                 }
3146  
3147                 [Test]
3148                 public void TypeNameStartsWithSpace ()
3149                 {
3150                         Type t1 = Type.GetType ("System.Type, mscorlib");
3151                         Type t2 = Type.GetType (" System.Type, mscorlib");
3152                         Assert.AreEqual (t1, t2);
3153                 }
3154
3155 #if !MONOTOUCH
3156                 [Test]
3157                 public void Bug506757 ()
3158                 {
3159                         AssemblyName assemblyName = new AssemblyName ();
3160                         assemblyName.Name = "customMod";
3161                         assemblyName.Version = new Version (1, 2, 3, 4);
3162         
3163                         AssemblyBuilder assembly 
3164                                 = Thread.GetDomain().DefineDynamicAssembly(
3165                                           assemblyName, AssemblyBuilderAccess.RunAndSave);
3166         
3167                         ModuleBuilder module = assembly.DefineDynamicModule("res.exe", "res.exe");
3168         
3169                         TypeBuilder type0 = module.DefineType ("Base", TypeAttributes.Public, typeof (object));
3170                         TypeBuilder type1 = module.DefineType ("Middle", TypeAttributes.Public, type0);
3171                         TypeBuilder type2 = module.DefineType ("End", TypeAttributes.Public, type1);
3172         
3173                         MethodAttributes attrs0 = MethodAttributes.Virtual | MethodAttributes.HideBySig |
3174                                                   MethodAttributes.NewSlot | MethodAttributes.FamORAssem;
3175         
3176                         MethodAttributes attrs1 = MethodAttributes.Virtual | MethodAttributes.HideBySig |
3177                                                   MethodAttributes.FamORAssem;
3178         
3179                         MethodAttributes attrs2 = MethodAttributes.Virtual | MethodAttributes.HideBySig |
3180                                                   MethodAttributes.Public;
3181         
3182         
3183                         MethodBuilder m0 = type0.DefineMethod ("Tst", attrs0, typeof (void), null);
3184                         m0.GetILGenerator ().Emit (OpCodes.Ret);
3185         
3186                         MethodBuilder m1 = type1.DefineMethod ("Tst", attrs1, typeof (void), null);
3187                         m1.GetILGenerator ().Emit (OpCodes.Ret);
3188         
3189                         MethodBuilder m2 = type2.DefineMethod ("Tst", attrs2, typeof (void), null);
3190                         m2.GetILGenerator ().Emit (OpCodes.Ret);
3191         
3192         
3193                         type0.CreateType ();
3194                         type1.CreateType ();
3195                         Type t2 = type2.CreateType ();
3196         
3197                         foreach (var m in t2.GetMethods (BindingFlags.Instance | BindingFlags.NonPublic))
3198                                 Assert.IsTrue (m.DeclaringType == typeof (object), String.Format ("{0}::{1}", m.DeclaringType, m.Name));
3199                 }
3200 #endif
3201                 [Test]
3202                 public void MakeArrayTypeOfOneDimension ()
3203                 {
3204                         Type vector = typeof (int).MakeArrayType ();
3205                         Type szarray = typeof (int).MakeArrayType (1);
3206
3207                         Assert.AreNotEqual (vector, szarray, "#1");
3208                         Assert.AreEqual ("Int32[]", vector.Name, "#2");
3209                         Assert.AreEqual ("Int32[*]", szarray.Name, "#3");
3210                 }
3211
3212                 public class DeclaringMethodFoo {
3213                         public void Test<T> (T t) {}
3214                         public void Test2<T> (ref T t) {}
3215                 }
3216
3217                 public class DeclaringMethodBar<T> {
3218                         public void Test2 (ref T t) {}
3219                 }
3220
3221                 [Test]
3222                 public void DeclaringMethodOnlyWorksWithGenericArgs ()
3223                 {
3224                 MethodInfo testMethod = typeof (DeclaringMethodFoo).GetMethod ("Test");
3225                 MethodBase otherMethod = testMethod.GetParameters ()[0].ParameterType.DeclaringMethod;
3226
3227                         Assert.AreEqual (testMethod, otherMethod,"#1");
3228
3229                         Assert.IsNull (typeof (DeclaringMethodBar<>).GetGenericArguments ()[0].DeclaringMethod, "#2");
3230
3231                         try {
3232                                 var x = typeof (int).DeclaringMethod;
3233                                 Assert.Fail ("#3");
3234                         } catch (InvalidOperationException) {}
3235
3236                         try {
3237                                 var x = typeof (DeclaringMethodFoo).GetMethod ("Test2").GetParameters () [0].ParameterType.DeclaringMethod;
3238                                 Assert.Fail ("#4");
3239                         } catch (InvalidOperationException) {}
3240
3241                         try {
3242                                 var x = typeof (DeclaringMethodBar<>).GetMethod ("Test2").GetParameters () [0].ParameterType.DeclaringMethod;
3243                                 Assert.Fail ("#5");
3244                         } catch (InvalidOperationException) {}
3245
3246                 }
3247
3248                 [Test]
3249                 public void GetArrayRankThrowsForNonArrayType ()
3250                 {
3251                         Assert.AreEqual (1, typeof (int[]).GetArrayRank (), "#1");
3252                         Assert.AreEqual (2, typeof (int[,]).GetArrayRank (), "#2");
3253                         try {
3254                                 typeof (int).GetArrayRank ();
3255                                 Assert.Fail ("#3");
3256                         } catch (ArgumentException) {}
3257                 }
3258
3259                 [Test] //Bug #564379
3260                 public void GetMethodsReturnPublicMethodsInInterfaces ()
3261                 {
3262                         Type t = typeof (NonClosingStream);
3263                         MethodInfo[] methods = t.GetMethods (BindingFlags.Public | BindingFlags.Instance);
3264
3265                         Assert.AreEqual (5, methods.Length, "#1");
3266                         int id = 2;
3267
3268                         foreach (var m in methods) {
3269                                 if (m.Name.Equals ("ToString"))
3270                                         Assert.IsTrue (m.DeclaringType == typeof (NonClosingStream), "#" + id);
3271                                 else if (m.Name.Equals ("Dispose") && m.GetParameters ().Length == 0)
3272                                         Assert.IsTrue (m.DeclaringType == typeof (Stream), "#" + id);
3273                                 else if (m.Name.Equals ("Equals") || m.Name.Equals ("GetHashCode") || m.Name.Equals ("GetType"))
3274                                         Assert.IsTrue (m.DeclaringType == typeof (object), "#" + id);
3275                                 else
3276                                         Assert.Fail ("invalid method " + m);
3277                                 ++id;
3278                         }
3279                 }
3280
3281                 [Test] // Bug #574696
3282                 public void GetMember_DoesntReturnPrivatePropOfParent ()
3283                 {
3284                         BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance;
3285                         Assert.AreEqual (1, typeof (Bar).GetMember ("PrivInst", flags).Length);
3286                         Assert.AreEqual (0, typeof (Bar).GetMember ("PrivInstBase", flags).Length);
3287                         Assert.AreEqual (1, typeof (Foo).GetMember ("PrivInstBase", flags).Length);
3288                 }
3289
3290                 [Test] // Bug #484246
3291                 public void GetInterfaceCompareAgainstGTDNames ()
3292                 {
3293                         var t = typeof (Dictionary<string,string>);
3294                         var iface = typeof (IDictionary<string,string>);
3295
3296                         Assert.AreSame (iface, t.GetInterface ("System.Collections.Generic.IDictionary`2"), "#1");
3297
3298                         string name = "System.Collections.Generic.IDictionary`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]";
3299
3300                         Assert.IsNull (t.GetInterface (name), "#2");
3301                 } 
3302
3303                 [Test]
3304                 public void RuntimeCorrectlyNormalizeGenericTypes ()
3305                 {
3306                         Type lst = typeof (MList<>);
3307                         Type arg = lst.GetGenericArguments ()[0];
3308
3309                         Type sup = lst.BaseType;
3310                         Type sa0 = sup.GetGenericArguments ()[0];
3311                         Type sa1 = sup.GetGenericArguments ()[1];
3312
3313                         Assert.IsTrue (sa1 == lst, "#1");
3314                         Assert.IsTrue (sa0 == arg, "#2");
3315
3316                         Type inst = typeof (Cons<,>).MakeGenericType (arg, lst.MakeGenericType (arg));
3317                         Assert.IsTrue (inst == sup, "#3");
3318                 }
3319
3320                 class Cons<T,U>
3321                 {
3322
3323                 }
3324
3325                 class MList<A> : Cons<A, MList<A>>
3326                 {
3327
3328                 }
3329
3330                 [Test] // Bug #331126
3331                 public void IsAssignableFromWorksCorrectlyWithByRefs ()
3332                 {
3333                         Type int_byref = typeof (int).MakeByRefType ();
3334                         Type obj_byref = typeof (object).MakeByRefType ();
3335                         Type long_byref = typeof (long).MakeByRefType ();
3336                         Type enum1_byref = typeof (AttributeTargets).MakeByRefType ();
3337                         Type enum2_byref = typeof (PlatformID).MakeByRefType ();
3338                         Type uint_byref = typeof (uint).MakeByRefType ();
3339                         Type string_byref = typeof (object).MakeByRefType ();
3340                         Type struct0_byref = typeof (Size4).MakeByRefType ();
3341                         Type struct1_byref = typeof (Size4b).MakeByRefType ();
3342                         Type mvar0_byref = typeof (TypeTest).GetMethod ("Bug331126").GetGenericArguments ()[0].MakeByRefType ();
3343                         Type mvar1_byref = typeof (TypeTest).GetMethod ("Bug331126").GetGenericArguments ()[1].MakeByRefType ();
3344
3345                         Assert.IsFalse (typeof (int).IsAssignableFrom (int_byref), "#1");
3346                         Assert.IsFalse (int_byref.IsAssignableFrom (typeof (int)), "#2");
3347                         Assert.IsFalse (obj_byref.IsAssignableFrom (long_byref), "#3");
3348                         Assert.IsFalse (long_byref.IsAssignableFrom (obj_byref), "#4");
3349                         Assert.IsTrue (enum1_byref.IsAssignableFrom (enum2_byref), "#5");
3350                         Assert.IsTrue (enum2_byref.IsAssignableFrom (enum1_byref), "#6");
3351                         Assert.IsTrue (int_byref.IsAssignableFrom (enum2_byref), "#7");
3352                         Assert.IsTrue (enum2_byref.IsAssignableFrom (int_byref), "#8");
3353                         Assert.IsTrue (enum2_byref.IsAssignableFrom (uint_byref), "#9");
3354                         Assert.IsTrue (uint_byref.IsAssignableFrom (enum2_byref), "#10");
3355                         Assert.IsTrue (int_byref.IsAssignableFrom (uint_byref), "#11");
3356                         Assert.IsTrue (uint_byref.IsAssignableFrom (int_byref), "#12");
3357
3358                         Assert.IsTrue (typeof (object).IsAssignableFrom (typeof (long)), "#13");
3359
3360                         Assert.IsTrue (obj_byref.IsAssignableFrom (string_byref), "#14");
3361                         Assert.IsTrue (string_byref.IsAssignableFrom (obj_byref), "#15");
3362
3363                         Assert.IsFalse (uint_byref.IsAssignableFrom (struct0_byref), "#16");
3364                         Assert.IsFalse (struct0_byref.IsAssignableFrom (int_byref), "#17");
3365                         Assert.IsFalse (struct0_byref.IsAssignableFrom (struct1_byref), "#18");
3366
3367                         Assert.IsFalse (obj_byref.IsAssignableFrom (mvar0_byref), "#19");
3368                         Assert.IsFalse (mvar0_byref.IsAssignableFrom (mvar1_byref), "#20");
3369                         Assert.IsTrue (mvar0_byref.IsAssignableFrom (mvar0_byref), "#21");
3370                         Assert.IsFalse (mvar0_byref.IsAssignableFrom (obj_byref), "#22");
3371                 }
3372
3373                 public void Bug331126<T,K> () {}
3374
3375                 public struct Size4 {
3376                         public int field;
3377                 }
3378
3379                 public struct Size4b {
3380                         public int field;
3381                 }
3382
3383                 [Test] // Bug #612780
3384                 public void CannotMakeDerivedTypesFromTypedByRef ()
3385                 {
3386                 try {
3387                 typeof (global::System.TypedReference).MakeArrayType ();
3388                 Assert.Fail ("#1");
3389                 } catch (TypeLoadException) { }
3390
3391                 try {
3392                 typeof (global::System.TypedReference).MakeByRefType ();
3393                 Assert.Fail ("#2");
3394                 } catch (TypeLoadException) { }
3395
3396                 try {
3397                 typeof (global::System.TypedReference).MakePointerType ();
3398                 Assert.Fail ("#3");
3399                 } catch (TypeLoadException) { }
3400
3401                 }
3402                 
3403                 [Test] //Bug643890
3404                 public void DeclaringTypeOfGenericNestedTypeInstanceIsOpen ()
3405                 {
3406                         var type = typeof (Foo<int>.Nested<string>);
3407                         Assert.AreSame (typeof (Foo<>), type.DeclaringType, "#1");
3408                 }
3409
3410 #if NET_4_0
3411                 interface IGetInterfaceMap<in T>
3412                 {
3413                     string Bar (T t);
3414                 }
3415
3416                 class GetInterfaceMap : IGetInterfaceMap<object>
3417                 {
3418                     public string Bar (object t)
3419                     {
3420                         return t.GetType ().FullName;
3421                     }
3422                 }
3423
3424                 [Test]
3425                 public void GetInterfaceMapWorksWithVariantIfaces ()
3426                 {
3427                         InterfaceMapping res = typeof (GetInterfaceMap).GetInterfaceMap (typeof (IGetInterfaceMap <object>));
3428                         Assert.AreEqual (typeof (IGetInterfaceMap <object>), res.InterfaceType);
3429                         Assert.AreEqual (typeof (object), res.InterfaceMethods [0].GetParameters () [0].ParameterType);
3430
3431                         res = typeof (GetInterfaceMap).GetInterfaceMap (typeof (IGetInterfaceMap <string>));
3432                         Assert.AreEqual (typeof (IGetInterfaceMap <string>), res.InterfaceType);
3433                         Assert.AreEqual (typeof (string), res.InterfaceMethods [0].GetParameters () [0].ParameterType);
3434                 }
3435
3436
3437                 public class MyType : TypeDelegator {
3438                         public int eq, ust;
3439
3440                         public override bool Equals (Type t) {
3441                                 ++eq;
3442                                 return base.Equals (t);
3443                         }
3444
3445                         public override Type UnderlyingSystemType  {
3446                                 get { 
3447                                         ++ust;
3448                                         return typeof (int);
3449                                 }
3450                         }
3451                 }
3452
3453                 [Test]
3454                 public void NewV4EqualsBehavior ()
3455                 {
3456                         var ta = new MyType ();
3457                         var tb = new MyType ();
3458                         object a = ta, b = tb;
3459
3460                         a.Equals (a);
3461                         Assert.AreEqual (1, ta.eq, "#1");
3462                         Assert.AreEqual (0, ta.ust, "#2");
3463                         a.Equals (b);
3464                         Assert.AreEqual (2, ta.eq, "#3");
3465                         Assert.AreEqual (1, ta.ust, "#4");
3466                         Assert.AreEqual (0, tb.eq, "#5");
3467                         Assert.AreEqual (1, tb.ust, "#6");
3468                 }
3469
3470                 public enum MyRealEnum : short {
3471                         A,B,C
3472                 }
3473
3474
3475                 public enum MyRealEnum2 : byte {
3476                         A,B,C
3477                 }
3478
3479                 public enum MyRealEnum3 : short {
3480                         A,B,C
3481                 }
3482
3483                 public class MyEnum : TypeDelegator {
3484                         public bool is_enum { get; set; }
3485                         public int fields { get; set; }
3486
3487                         public override bool IsSubclassOf (Type c) {
3488                                 return c == typeof (Enum) && is_enum;
3489                         }
3490
3491                         public override FieldInfo[] GetFields (BindingFlags bindingAttr) {
3492                                 if (fields == 0)
3493                                         return null;
3494                                 FieldInfo[] res = new FieldInfo [fields];
3495                                 for (int i = 0; i < fields; ++i) {
3496                                         if ((bindingAttr & BindingFlags.Instance) != 0)
3497                                                 res [i] = typeof (MyRealEnum).GetField ("value__");
3498                                         else
3499                                                 res [i] = typeof (MyRealEnum).GetField ("A");
3500                                 }
3501                                 return res;
3502                         }
3503                 }
3504
3505                 [Test]
3506                 public void GetEnumUnderlyingType () {
3507
3508                         try {
3509                                 new MyEnum () { is_enum = false }.GetEnumUnderlyingType ();
3510                                 Assert.Fail ("#1");
3511                         } catch (ArgumentException) {}
3512
3513                         try {
3514                                 new MyEnum () { is_enum = true, fields = 0 }.GetEnumUnderlyingType ();
3515                                 Assert.Fail ("#2");
3516                         } catch (ArgumentException) {}
3517
3518                         try {
3519                                 new MyEnum () { is_enum = true, fields = 2 }.GetEnumUnderlyingType ();
3520                                 Assert.Fail ("#3");
3521                         } catch (ArgumentException) {}
3522
3523                         Assert.AreSame (typeof (short), new MyEnum () { is_enum = true, fields = 1 }.GetEnumUnderlyingType ());
3524                 }
3525
3526                 [Test]
3527                 public void GetEnumNames () {
3528                         try {
3529                                 new MyEnum () { is_enum = false }.GetEnumNames ();
3530                                 Assert.Fail ("#1");
3531                         } catch (ArgumentException) {}
3532
3533                         var res = new MyEnum () { is_enum = true, fields = 1 }.GetEnumNames ();
3534                         Assert.AreEqual (1, res.Length, "#2");
3535                         Assert.AreEqual ("A", res [0], "#3");
3536
3537                         res = typeof (MyRealEnum).GetEnumNames ();
3538                         Assert.AreEqual (3, res.Length, "#4");
3539                         Assert.AreEqual ("A", res [0], "#5");
3540                         Assert.AreEqual ("B", res [1], "#6");
3541                         Assert.AreEqual ("C", res [2], "#7");
3542                 }
3543
3544                 public enum OutOfOrderEnum : sbyte
3545                 {
3546                         D = -1, C = 2, B = 1, A = 0
3547                 }
3548                                 
3549                 [Test]
3550                 public void GetEnumNamesSortsByUnsignedValue ()
3551                 {
3552                         string[] names = typeof (OutOfOrderEnum).GetEnumNames ();
3553                         Assert.AreEqual (4, names.Length);
3554                         Assert.AreEqual ("A", names [0]);
3555                         Assert.AreEqual ("B", names [1]);
3556                         Assert.AreEqual ("C", names [2]);
3557                         Assert.AreEqual ("D", names [3]);
3558                 }
3559                 
3560                 [Test]
3561                 public void GetEnumValues () {
3562                         try {
3563                                 new MyEnum () { is_enum = false }.GetEnumValues ();
3564                                 Assert.Fail ("#1");
3565                         } catch (ArgumentException) {}
3566
3567                         try {
3568                                 new MyEnum () { is_enum = true }.GetEnumValues ();
3569                                 Assert.Fail ("#2");
3570                         } catch (NotImplementedException) {}
3571
3572                         var array = typeof (MyRealEnum).GetEnumValues ();
3573                         Assert.AreEqual (typeof (MyRealEnum[]), array.GetType (), "#3");
3574                         MyRealEnum[] res = (MyRealEnum[])array;
3575
3576                         Assert.AreEqual (3, res.Length, "#4");
3577                         Assert.AreEqual (MyRealEnum.A, res [0], "#5");
3578                         Assert.AreEqual (MyRealEnum.B, res [1], "#6");
3579                         Assert.AreEqual (MyRealEnum.C, res [2], "#7");
3580                 }
3581
3582                 [Test]
3583                 public void GetEnumValue () {
3584                         try {
3585                                 typeof (MyRealEnum).GetEnumName (null);
3586                                 Assert.Fail ("#1");
3587                         } catch (ArgumentException) { }
3588
3589                         try {
3590                                 new MyEnum () { is_enum = false }.GetEnumName (99);
3591                                 Assert.Fail ("#2");
3592                         } catch (ArgumentException) { }
3593
3594
3595                         Assert.IsNull (new MyEnum () { fields = 1, is_enum = true }.GetEnumName (77), "#3");
3596                         Assert.AreEqual ("A", new MyEnum () { fields = 1, is_enum = true }.GetEnumName (0), "#4");
3597                         Assert.AreEqual ("A", new MyEnum () { fields = 1, is_enum = true }.GetEnumName (MyRealEnum.A), "#5");
3598                         Assert.AreEqual ("A", new MyEnum () { fields = 1, is_enum = true }.GetEnumName (MyRealEnum2.A), "#6");
3599
3600                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName (MyRealEnum.A), "#7");
3601                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((short)0), "#8");
3602                         Assert.AreEqual ("C", typeof (MyRealEnum).GetEnumName (2), "#9");
3603                         Assert.IsNull (typeof (MyRealEnum).GetEnumName (9), "#10");
3604
3605                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((byte)0), "#11");
3606                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((sbyte)0), "#12");
3607                         try {
3608                                 typeof (MyRealEnum).GetEnumName (false);
3609                                 Assert.Fail ("#13");
3610                         } catch (ArgumentException) { }
3611
3612                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((short)0), "#14");
3613                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((ushort)0), "#15");
3614                         try {
3615                                 typeof (MyRealEnum).GetEnumName ('c');
3616                                 Assert.Fail ("#16");
3617                         } catch (ArgumentException) { }
3618
3619                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((int)0), "#17");
3620                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((uint)0), "#18");
3621
3622                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((long)0), "#19");
3623                         Assert.AreEqual ("A", typeof (MyRealEnum).GetEnumName ((ulong)0), "#20");
3624
3625                         try {
3626                                 typeof (MyRealEnum).GetEnumName ((float)0);
3627                                 Assert.Fail ("#21");
3628                         } catch (ArgumentException) { }
3629                         try {
3630                                 typeof (MyRealEnum).GetEnumName ((double)0);
3631                                 Assert.Fail ("#22");
3632                         } catch (ArgumentException) { }
3633
3634
3635                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((byte)0), "#23");
3636                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((sbyte)0), "#24");
3637                         try {
3638                                 typeof (MyRealEnum2).GetEnumName (false);
3639                                 Assert.Fail ("#22", "#25");
3640                         } catch (ArgumentException) { }
3641
3642                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((short)0), "#26");
3643                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((ushort)0), "#27");
3644
3645                         try {
3646                                 typeof (MyRealEnum2).GetEnumName ('c');
3647                                 Assert.Fail ("#28");
3648                         } catch (ArgumentException) { }
3649
3650                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((int)0), "#29");
3651                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((uint)0), "#30");
3652
3653                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((long)0), "#31");
3654                         Assert.AreEqual ("A", typeof (MyRealEnum2).GetEnumName ((ulong)0), "#32");
3655
3656                         try {
3657                                 typeof (MyRealEnum2).GetEnumName ((float)0);
3658                                 Assert.Fail ("#33");
3659                         } catch (ArgumentException) { }
3660                         try {
3661                                 typeof (MyRealEnum2).GetEnumName ((double)0);
3662                                 Assert.Fail ("#34");
3663                         } catch (ArgumentException) { }
3664
3665                         Assert.IsNull (typeof (MyRealEnum2).GetEnumName (12345), "#35");
3666                 }
3667
3668                 [Test]
3669                 public void IsEnumDefined () {
3670                         try {
3671                                 typeof (MyRealEnum).IsEnumDefined (null);
3672                                 Assert.Fail ("#1");
3673                         } catch (ArgumentException) { }
3674
3675                         try {
3676                                 new MyEnum () { is_enum = false }.IsEnumDefined (99);
3677                                 Assert.Fail ("#2");
3678                         } catch (ArgumentException) { }
3679
3680                         try {
3681                                 typeof (MyRealEnum).IsEnumDefined (0);
3682                                 Assert.Fail ("#3");
3683                         } catch (ArgumentException) { }
3684
3685                         try {
3686                                 typeof (MyRealEnum).IsEnumDefined ((ushort)0);
3687                                 Assert.Fail ("#4");
3688                         } catch (ArgumentException) { }
3689
3690                         try {
3691                                 typeof (MyRealEnum).IsEnumDefined (MyRealEnum3.A);
3692                                 Assert.Fail ("#5");
3693                         } catch (ArgumentException) { }
3694
3695                         try {
3696                                 typeof (MyRealEnum).IsEnumDefined (true);
3697                                 Assert.Fail ("#6");
3698                         } catch (InvalidOperationException) { }
3699
3700                         try {
3701                                 typeof (MyRealEnum).IsEnumDefined (MyRealEnum2.A);
3702                                 Assert.Fail ("#7");
3703                         } catch (ArgumentException) { }
3704
3705                         try {
3706                                 typeof (MyRealEnum).IsEnumDefined (typeof (MyRealEnum));
3707                                 Assert.Fail ("#8");
3708                         } catch (InvalidOperationException) { }
3709
3710                         Assert.IsTrue (typeof (MyRealEnum).IsEnumDefined ((short)0), "#9");
3711                         Assert.IsFalse (typeof (MyRealEnum).IsEnumDefined ((short)88), "#10");
3712                         Assert.IsTrue (typeof (MyRealEnum).IsEnumDefined (MyRealEnum.A), "#11");
3713                         Assert.IsFalse (typeof (MyRealEnum).IsEnumDefined ("d"), "#12");
3714                         Assert.IsTrue  (typeof (MyRealEnum).IsEnumDefined ("A"), "#13");
3715                         Assert.IsFalse  (new MyEnum () { is_enum = true, fields = 1 }.IsEnumDefined ((short)99), "#14");
3716                 }
3717
3718
3719
3720                 public class Outer {
3721                         public class Inner {}
3722                 }
3723
3724
3725                 public class Outer<T> {
3726                         public class Inner {}
3727                 }
3728
3729                 [Test]
3730                 public void GetTypeWithDelegates () {
3731                         var tname = typeof (MyRealEnum).AssemblyQualifiedName;
3732                         var res = Type.GetType (tname, name => {
3733                                         return Assembly.Load (name);
3734                                 },(asm,name,ignore) => {
3735                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3736                                 }, false, false);
3737                         Assert.AreEqual (typeof (MyRealEnum), res, "#1");
3738
3739
3740                         tname = typeof (Dictionary<int, string>).AssemblyQualifiedName;
3741                         res = Type.GetType (tname, name => {
3742                                         return Assembly.Load (name);
3743                                 },(asm,name,ignore) => {
3744                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3745                                 }, false, false);
3746                         Assert.AreEqual (typeof (Dictionary<int, string>), res, "#2");
3747
3748
3749                         tname = typeof (Foo<int>).AssemblyQualifiedName;
3750                         res = Type.GetType (tname, name => {
3751                                         return Assembly.Load (name);
3752                                 },(asm,name,ignore) => {
3753                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3754                                 }, false, false);
3755                         Assert.AreEqual (typeof (Foo<int>), res, "#3");
3756
3757
3758                         tname = typeof (Outer.Inner).AssemblyQualifiedName;
3759                         res = Type.GetType (tname, name => {
3760                                         return Assembly.Load (name);
3761                                 },(asm,name,ignore) => {
3762                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3763                                 }, false, false);
3764                         Assert.AreEqual (typeof (Outer.Inner), res, "#4");
3765
3766
3767                         tname = typeof (Outer<double>.Inner).AssemblyQualifiedName;
3768                         res = Type.GetType (tname, name => {
3769                                         return Assembly.Load (name);
3770                                 },(asm,name,ignore) => {
3771                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3772                                 }, false, false);
3773                         Assert.AreEqual (typeof (Outer<double>.Inner), res, "#5");
3774
3775
3776                         tname = "System.Collections.Generic.List`1[System.Int32]";
3777                         res = Type.GetType (tname, name => {
3778                                         return Assembly.Load (name);
3779                                 },(asm,name,ignore) => {
3780                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3781                                 }, false, false);
3782                         Assert.AreEqual (typeof (List<int>), res, "#6");
3783
3784
3785                         tname = typeof (Foo<>).FullName + "[,][]";
3786                         res = Type.GetType (tname, name => {
3787                                         Console.WriteLine ("resolve-asm name {0}", name);
3788                                         return Assembly.Load (name);
3789                                 },(asm,name,ignore) => {
3790                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3791                                 }, false, false);
3792                         Assert.AreEqual (typeof (Foo<>).MakeArrayType (2).MakeArrayType (), res, "#7");
3793
3794                         tname = string.Format("{0}[{1}][]*&", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName);
3795                         res = Type.GetType (tname, name => {
3796                                         return Assembly.Load (name);
3797                                 },(asm,name,ignore) => {
3798                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3799                                 }, false, false);
3800                         Assert.AreEqual (typeof (Foo<MyRealEnum>[]).MakePointerType ().MakeByRefType (), res, "#8");
3801
3802
3803                         tname = typeof (MyRealEnum).FullName + "[][]";
3804                         res = Type.GetType (tname, name => {
3805                                         return Assembly.Load (name);
3806                                 },(asm,name,ignore) => {
3807                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3808                                 }, false, false);
3809                         Assert.AreEqual (typeof (MyRealEnum[][]), res, "#9");
3810
3811
3812                         tname = typeof (MyRealEnum).FullName + "[*]";
3813                         res = Type.GetType (tname, name => {
3814                                         return Assembly.Load (name);
3815                                 },(asm,name,ignore) => {
3816                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3817                                 }, false, false);
3818                         Assert.AreEqual (typeof (MyRealEnum).MakeArrayType (1), res, "#10");
3819
3820
3821                         tname = typeof (MyRealEnum).FullName + "&";
3822                         res = Type.GetType (tname, name => {
3823                                         return Assembly.Load (name);
3824                                 },(asm,name,ignore) => {
3825                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3826                                 }, false, false);
3827                         Assert.AreEqual (typeof (MyRealEnum).MakeByRefType (), res, "#11");
3828
3829
3830                         tname = typeof (MyRealEnum).FullName + "*";
3831                         res = Type.GetType (tname, name => {
3832                                         return Assembly.Load (name);
3833                                 },(asm,name,ignore) => {
3834                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3835                                 }, false, false);
3836                         Assert.AreEqual (typeof (MyRealEnum).MakePointerType (), res, "#12");
3837
3838                         // assembly resolve without type resolve
3839                         res = Type.GetType ("System.String,mscorlib", delegate (AssemblyName aname) { return typeof (int).Assembly; }, null);
3840                         Assert.AreEqual (typeof (string), res);
3841                 }
3842
3843
3844                 public class CustomGetType : TypeDelegator {
3845                         string name;
3846
3847                         public CustomGetType (string name) { this.name = name; }
3848
3849                         public override Type MakeGenericType (Type[] args) {
3850                                 return new CustomGetType ("GINST");
3851                         }
3852
3853                         public override Type GetNestedType(String name, BindingFlags bidingAttr) {
3854                                 return new CustomGetType ("NESTED");
3855                         }
3856
3857                         public override string ToString () { return "UT_" + name; }
3858
3859                         public override string Name {
3860                                 get { return  "UT_" + name; }
3861                         }
3862                 }
3863
3864                 [Test]
3865                 public void GetTypeWithDelegatesAndUserTypes ()
3866                 {
3867                         var tname = "Magic[System.Int32]";
3868                         var res = Type.GetType (tname, name => {
3869                                         return Assembly.Load (name);
3870                                 },(asm,name,ignore) => {
3871                                         if (name == "Magic") return new CustomGetType ("MAGIC");
3872                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3873                                 }, false, false);
3874                         Assert.AreEqual ("UT_GINST", res.Name, "#1");
3875
3876
3877                         tname = "Magic+MyRealEnum";
3878                         res = Type.GetType (tname, name => {
3879                                         return Assembly.Load (name);
3880                                 },(asm,name,ignore) => {
3881                                         if (name == "Magic") return new CustomGetType ("MAGIC");
3882                                         return asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3883                                 }, false, false);
3884                         Assert.AreEqual ("UT_NESTED", res.Name, "#2");
3885                 }
3886
3887                 void MustTLE (string tname) {
3888                         try {
3889                                 var res = Type.GetType (tname, name => {
3890                                         return Assembly.Load (name);
3891                                 },(asm,name,ignore) => {
3892                                         return (object)asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3893                                 }, true, false);
3894                                 Assert.Fail (tname);
3895                         } catch (TypeLoadException) {}
3896                 }
3897
3898                 void MustANE (string tname) {
3899                         try {
3900                                 var res = Type.GetType (tname, name => {
3901                                         return Assembly.Load (name);
3902                                 },(asm,name,ignore) => {
3903                                         return (object)asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3904                                 }, true, false);
3905                                 Assert.Fail (tname);
3906                         } catch (ArgumentNullException) {}
3907                 }
3908
3909                 void MustAE (string tname) {
3910                         try {
3911                                 var res = Type.GetType (tname, name => {
3912                                         return Assembly.Load (name);
3913                                 },(asm,name,ignore) => {
3914                                         return (object)asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3915                                 }, true, false);
3916                                 Assert.Fail (tname);
3917                         } catch (ArgumentException) {}
3918                 }
3919
3920                 void MustFNFE (string tname) {
3921                         try {
3922                                 var res = Type.GetType (tname, name => {
3923                                         return Assembly.Load (name);
3924                                 },(asm,name,ignore) => {
3925                                         return (object)asm == null ? Type.GetType (name, false, ignore) : asm.GetType (name, false, ignore);
3926                                 }, true, false);
3927                                 Assert.Fail (tname);
3928                         } catch (FileNotFoundException) {}
3929                 }
3930
3931                 [Test]
3932                 public void NewGetTypeErrors () {
3933                         MustANE (null);
3934                         MustAE (string.Format ("{0}[{1}&]", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3935                         MustAE (string.Format ("{0}[{1}*]", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3936                         MustAE (string.Format ("{0}&&", typeof (MyRealEnum).FullName));
3937                         MustAE (string.Format ("{0}&*", typeof (MyRealEnum).FullName));
3938                         MustAE (string.Format ("{0}&[{1}]", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3939
3940
3941                         MustAE (string.Format ("{0}[[{1},", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3942                         MustAE (string.Format ("{0}[[{1}]", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3943                         MustAE (string.Format ("{0}[[{1}],", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3944                         MustAE (string.Format ("{0}[[{1}]_", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3945
3946                         MustAE (string.Format ("{0}[{1}", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3947                         MustAE (string.Format ("{0}[{1},", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3948                         MustAE (string.Format ("{0}[{1},,", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3949                         MustAE (string.Format ("{0}[{1} (", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3950                         MustAE (string.Format ("{0}[", typeof (Foo<>).FullName));
3951
3952                         MustAE (string.Format ("{0}[**]", typeof (MyRealEnum).FullName));
3953                         MustAE (string.Format ("{0}[*,*]", typeof (MyRealEnum).FullName));
3954                         MustAE (string.Format ("{0}[*,]", typeof (MyRealEnum).FullName));
3955                         MustAE (string.Format ("{0}[,*]", typeof (MyRealEnum).FullName));
3956                         MustAE (string.Format ("{0}[,-]", typeof (MyRealEnum).FullName));
3957                         MustAE (string.Format ("{0}[,{0}]", typeof (MyRealEnum).FullName));
3958
3959                         MustAE (string.Format ("{0}[{1}]]", typeof (Foo<>).FullName, typeof (MyRealEnum).FullName));
3960                         MustAE (string.Format ("{0}[,]]", typeof (MyRealEnum).FullName));
3961
3962
3963                         string aqn = typeof (MyRealEnum).Assembly.FullName;
3964                         MustFNFE (string.Format ("{0}, ZZZ{1}", typeof (MyRealEnum).FullName, aqn));
3965                         MustTLE (string.Format ("{0}ZZZZ", typeof (MyRealEnum).FullName));
3966                         MustTLE (string.Format ("{0}ZZZZ,{1}", typeof (MyRealEnum).FullName, aqn));
3967                 }
3968
3969                 delegate void MyAction<in T>(T ag);
3970
3971                 [Test] //bug #668506
3972                 public void IsAssignableFromWithVariantDelegate () {
3973                         Assert.IsFalse (typeof(MyAction<string>).IsAssignableFrom(typeof(MyAction<>)), "#1");
3974                 }
3975
3976                 [Test] //bug #124
3977                 public void IsAssignableFromWithNullable () {
3978             Console.WriteLine(typeof(IEnumerable<int?>).IsAssignableFrom(typeof(IEnumerable<int>)));
3979                 }
3980 #endif
3981
3982                 public abstract class Stream : IDisposable
3983                 {
3984                         public void Dispose ()
3985                         {
3986                                 Console.WriteLine ("stream::dispose");
3987                         }
3988
3989                         protected virtual void Dispose (bool disposing)
3990                         {
3991                         }
3992                 }
3993
3994                 public class NonClosingStream 
3995                         : Stream, IDisposable
3996                 {
3997                         void  IDisposable.Dispose()
3998                         {
3999                                 Console.WriteLine ("ncs::dispose");
4000                         }
4001
4002                         public override string ToString () { return ""; }
4003                 }
4004
4005                 static bool ContainsProperty (PropertyInfo [] props, string name)
4006                 {
4007                         foreach (PropertyInfo p in props)
4008                                 if (p.Name == name)
4009                                         return true;
4010                         return false;
4011                 }
4012
4013                 public class NemerleAttribute : Attribute
4014                 {
4015                 }
4016
4017                 public class VolatileModifier : NemerleAttribute
4018                 {
4019                 }
4020
4021                 [VolatileModifier]
4022                 [FooAttribute]
4023                 class A
4024                 {
4025                 }
4026
4027                 [AttributeUsage (AttributeTargets.Class, Inherited=false)]
4028                 public class FooAttribute : Attribute
4029                 {
4030                 }
4031
4032                 public class BarAttribute : FooAttribute
4033                 {
4034                 }
4035
4036                 [BarAttribute]
4037                 class BA : A
4038                 {
4039                 }
4040
4041                 class BBA : BA
4042                 {
4043                 }
4044
4045                 class CA : A
4046                 {
4047                 }
4048
4049                 [AttributeUsage (AttributeTargets.Class, Inherited=true)]
4050                 public class InheritAttribute : Attribute
4051                 {
4052                 }
4053
4054                 [AttributeUsage (AttributeTargets.Class, Inherited=false)]
4055                 public class NotInheritAttribute : InheritAttribute
4056                 {
4057                 }
4058
4059                 [NotInheritAttribute]
4060                 public class bug82431A1
4061                 {
4062                 }
4063
4064                 public class bug82431A2 : bug82431A1
4065                 {
4066                 }
4067
4068                 [NotInheritAttribute]
4069                 [InheritAttribute]
4070                 public class bug82431A3 : bug82431A1
4071                 {
4072                 }
4073
4074                 [InheritAttribute]
4075                 public class bug82431B1
4076                 {
4077                 }
4078
4079                 public class bug82431B2 : bug82431B1
4080                 {
4081                 }
4082
4083                 [NotInheritAttribute]
4084                 public class bug82431B3 : bug82431B2
4085                 {
4086                 }
4087
4088                 public class bug82431B4 : bug82431B3
4089                 {
4090                 }
4091
4092                 struct FooStruct
4093                 {
4094                 }
4095
4096                 public class Bug77367
4097                 {
4098                         public void Run (bool b)
4099                         {
4100                         }
4101                 }
4102
4103                 public class Blue
4104                 {
4105                         private string PrivInstBlue
4106                         {
4107                                 get { return null; }
4108                         }
4109
4110                         protected string ProtInstBlue
4111                         {
4112                                 get { return null; }
4113                         }
4114
4115                         protected internal string ProIntInstBlue
4116                         {
4117                                 get { return null; }
4118                         }
4119
4120                         public long PubInstBlue
4121                         {
4122                                 get
4123                                 {
4124                                         if (PrivInstBlue == null)
4125                                                 return 0;
4126                                         return long.MaxValue;
4127                                 }
4128                         }
4129
4130                         internal int IntInstBlue
4131                         {
4132                                 get { return 0; }
4133                         }
4134
4135                         private static string PrivStatBlue
4136                         {
4137                                 get { return null; }
4138                         }
4139
4140                         protected static string ProtStatBlue
4141                         {
4142                                 get { return null; }
4143                         }
4144
4145                         protected static internal string ProIntStatBlue
4146                         {
4147                                 get { return null; }
4148                         }
4149
4150                         public static long PubStatBlue
4151                         {
4152                                 get
4153                                 {
4154                                         if (PrivStatBlue == null)
4155                                                 return 0;
4156                                         return long.MaxValue;
4157                                 }
4158                         }
4159
4160                         internal static int IntStatBlue
4161                         {
4162                                 get { return 0; }
4163                         }
4164                 }
4165
4166                 public class Foo : Blue
4167                 {
4168                         private string PrivInstBase
4169                         {
4170                                 get { return null; }
4171                         }
4172
4173                         protected string ProtInstBase
4174                         {
4175                                 get { return null; }
4176                         }
4177
4178                         protected internal string ProIntInstBase
4179                         {
4180                                 get { return null; }
4181                         }
4182
4183                         public long PubInstBase
4184                         {
4185                                 get
4186                                 {
4187                                         if (PrivInstBase == null)
4188                                                 return 0;
4189                                         return long.MaxValue;
4190                                 }
4191                         }
4192
4193                         internal int IntInstBase
4194                         {
4195                                 get { return 0; }
4196                         }
4197
4198                         private static string PrivStatBase
4199                         {
4200                                 get { return null; }
4201                         }
4202
4203                         protected static string ProtStatBase
4204                         {
4205                                 get { return null; }
4206                         }
4207
4208                         protected static internal string ProIntStatBase
4209                         {
4210                                 get { return null; }
4211                         }
4212
4213                         public static long PubStatBase
4214                         {
4215                                 get
4216                                 {
4217                                         if (PrivStatBase == null)
4218                                                 return 0;
4219                                         return long.MaxValue;
4220                                 }
4221                         }
4222
4223                         internal static int IntStatBase
4224                         {
4225                                 get { return 0; }
4226                         }
4227                 }
4228
4229                 public class Bar : Foo
4230                 {
4231                         private string PrivInst
4232                         {
4233                                 get { return null; }
4234                         }
4235
4236                         protected string ProtInst
4237                         {
4238                                 get { return null; }
4239                         }
4240
4241                         protected internal string ProIntInst
4242                         {
4243                                 get { return null; }
4244                         }
4245
4246                         public long PubInst
4247                         {
4248                                 get
4249                                 {
4250                                         if (PrivInst == null)
4251                                                 return 0;
4252                                         return long.MaxValue;
4253                                 }
4254                         }
4255
4256                         internal int IntInst
4257                         {
4258                                 get { return 0; }
4259                         }
4260
4261                         private static string PrivStat
4262                         {
4263                                 get { return null; }
4264                         }
4265
4266                         protected static string ProtStat
4267                         {
4268                                 get { return null; }
4269                         }
4270
4271                         protected static internal string ProIntStat
4272                         {
4273                                 get { return null; }
4274                         }
4275
4276                         public static long PubStat
4277                         {
4278                                 get
4279                                 {
4280                                         if (PrivStat == null)
4281                                                 return 0;
4282                                         return long.MaxValue;
4283                                 }
4284                         }
4285
4286                         internal static int IntStat
4287                         {
4288                                 get { return 0; }
4289                         }
4290                 }
4291
4292                 class CtorsA
4293                 {
4294                         static CtorsA ()
4295                         {
4296                         }
4297                 }
4298
4299                 class CtorsB
4300                 {
4301                         public CtorsB ()
4302                         {
4303                         }
4304                 }
4305
4306                 class CtorsC
4307                 {
4308                         static CtorsC ()
4309                         {
4310                         }
4311
4312                         public CtorsC (int x)
4313                         {
4314                         }
4315                 }
4316         }
4317
4318         class UserType : Type
4319         {
4320                 protected Type type;
4321         
4322                 public UserType(Type type) {
4323                         this.type = type;
4324                 }
4325         
4326                 public override Type UnderlyingSystemType { get { return this.type; } }
4327         
4328                 public override Assembly Assembly { get { return this.type == null ? null : this.type.Assembly; } }
4329         
4330                 public override string AssemblyQualifiedName { get { return null; } }
4331         
4332                 public override Type BaseType { get { return null; } }
4333         
4334                 public override Module Module { get { return this.type.Module; } }
4335         
4336                 public override string Namespace { get { return null; } }
4337         
4338                 public override bool IsGenericParameter { get { return true; } }
4339          
4340                 public override RuntimeTypeHandle TypeHandle { get { throw new NotSupportedException(); } }
4341         
4342                 public override bool ContainsGenericParameters { get { return true; } }
4343         
4344                 public override string FullName { get { return this.type.Name; } }
4345         
4346                 public override Guid GUID { get { throw new NotSupportedException(); } }
4347         
4348         
4349                 protected override bool IsArrayImpl() {
4350                         return false;
4351                 }
4352         
4353                 protected override bool IsByRefImpl()
4354                 {
4355                         return false;
4356                 }
4357         
4358                 protected override bool IsCOMObjectImpl()
4359                 {
4360                         return false;
4361                 }
4362         
4363                 protected override bool IsPointerImpl()
4364                 {
4365                         return false;
4366                 }
4367         
4368                 protected override bool IsPrimitiveImpl()
4369                 {
4370                         return false;
4371                 }
4372         
4373         
4374                 protected override TypeAttributes GetAttributeFlagsImpl()
4375                 {
4376                         return 0;
4377                 }
4378         
4379                 protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder binder,
4380                                                                            CallingConventions callConvention, Type[] types,
4381                                                                            ParameterModifier[] modifiers)
4382                 {
4383                         return null;
4384                 }
4385         
4386                 public override ConstructorInfo[] GetConstructors(BindingFlags bindingAttr)
4387                 {
4388                         return null;
4389                 }
4390         
4391                 public override Type GetElementType()
4392                 {
4393                         return null;
4394                 }
4395         
4396                 public override EventInfo GetEvent(string name, BindingFlags bindingAttr)
4397                 {
4398                         return null;
4399                 }
4400         
4401         
4402                 public override FieldInfo GetField(string name, BindingFlags bindingAttr)
4403                 {
4404                         return null;
4405                 }
4406         
4407         
4408                 public override Type GetInterface(string name, bool ignoreCase)
4409                 {
4410                         return null;
4411                 }
4412         
4413                 public override Type[] GetInterfaces()
4414                 {
4415                         return null;
4416                 }
4417         
4418                 public override MemberInfo[] GetMembers(BindingFlags bindingAttr)
4419                 {
4420                         return null;
4421                 }
4422         
4423                 public override object[] GetCustomAttributes(Type attributeType, bool inherit)
4424                 {
4425                         return null;
4426                 }
4427         
4428                 public override object[] GetCustomAttributes(bool inherit)
4429                 {
4430                         return null;
4431                 }
4432         
4433                 public override bool IsDefined(Type attributeType, bool inherit)
4434                 {
4435                         return false;
4436                 }
4437         
4438                 public override string Name { get { return this.type.Name; } }
4439         
4440                 public override EventInfo[] GetEvents(BindingFlags bindingAttr)
4441                 {
4442                         throw new NotImplementedException();
4443                 }
4444         
4445                 public override FieldInfo[] GetFields(BindingFlags bindingAttr)
4446                 {
4447                         throw new NotImplementedException();
4448                 }
4449         
4450                 protected override MethodInfo GetMethodImpl(string name, BindingFlags bindingAttr, Binder binder,
4451                                                                  CallingConventions callConvention, Type[] types,
4452                                                                  ParameterModifier[] modifiers)
4453                 {
4454                         return null;
4455                 }
4456         
4457                 public override MethodInfo[] GetMethods(BindingFlags bindingAttr)
4458                 {
4459                         return null;
4460                 }
4461         
4462                 public override Type GetNestedType(string name, BindingFlags bindingAttr)
4463                 {
4464                         return null;
4465                 }
4466         
4467                 public override Type[] GetNestedTypes(BindingFlags bindingAttr)
4468                 {
4469                         return null;
4470                 }
4471         
4472                 public override PropertyInfo[] GetProperties(BindingFlags bindingAttr)
4473                 {
4474                         return null;
4475                 }
4476         
4477                 protected override PropertyInfo GetPropertyImpl(string name, BindingFlags bindingAttr, Binder binder,
4478                                                                  Type returnType, Type[] types, ParameterModifier[] modifiers)
4479                 {
4480                         return null;
4481                 }
4482         
4483                 protected override bool HasElementTypeImpl()
4484                 {
4485                         return false;
4486                 }
4487         
4488                 public override object InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target,
4489                                                          object[] args, ParameterModifier[] modifiers, CultureInfo culture,
4490                                                          string[] namedParameters)
4491                 {
4492                         throw new NotSupportedException();
4493                 }
4494         }
4495
4496     class UserType2 : UserType {
4497                 public UserType2 (Type type) : base (type) {
4498                 }
4499
4500                 public override Type UnderlyingSystemType { get { return this.type ?? this; } }
4501
4502                 public override int GetHashCode()
4503                 {
4504                         if (type == null)
4505                                 return 42;
4506                         return type.GetHashCode();
4507                 }
4508         }
4509 }