Merge pull request #1410 from alesliehughes/master
[mono.git] / mcs / class / System.Runtime.Serialization / Test / System.Runtime.Serialization / DataContractSerializerTest_FrameworkTypes_mscorlib.cs
1 //\r
2 // DataContractSerializerTest_FrameworkTypes_mscorlib.cs\r
3 //\r
4 // Author:\r
5 //      Igor Zelmanovich <igorz@mainsoft.com>\r
6 //\r
7 // Copyright (C) 2008 Mainsoft.co http://www.mainsoft.com\r
8 //\r
9 // Permission is hereby granted, free of charge, to any person obtaining\r
10 // a copy of this software and associated documentation files (the\r
11 // "Software"), to deal in the Software without restriction, including\r
12 // without limitation the rights to use, copy, modify, merge, publish,\r
13 // distribute, sublicense, and/or sell copies of the Software, and to\r
14 // permit persons to whom the Software is furnished to do so, subject to\r
15 // the following conditions:\r
16 // \r
17 // The above copyright notice and this permission notice shall be\r
18 // included in all copies or substantial portions of the Software.\r
19 // \r
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
27 //\r
28 //\r
29 // This test code contains tests for attributes in System.Runtime.Serialization\r
30 //\r
31 \r
32 using System;\r
33 using System.Collections.Generic;\r
34 using System.Linq;\r
35 using System.Text;\r
36 using NUnit.Framework;\r
37 using System.Reflection;\r
38 using System.Globalization;\r
39 using System.Runtime.Serialization;\r
40 using System.IO;\r
41 using System.Xml;\r
42 \r
43 namespace MonoTests.System.Runtime.Serialization\r
44 {\r
45         [TestFixture]\r
46         [Category ("NotWorking")]\r
47         public partial class DataContractSerializerTest_FrameworkTypes_mscorlib\r
48                 : DataContractSerializerTest_FrameworkTypes\r
49         {\r
50                 [Test]\r
51                 public void System_Object () {\r
52                         Test<global::System.Object> ();\r
53                 }\r
54                 [Test]\r
55                 public void System_StringSplitOptions () {\r
56                         Test<global::System.StringSplitOptions> ();\r
57                 }\r
58                 [Test]\r
59                 public void System_StringComparison () {\r
60                         Test<global::System.StringComparison> ();\r
61                 }\r
62                 [Test]\r
63                 [Category ("NotWorking")]\r
64                 public void System_Text_StringBuilder () {\r
65                         Test<global::System.Text.StringBuilder> ();\r
66                 }\r
67                 [Test]\r
68                 [Category ("NotWorking")]\r
69                 public void System_Exception () {\r
70                         Test<global::System.Exception> ();\r
71                 }\r
72                 [Test]\r
73                 public void System_DateTime () {\r
74                         Test<global::System.DateTime> ();\r
75                 }\r
76                 [Test]\r
77                 public void System_DateTimeKind () {\r
78                         Test<global::System.DateTimeKind> ();\r
79                 }\r
80                 [Test]\r
81                 public void System_DateTimeOffset () {\r
82                         Test<global::System.DateTimeOffset> ();\r
83                 }\r
84                 [Test]\r
85                 public void System_SystemException () {\r
86                         Test<global::System.SystemException> ();\r
87                 }\r
88                 [Test]\r
89                 public void System_OutOfMemoryException () {\r
90                         Test<global::System.OutOfMemoryException> ();\r
91                 }\r
92                 [Test]\r
93                 public void System_StackOverflowException () {\r
94                         Test<global::System.StackOverflowException> ();\r
95                 }\r
96                 [Test]\r
97                 public void System_DataMisalignedException () {\r
98                         Test<global::System.DataMisalignedException> ();\r
99                 }\r
100                 [Test]\r
101                 public void System_ExecutionEngineException () {\r
102                         Test<global::System.ExecutionEngineException> ();\r
103                 }\r
104                 [Test]\r
105                 public void System_MemberAccessException () {\r
106                         Test<global::System.MemberAccessException> ();\r
107                 }\r
108                 [Test]\r
109                 [Category ("NotWorking")]\r
110                 public void System_AccessViolationException () {\r
111                         Test<global::System.AccessViolationException> ();\r
112                 }\r
113                 [Test]\r
114                 public void System_ApplicationException () {\r
115                         Test<global::System.ApplicationException> ();\r
116                 }\r
117                 [Test]\r
118                 public void System_EventArgs () {\r
119                         Test<global::System.EventArgs> ();\r
120                 }\r
121                 [Test]\r
122                 public void System_AppDomainManagerInitializationOptions () {\r
123                         Test<global::System.AppDomainManagerInitializationOptions> ();\r
124                 }\r
125                 [Test]\r
126                 [Category ("NotWorking")]\r
127                 public void System_AppDomainSetup () {\r
128                         Test<global::System.AppDomainSetup> ();\r
129                 }\r
130                 [Test]\r
131                 public void System_LoaderOptimization () {\r
132                         Test<global::System.LoaderOptimization> ();\r
133                 }\r
134                 [Test]\r
135                 public void System_AppDomainUnloadedException () {\r
136                         Test<global::System.AppDomainUnloadedException> ();\r
137                 }\r
138                 [Test]\r
139                 public void System_ActivationContext_ContextForm () {\r
140                         Test<global::System.ActivationContext.ContextForm> ();\r
141                 }\r
142                 [Test]\r
143                 public void System_ArgumentException () {\r
144                         Test<global::System.ArgumentException> ();\r
145                 }\r
146                 [Test]\r
147                 public void System_ArgumentNullException () {\r
148                         Test<global::System.ArgumentNullException> ();\r
149                 }\r
150                 [Test]\r
151                 public void System_ArgumentOutOfRangeException () {\r
152                         Test<global::System.ArgumentOutOfRangeException> ();\r
153                 }\r
154                 [Test]\r
155                 public void System_ArithmeticException () {\r
156                         Test<global::System.ArithmeticException> ();\r
157                 }\r
158                 [Test]\r
159                 public void System_ArrayTypeMismatchException () {\r
160                         Test<global::System.ArrayTypeMismatchException> ();\r
161                 }\r
162                 [Test]\r
163                 [Category ("NotWorking")]\r
164                 public void System_AttributeTargets () {\r
165                         Test<global::System.AttributeTargets> ();\r
166                 }\r
167                 [Test]\r
168                 public void System_BadImageFormatException () {\r
169                         Test<global::System.BadImageFormatException> ();\r
170                 }\r
171                 [Test]\r
172                 public void System_Boolean () {\r
173                         Test<global::System.Boolean> ();\r
174                 }\r
175                 [Test]\r
176                 public void System_Byte () {\r
177                         Test<global::System.Byte> ();\r
178                 }\r
179                 [Test]\r
180                 public void System_CannotUnloadAppDomainException () {\r
181                         Test<global::System.CannotUnloadAppDomainException> ();\r
182                 }\r
183                 [Test]\r
184                 [Category ("NotWorking")]\r
185                 public void System_Char () {\r
186                         Test<global::System.Char> ();\r
187                 }\r
188                 [Test]\r
189                 public void System_TypeUnloadedException () {\r
190                         Test<global::System.TypeUnloadedException> ();\r
191                 }\r
192                 [Test]\r
193                 public void System_ConsoleColor () {\r
194                         Test<global::System.ConsoleColor> ();\r
195                 }\r
196                 [Test]\r
197                 [Category ("NotWorking")]\r
198                 public void System_ConsoleModifiers () {\r
199                         Test<global::System.ConsoleModifiers> ();\r
200                 }\r
201                 [Test]\r
202                 public void System_ConsoleSpecialKey () {\r
203                         Test<global::System.ConsoleSpecialKey> ();\r
204                 }\r
205                 [Test]\r
206                 public void System_ContextMarshalException () {\r
207                         Test<global::System.ContextMarshalException> ();\r
208                 }\r
209                 [Test]\r
210                 public void System_Base64FormattingOptions () {\r
211                         Test<global::System.Base64FormattingOptions> ();\r
212                 }\r
213                 [Test]\r
214                 public void System_ContextStaticAttribute () {\r
215                         Test<global::System.ContextStaticAttribute> ();\r
216                 }\r
217                 [Test]\r
218                 public void System_DayOfWeek () {\r
219                         Test<global::System.DayOfWeek> ();\r
220                 }\r
221                 [Test]\r
222                 public void System_Decimal () {\r
223                         Test<global::System.Decimal> ();\r
224                 }\r
225                 [Test]\r
226                 public void System_DivideByZeroException () {\r
227                         Test<global::System.DivideByZeroException> ();\r
228                 }\r
229                 [Test]\r
230                 public void System_Double () {\r
231                         Test<global::System.Double> ();\r
232                 }\r
233                 [Test]\r
234                 public void System_DuplicateWaitObjectException () {\r
235                         Test<global::System.DuplicateWaitObjectException> ();\r
236                 }\r
237                 [Test]\r
238                 public void System_TypeLoadException () {\r
239                         Test<global::System.TypeLoadException> ();\r
240                 }\r
241                 [Test]\r
242                 public void System_EntryPointNotFoundException () {\r
243                         Test<global::System.EntryPointNotFoundException> ();\r
244                 }\r
245                 [Test]\r
246                 public void System_DllNotFoundException () {\r
247                         Test<global::System.DllNotFoundException> ();\r
248                 }\r
249                 [Test]\r
250                 public void System_EnvironmentVariableTarget () {\r
251                         Test<global::System.EnvironmentVariableTarget> ();\r
252                 }\r
253                 [Test]\r
254                 public void System_Environment_SpecialFolder () {\r
255                         Test<global::System.Environment.SpecialFolder> ();\r
256                 }\r
257                 [Test]\r
258                 public void System_FieldAccessException () {\r
259                         Test<global::System.FieldAccessException> ();\r
260                 }\r
261                 [Test]\r
262                 public void System_FlagsAttribute () {\r
263                         Test<global::System.FlagsAttribute> ();\r
264                 }\r
265                 [Test]\r
266                 public void System_FormatException () {\r
267                         Test<global::System.FormatException> ();\r
268                 }\r
269                 [Test]\r
270                 public void System_GCCollectionMode () {\r
271                         Test<global::System.GCCollectionMode> ();\r
272                 }\r
273                 [Test]\r
274                 public void System_Guid () {\r
275                         Test<global::System.Guid> ();\r
276                 }\r
277                 [Test]\r
278                 public void System_IndexOutOfRangeException () {\r
279                         Test<global::System.IndexOutOfRangeException> ();\r
280                 }\r
281                 [Test]\r
282                 public void System_InsufficientMemoryException () {\r
283                         Test<global::System.InsufficientMemoryException> ();\r
284                 }\r
285                 [Test]\r
286                 public void System_Int16 () {\r
287                         Test<global::System.Int16> ();\r
288                 }\r
289                 [Test]\r
290                 public void System_Int32 () {\r
291                         Test<global::System.Int32> ();\r
292                 }\r
293                 [Test]\r
294                 [Category ("NotWorking")]\r
295                 public void System_Int64 () {\r
296                         Test<global::System.Int64> ();\r
297                 }\r
298                 [Test]\r
299                 [Category ("NotWorking")]\r
300                 public void System_IntPtr () {\r
301                         Test<global::System.IntPtr> ();\r
302                 }\r
303                 [Test]\r
304                 public void System_InvalidCastException () {\r
305                         Test<global::System.InvalidCastException> ();\r
306                 }\r
307                 [Test]\r
308                 public void System_InvalidOperationException () {\r
309                         Test<global::System.InvalidOperationException> ();\r
310                 }\r
311                 [Test]\r
312                 public void System_InvalidProgramException () {\r
313                         Test<global::System.InvalidProgramException> ();\r
314                 }\r
315                 [Test]\r
316                 public void System_MethodAccessException () {\r
317                         Test<global::System.MethodAccessException> ();\r
318                 }\r
319                 [Test]\r
320                 public void System_MidpointRounding () {\r
321                         Test<global::System.MidpointRounding> ();\r
322                 }\r
323                 [Test]\r
324                 public void System_MissingMemberException () {\r
325                         Test<global::System.MissingMemberException> ();\r
326                 }\r
327                 [Test]\r
328                 public void System_MissingFieldException () {\r
329                         Test<global::System.MissingFieldException> ();\r
330                 }\r
331                 [Test]\r
332                 public void System_MissingMethodException () {\r
333                         Test<global::System.MissingMethodException> ();\r
334                 }\r
335                 [Test]\r
336                 public void System_MulticastNotSupportedException () {\r
337                         Test<global::System.MulticastNotSupportedException> ();\r
338                 }\r
339                 [Test]\r
340                 public void System_NotFiniteNumberException () {\r
341                         Test<global::System.NotFiniteNumberException> ();\r
342                 }\r
343                 [Test]\r
344                 public void System_NotImplementedException () {\r
345                         Test<global::System.NotImplementedException> ();\r
346                 }\r
347                 [Test]\r
348                 public void System_NotSupportedException () {\r
349                         Test<global::System.NotSupportedException> ();\r
350                 }\r
351                 [Test]\r
352                 public void System_NullReferenceException () {\r
353                         Test<global::System.NullReferenceException> ();\r
354                 }\r
355                 [Test]\r
356                 public void System_ObsoleteAttribute () {\r
357                         Test<global::System.ObsoleteAttribute> ();\r
358                 }\r
359                 [Test]\r
360                 public void System_OperationCanceledException () {\r
361                         Test<global::System.OperationCanceledException> ();\r
362                 }\r
363                 [Test]\r
364                 public void System_OverflowException () {\r
365                         Test<global::System.OverflowException> ();\r
366                 }\r
367                 [Test]\r
368                 public void System_PlatformID () {\r
369                         Test<global::System.PlatformID> ();\r
370                 }\r
371                 [Test]\r
372                 public void System_PlatformNotSupportedException () {\r
373                         Test<global::System.PlatformNotSupportedException> ();\r
374                 }\r
375                 //[Test]\r
376                 //[Category ("NotWorking")]\r
377                 //public void System_Random () {\r
378                 //    Test<global::System.Random> ();\r
379                 //}\r
380                 [Test]\r
381                 public void System_RankException () {\r
382                         Test<global::System.RankException> ();\r
383                 }\r
384                 [Test]\r
385                 public void System_SByte () {\r
386                         Test<global::System.SByte> ();\r
387                 }\r
388                 [Test]\r
389                 public void System_Single () {\r
390                         Test<global::System.Single> ();\r
391                 }\r
392                 [Test]\r
393                 public void System_TimeoutException () {\r
394                         Test<global::System.TimeoutException> ();\r
395                 }\r
396                 [Test]\r
397                 [Category ("NotWorking")]\r
398                 public void System_TimeSpan () {\r
399                         Test<global::System.TimeSpan> ();\r
400                 }\r
401                 [Test]\r
402                 public void System_TypeCode () {\r
403                         Test<global::System.TypeCode> ();\r
404                 }\r
405                 [Test]\r
406                 public void System_UInt16 () {\r
407                         Test<global::System.UInt16> ();\r
408                 }\r
409                 [Test]\r
410                 public void System_UInt32 () {\r
411                         Test<global::System.UInt32> ();\r
412                 }\r
413                 [Test]\r
414                 public void System_UInt64 () {\r
415                         Test<global::System.UInt64> ();\r
416                 }\r
417                 [Test]\r
418                 [Category ("NotWorking")]\r
419                 public void System_UIntPtr () {\r
420                         Test<global::System.UIntPtr> ();\r
421                 }\r
422                 [Test]\r
423                 public void System_UnauthorizedAccessException () {\r
424                         Test<global::System.UnauthorizedAccessException> ();\r
425                 }\r
426                 [Test]\r
427                 public void System_Version () {\r
428                         Test<global::System.Version> ();\r
429                 }\r
430                 [Test]\r
431                 [Category ("NotWorking")]\r
432                 public void System_Threading_AbandonedMutexException () {\r
433                         Test<global::System.Threading.AbandonedMutexException> ();\r
434                 }\r
435                 [Test]\r
436                 public void System_Threading_EventResetMode () {\r
437                         Test<global::System.Threading.EventResetMode> ();\r
438                 }\r
439                 [Test]\r
440                 public void System_Threading_SynchronizationLockException () {\r
441                         Test<global::System.Threading.SynchronizationLockException> ();\r
442                 }\r
443                 [Test]\r
444                 public void System_Threading_ThreadInterruptedException () {\r
445                         Test<global::System.Threading.ThreadInterruptedException> ();\r
446                 }\r
447                 [Test]\r
448                 public void System_Threading_ThreadPriority () {\r
449                         Test<global::System.Threading.ThreadPriority> ();\r
450                 }\r
451                 [Test]\r
452                 public void System_Threading_ThreadState () {\r
453                         Test<global::System.Threading.ThreadState> ();\r
454                 }\r
455                 [Test]\r
456                 public void System_Threading_ThreadStateException () {\r
457                         Test<global::System.Threading.ThreadStateException> ();\r
458                 }\r
459                 [Test]\r
460                 public void System_ThreadStaticAttribute () {\r
461                         Test<global::System.ThreadStaticAttribute> ();\r
462                 }\r
463                 [Test]\r
464                 public void System_Threading_WaitHandleCannotBeOpenedException () {\r
465                         Test<global::System.Threading.WaitHandleCannotBeOpenedException> ();\r
466                 }\r
467                 [Test]\r
468                 public void System_Threading_ApartmentState () {\r
469                         Test<global::System.Threading.ApartmentState> ();\r
470                 }\r
471                 [Test]\r
472                 public void System_Collections_ArrayList () {\r
473                         Test<global::System.Collections.ArrayList> ();\r
474                 }\r
475                 [Test]\r
476                 [Category ("NotWorking")]\r
477                 public void System_Collections_CaseInsensitiveComparer () {\r
478                         Test<global::System.Collections.CaseInsensitiveComparer> ();\r
479                 }\r
480                 [Test]\r
481                 [Category ("NotWorking")]\r
482                 public void System_Collections_CaseInsensitiveHashCodeProvider () {\r
483                         Test<global::System.Collections.CaseInsensitiveHashCodeProvider> ();\r
484                 }\r
485                 [Test]\r
486                 public void System_Collections_DictionaryEntry () {\r
487                         Test<global::System.Collections.DictionaryEntry> ();\r
488                 }\r
489                 [Test]\r
490                 public void System_Collections_Hashtable () {\r
491                         Test<global::System.Collections.Hashtable> ();\r
492                 }\r
493                 [Test]\r
494                 public void System_Collections_Queue () {\r
495                         Test<global::System.Collections.Queue> ();\r
496                 }\r
497                 [Test]\r
498                 public void System_Collections_SortedList () {\r
499                         Test<global::System.Collections.SortedList> ();\r
500                 }\r
501                 [Test]\r
502                 public void System_Collections_Stack () {\r
503                         Test<global::System.Collections.Stack> ();\r
504                 }\r
505                 [Test]\r
506                 public void System_Collections_Generic_KeyNotFoundException () {\r
507                         Test<global::System.Collections.Generic.KeyNotFoundException> ();\r
508                 }\r
509                 [Test]\r
510                 public void System_Diagnostics_DebuggerStepThroughAttribute () {\r
511                         Test<global::System.Diagnostics.DebuggerStepThroughAttribute> ();\r
512                 }\r
513                 [Test]\r
514                 public void System_Diagnostics_DebuggerStepperBoundaryAttribute () {\r
515                         Test<global::System.Diagnostics.DebuggerStepperBoundaryAttribute> ();\r
516                 }\r
517                 [Test]\r
518                 public void System_Diagnostics_DebuggerHiddenAttribute () {\r
519                         Test<global::System.Diagnostics.DebuggerHiddenAttribute> ();\r
520                 }\r
521                 [Test]\r
522                 public void System_Diagnostics_DebuggerNonUserCodeAttribute () {\r
523                         Test<global::System.Diagnostics.DebuggerNonUserCodeAttribute> ();\r
524                 }\r
525                 [Test]\r
526                 public void System_Diagnostics_DebuggableAttribute_DebuggingModes () {\r
527                         Test<global::System.Diagnostics.DebuggableAttribute.DebuggingModes> ();\r
528                 }\r
529                 [Test]\r
530                 public void System_Diagnostics_DebuggerBrowsableState () {\r
531                         Test<global::System.Diagnostics.DebuggerBrowsableState> ();\r
532                 }\r
533                 [Test]\r
534                 [Category ("NotWorking")]\r
535                 public void System_Runtime_Serialization_ObjectIDGenerator () {\r
536                         Test<global::System.Runtime.Serialization.ObjectIDGenerator> ();\r
537                 }\r
538                 [Test]\r
539                 public void System_Runtime_Serialization_SerializationException () {\r
540                         Test<global::System.Runtime.Serialization.SerializationException> ();\r
541                 }\r
542                 [Test]\r
543                 [Category ("NotWorking")]\r
544                 public void System_Runtime_Serialization_StreamingContext () {\r
545                         Test<global::System.Runtime.Serialization.StreamingContext> ();\r
546                 }\r
547                 [Test]\r
548                 [Category ("NotWorking")]\r
549                 public void System_Runtime_Serialization_StreamingContextStates () {\r
550                         Test<global::System.Runtime.Serialization.StreamingContextStates> ();\r
551                 }\r
552                 [Test]\r
553                 public void System_Globalization_CalendarAlgorithmType () {\r
554                         Test<global::System.Globalization.CalendarAlgorithmType> ();\r
555                 }\r
556                 [Test]\r
557                 public void System_Globalization_CalendarWeekRule () {\r
558                         Test<global::System.Globalization.CalendarWeekRule> ();\r
559                 }\r
560                 [Test]\r
561                 [Category ("NotWorking")]\r
562                 public void System_Globalization_ChineseLunisolarCalendar () {\r
563                         Test<global::System.Globalization.ChineseLunisolarCalendar> ();\r
564                 }\r
565                 [Test]\r
566                 public void System_Globalization_CompareOptions () {\r
567                         Test<global::System.Globalization.CompareOptions> ();\r
568                 }\r
569                 [Test]\r
570                 [Category ("NotWorking")]\r
571                 public void System_Globalization_CultureTypes () {\r
572                         Test<global::System.Globalization.CultureTypes> ();\r
573                 }\r
574                 [Test]\r
575                 public void System_Globalization_DateTimeStyles () {\r
576                         Test<global::System.Globalization.DateTimeStyles> ();\r
577                 }\r
578                 [Test]\r
579                 public void System_Globalization_DigitShapes () {\r
580                         Test<global::System.Globalization.DigitShapes> ();\r
581                 }\r
582                 [Test]\r
583                 public void System_Globalization_GregorianCalendar () {\r
584                         Test<global::System.Globalization.GregorianCalendar> ();\r
585                 }\r
586                 [Test]\r
587                 public void System_Globalization_HebrewCalendar () {\r
588                         Test<global::System.Globalization.HebrewCalendar> ();\r
589                 }\r
590                 [Test]\r
591                 public void System_Globalization_HijriCalendar () {\r
592                         Test<global::System.Globalization.HijriCalendar> ();\r
593                 }\r
594                 [Test]\r
595                 public void System_Globalization_PersianCalendar () {\r
596                         Test<global::System.Globalization.PersianCalendar> ();\r
597                 }\r
598                 [Test]\r
599                 public void System_Globalization_JulianCalendar () {\r
600                         Test<global::System.Globalization.JulianCalendar> ();\r
601                 }\r
602                 [Test]\r
603                 [Category ("NotWorking")]\r
604                 public void System_Globalization_KoreanLunisolarCalendar () {\r
605                         Test<global::System.Globalization.KoreanLunisolarCalendar> ();\r
606                 }\r
607                 [Test]\r
608                 public void System_Globalization_StringInfo () {\r
609                         Test<global::System.Globalization.StringInfo> ();\r
610                 }\r
611                 [Test]\r
612                 public void System_Globalization_NumberFormatInfo () {\r
613                         Test<global::System.Globalization.NumberFormatInfo> ();\r
614                 }\r
615                 [Test]\r
616                 public void System_Globalization_NumberStyles () {\r
617                         Test<global::System.Globalization.NumberStyles> ();\r
618                 }\r
619                 [Test]\r
620                 public void System_Globalization_UmAlQuraCalendar () {\r
621                         Test<global::System.Globalization.UmAlQuraCalendar> ();\r
622                 }\r
623                 [Test]\r
624                 public void System_Globalization_UnicodeCategory () {\r
625                         Test<global::System.Globalization.UnicodeCategory> ();\r
626                 }\r
627                 [Test]\r
628                 public void System_Text_DecoderExceptionFallback () {\r
629                         Test<global::System.Text.DecoderExceptionFallback> ();\r
630                 }\r
631                 [Test]\r
632                 public void System_Text_DecoderFallbackException () {\r
633                         Test<global::System.Text.DecoderFallbackException> ();\r
634                 }\r
635                 [Test]\r
636                 public void System_Text_DecoderReplacementFallback () {\r
637                         Test<global::System.Text.DecoderReplacementFallback> ();\r
638                 }\r
639                 [Test]\r
640                 public void System_Text_EncoderExceptionFallback () {\r
641                         Test<global::System.Text.EncoderExceptionFallback> ();\r
642                 }\r
643                 [Test]\r
644                 [Category ("NotWorking")]\r
645                 public void System_Text_EncoderFallbackException () {\r
646                         Test<global::System.Text.EncoderFallbackException> ();\r
647                 }\r
648                 [Test]\r
649                 public void System_Text_EncoderReplacementFallback () {\r
650                         Test<global::System.Text.EncoderReplacementFallback> ();\r
651                 }\r
652                 [Test]\r
653                 public void System_Resources_MissingManifestResourceException () {\r
654                         Test<global::System.Resources.MissingManifestResourceException> ();\r
655                 }\r
656                 [Test]\r
657                 public void System_Resources_MissingSatelliteAssemblyException () {\r
658                         Test<global::System.Resources.MissingSatelliteAssemblyException> ();\r
659                 }\r
660                 [Test]\r
661                 public void System_Resources_UltimateResourceFallbackLocation () {\r
662                         Test<global::System.Resources.UltimateResourceFallbackLocation> ();\r
663                 }\r
664                 [Test]\r
665                 [Category ("NotWorking")]\r
666                 public void System_Security_Policy_AllMembershipCondition () {\r
667                         Test<global::System.Security.Policy.AllMembershipCondition> ();\r
668                 }\r
669                 [Test]\r
670                 [Category ("NotWorking")]\r
671                 public void System_Security_Policy_ApplicationDirectoryMembershipCondition () {\r
672                         Test<global::System.Security.Policy.ApplicationDirectoryMembershipCondition> ();\r
673                 }\r
674                 [Test]\r
675                 public void System_Security_Policy_ApplicationVersionMatch () {\r
676                         Test<global::System.Security.Policy.ApplicationVersionMatch> ();\r
677                 }\r
678                 [Test]\r
679                 [Category ("NotWorking")]\r
680                 public void System_Security_Policy_ApplicationTrust () {\r
681                         Test<global::System.Security.Policy.ApplicationTrust> ();\r
682                 }\r
683                 [Test]\r
684                 public void System_Security_Policy_Evidence () {\r
685                         Test<global::System.Security.Policy.Evidence> ();\r
686                 }\r
687                 [Test]\r
688                 public void System_Security_Policy_TrustManagerUIContext () {\r
689                         Test<global::System.Security.Policy.TrustManagerUIContext> ();\r
690                 }\r
691                 [Test]\r
692                 public void System_Security_Policy_PolicyException () {\r
693                         Test<global::System.Security.Policy.PolicyException> ();\r
694                 }\r
695                 [Test]\r
696                 public void System_Security_Policy_PolicyStatementAttribute () {\r
697                         Test<global::System.Security.Policy.PolicyStatementAttribute> ();\r
698                 }\r
699                 [Test]\r
700                 public void System_Security_Policy_GacInstalled () {\r
701                         Test<global::System.Security.Policy.GacInstalled> ();\r
702                 }\r
703                 [Test]\r
704                 [Category ("NotWorking")]\r
705                 public void System_Security_Policy_GacMembershipCondition () {\r
706                         Test<global::System.Security.Policy.GacMembershipCondition> ();\r
707                 }\r
708                 [Test]\r
709                 public void System_Security_Principal_PrincipalPolicy () {\r
710                         Test<global::System.Security.Principal.PrincipalPolicy> ();\r
711                 }\r
712                 [Test]\r
713                 public void System_Security_Principal_WindowsAccountType () {\r
714                         Test<global::System.Security.Principal.WindowsAccountType> ();\r
715                 }\r
716                 [Test]\r
717                 public void System_Security_Principal_TokenImpersonationLevel () {\r
718                         Test<global::System.Security.Principal.TokenImpersonationLevel> ();\r
719                 }\r
720                 [Test]\r
721                 [Category ("NotWorking")]\r
722                 public void System_Security_Principal_TokenAccessLevels () {\r
723                         Test<global::System.Security.Principal.TokenAccessLevels> ();\r
724                 }\r
725                 [Test]\r
726                 public void System_Runtime_ConstrainedExecution_Consistency () {\r
727                         Test<global::System.Runtime.ConstrainedExecution.Consistency> ();\r
728                 }\r
729                 [Test]\r
730                 public void System_Runtime_ConstrainedExecution_Cer () {\r
731                         Test<global::System.Runtime.ConstrainedExecution.Cer> ();\r
732                 }\r
733                 [Test]\r
734                 public void System_IO_SearchOption () {\r
735                         Test<global::System.IO.SearchOption> ();\r
736                 }\r
737                 [Test]\r
738                 public void System_IO_IOException () {\r
739                         Test<global::System.IO.IOException> ();\r
740                 }\r
741                 [Test]\r
742                 public void System_IO_DirectoryNotFoundException () {\r
743                         Test<global::System.IO.DirectoryNotFoundException> ();\r
744                 }\r
745                 [Test]\r
746                 public void System_IO_DriveType () {\r
747                         Test<global::System.IO.DriveType> ();\r
748                 }\r
749                 [Test]\r
750                 public void System_IO_DriveNotFoundException () {\r
751                         Test<global::System.IO.DriveNotFoundException> ();\r
752                 }\r
753                 [Test]\r
754                 public void System_IO_EndOfStreamException () {\r
755                         Test<global::System.IO.EndOfStreamException> ();\r
756                 }\r
757                 [Test]\r
758                 [Category ("NotWorking")]\r
759                 public void System_IO_FileAccess () {\r
760                         Test<global::System.IO.FileAccess> ();\r
761                 }\r
762                 [Test]\r
763                 [Category ("NotWorking")]\r
764                 public void System_IO_FileLoadException () {\r
765                         Test<global::System.IO.FileLoadException> ();\r
766                 }\r
767                 [Test]\r
768                 public void System_IO_FileNotFoundException () {\r
769                         Test<global::System.IO.FileNotFoundException> ();\r
770                 }\r
771                 [Test]\r
772                 public void System_IO_FileOptions () {\r
773                         Test<global::System.IO.FileOptions> ();\r
774                 }\r
775                 [Test]\r
776                 public void System_IO_FileShare () {\r
777                         Test<global::System.IO.FileShare> ();\r
778                 }\r
779                 [Test]\r
780                 [Category ("NotWorking")]\r
781                 public void System_IO_FileAttributes () {\r
782                         Test<global::System.IO.FileAttributes> ();\r
783                 }\r
784                 [Test]\r
785                 public void System_IO_MemoryStream () {\r
786                         Test<global::System.IO.MemoryStream> ();\r
787                 }\r
788                 [Test]\r
789                 public void System_IO_PathTooLongException () {\r
790                         Test<global::System.IO.PathTooLongException> ();\r
791                 }\r
792                 [Test]\r
793                 public void System_IO_SeekOrigin () {\r
794                         Test<global::System.IO.SeekOrigin> ();\r
795                 }\r
796                 //[Test]\r
797                 //public void System_Runtime_GCLatencyMode () {\r
798                 //    Test<global::System.Runtime.GCLatencyMode> ();\r
799                 //}\r
800                 [Test]\r
801                 public void System_Security_XmlSyntaxException () {\r
802                         Test<global::System.Security.XmlSyntaxException> ();\r
803                 }\r
804                 [Test]\r
805                 public void System_Security_Permissions_EnvironmentPermissionAccess () {\r
806                         Test<global::System.Security.Permissions.EnvironmentPermissionAccess> ();\r
807                 }\r
808                 [Test]\r
809                 public void System_Security_Permissions_FileDialogPermissionAccess () {\r
810                         Test<global::System.Security.Permissions.FileDialogPermissionAccess> ();\r
811                 }\r
812                 [Test]\r
813                 public void System_Security_Permissions_FileIOPermissionAccess () {\r
814                         Test<global::System.Security.Permissions.FileIOPermissionAccess> ();\r
815                 }\r
816                 [Test]\r
817                 public void System_Security_Permissions_HostProtectionResource () {\r
818                         Test<global::System.Security.Permissions.HostProtectionResource> ();\r
819                 }\r
820                 [Test]\r
821                 public void System_Security_Permissions_HostProtectionAttribute () {\r
822                         Test<global::System.Security.Permissions.HostProtectionAttribute> ();\r
823                 }\r
824                 [Test]\r
825                 public void System_Security_Permissions_IsolatedStorageContainment () {\r
826                         Test<global::System.Security.Permissions.IsolatedStorageContainment> ();\r
827                 }\r
828                 [Test]\r
829                 public void System_Security_Permissions_PermissionState () {\r
830                         Test<global::System.Security.Permissions.PermissionState> ();\r
831                 }\r
832                 [Test]\r
833                 public void System_Security_Permissions_ReflectionPermissionFlag () {\r
834                         Test<global::System.Security.Permissions.ReflectionPermissionFlag> ();\r
835                 }\r
836                 [Test]\r
837                 public void System_Security_Permissions_SecurityPermissionFlag () {\r
838                         Test<global::System.Security.Permissions.SecurityPermissionFlag> ();\r
839                 }\r
840                 [Test]\r
841                 public void System_Security_Permissions_UIPermissionWindow () {\r
842                         Test<global::System.Security.Permissions.UIPermissionWindow> ();\r
843                 }\r
844                 [Test]\r
845                 public void System_Security_Permissions_UIPermissionClipboard () {\r
846                         Test<global::System.Security.Permissions.UIPermissionClipboard> ();\r
847                 }\r
848                 [Test]\r
849                 public void System_Security_Permissions_GacIdentityPermission () {\r
850                         Test<global::System.Security.Permissions.GacIdentityPermission> ();\r
851                 }\r
852                 [Test]\r
853                 public void System_Security_Permissions_KeyContainerPermissionFlags () {\r
854                         Test<global::System.Security.Permissions.KeyContainerPermissionFlags> ();\r
855                 }\r
856                 [Test]\r
857                 public void System_Security_Permissions_RegistryPermissionAccess () {\r
858                         Test<global::System.Security.Permissions.RegistryPermissionAccess> ();\r
859                 }\r
860                 [Test]\r
861                 public void System_Security_SecurityCriticalScope () {\r
862                         Test<global::System.Security.SecurityCriticalScope> ();\r
863                 }\r
864                 [Test]\r
865                 public void System_Security_HostSecurityManagerOptions () {\r
866                         Test<global::System.Security.HostSecurityManagerOptions> ();\r
867                 }\r
868                 [Test]\r
869                 public void System_Security_HostSecurityManager () {\r
870                         Test<global::System.Security.HostSecurityManager> ();\r
871                 }\r
872                 [Test]\r
873                 public void System_Security_PolicyLevelType () {\r
874                         Test<global::System.Security.PolicyLevelType> ();\r
875                 }\r
876                 [Test]\r
877                 public void System_Security_SecurityZone () {\r
878                         Test<global::System.Security.SecurityZone> ();\r
879                 }\r
880                 [Test]\r
881                 public void System_Security_VerificationException () {\r
882                         Test<global::System.Security.VerificationException> ();\r
883                 }\r
884                 [Test]\r
885                 public void System_Runtime_Remoting_Channels_ServerProcessing () {\r
886                         Test<global::System.Runtime.Remoting.Channels.ServerProcessing> ();\r
887                 }\r
888                 [Test]\r
889                 public void System_Runtime_Remoting_Channels_TransportHeaders () {\r
890                         Test<global::System.Runtime.Remoting.Channels.TransportHeaders> ();\r
891                 }\r
892                 [Test]\r
893                 public void System_Runtime_Remoting_Lifetime_LeaseState () {\r
894                         Test<global::System.Runtime.Remoting.Lifetime.LeaseState> ();\r
895                 }\r
896                 [Test]\r
897                 public void System_Runtime_Remoting_Metadata_SoapOption () {\r
898                         Test<global::System.Runtime.Remoting.Metadata.SoapOption> ();\r
899                 }\r
900                 [Test]\r
901                 public void System_Runtime_Remoting_Metadata_XmlFieldOrderOption () {\r
902                         Test<global::System.Runtime.Remoting.Metadata.XmlFieldOrderOption> ();\r
903                 }\r
904                 [Test]\r
905                 public void System_Runtime_Remoting_CustomErrorsModes () {\r
906                         Test<global::System.Runtime.Remoting.CustomErrorsModes> ();\r
907                 }\r
908                 [Test]\r
909                 public void System_Runtime_Remoting_RemotingException () {\r
910                         Test<global::System.Runtime.Remoting.RemotingException> ();\r
911                 }\r
912                 [Test]\r
913                 public void System_Runtime_Remoting_ServerException () {\r
914                         Test<global::System.Runtime.Remoting.ServerException> ();\r
915                 }\r
916                 [Test]\r
917                 public void System_Runtime_Remoting_RemotingTimeoutException () {\r
918                         Test<global::System.Runtime.Remoting.RemotingTimeoutException> ();\r
919                 }\r
920                 [Test]\r
921                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapTime () {\r
922                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime> ();\r
923                 }\r
924                 [Test]\r
925                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapDate () {\r
926                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate> ();\r
927                 }\r
928                 [Test]\r
929                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapYearMonth () {\r
930                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth> ();\r
931                 }\r
932                 [Test]\r
933                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapYear () {\r
934                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear> ();\r
935                 }\r
936                 [Test]\r
937                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapMonthDay () {\r
938                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay> ();\r
939                 }\r
940                 [Test]\r
941                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapDay () {\r
942                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay> ();\r
943                 }\r
944                 [Test]\r
945                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapMonth () {\r
946                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth> ();\r
947                 }\r
948                 [Test]\r
949                 [Category ("NotWorking")]\r
950                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapHexBinary () {\r
951                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary> ();\r
952                 }\r
953                 [Test]\r
954                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapBase64Binary () {\r
955                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary> ();\r
956                 }\r
957                 [Test]\r
958                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapInteger () {\r
959                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger> ();\r
960                 }\r
961                 [Test]\r
962                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapPositiveInteger () {\r
963                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger> ();\r
964                 }\r
965                 [Test]\r
966                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNonPositiveInteger () {\r
967                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger> ();\r
968                 }\r
969                 [Test]\r
970                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNonNegativeInteger () {\r
971                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger> ();\r
972                 }\r
973                 [Test]\r
974                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNegativeInteger () {\r
975                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger> ();\r
976                 }\r
977                 [Test]\r
978                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapAnyUri () {\r
979                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri> ();\r
980                 }\r
981                 [Test]\r
982                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapQName () {\r
983                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName> ();\r
984                 }\r
985                 [Test]\r
986                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNotation () {\r
987                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation> ();\r
988                 }\r
989                 [Test]\r
990                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNormalizedString () {\r
991                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString> ();\r
992                 }\r
993                 [Test]\r
994                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapToken () {\r
995                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken> ();\r
996                 }\r
997                 [Test]\r
998                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapLanguage () {\r
999                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage> ();\r
1000                 }\r
1001                 [Test]\r
1002                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapName () {\r
1003                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName> ();\r
1004                 }\r
1005                 [Test]\r
1006                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapIdrefs () {\r
1007                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs> ();\r
1008                 }\r
1009                 [Test]\r
1010                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapEntities () {\r
1011                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities> ();\r
1012                 }\r
1013                 [Test]\r
1014                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNmtoken () {\r
1015                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken> ();\r
1016                 }\r
1017                 [Test]\r
1018                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNmtokens () {\r
1019                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens> ();\r
1020                 }\r
1021                 [Test]\r
1022                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapNcName () {\r
1023                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName> ();\r
1024                 }\r
1025                 [Test]\r
1026                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapId () {\r
1027                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId> ();\r
1028                 }\r
1029                 [Test]\r
1030                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapIdref () {\r
1031                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref> ();\r
1032                 }\r
1033                 [Test]\r
1034                 public void System_Runtime_Remoting_Metadata_W3cXsd2001_SoapEntity () {\r
1035                         Test<global::System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity> ();\r
1036                 }\r
1037                 [Test]\r
1038                 public void System_Runtime_Remoting_Contexts_SynchronizationAttribute () {\r
1039                         Test<global::System.Runtime.Remoting.Contexts.SynchronizationAttribute> ();\r
1040                 }\r
1041                 [Test]\r
1042                 public void System_IO_IsolatedStorage_IsolatedStorageScope () {\r
1043                         Test<global::System.IO.IsolatedStorage.IsolatedStorageScope> ();\r
1044                 }\r
1045                 [Test]\r
1046                 public void System_IO_IsolatedStorage_IsolatedStorageException () {\r
1047                         Test<global::System.IO.IsolatedStorage.IsolatedStorageException> ();\r
1048                 }\r
1049                 [Test]\r
1050                 public void System_Runtime_Serialization_Formatters_FormatterTypeStyle () {\r
1051                         Test<global::System.Runtime.Serialization.Formatters.FormatterTypeStyle> ();\r
1052                 }\r
1053                 [Test]\r
1054                 public void System_Runtime_Serialization_Formatters_FormatterAssemblyStyle () {\r
1055                         Test<global::System.Runtime.Serialization.Formatters.FormatterAssemblyStyle> ();\r
1056                 }\r
1057                 [Test]\r
1058                 [Category ("NotWorking")]\r
1059                 public void System_Runtime_Serialization_Formatters_SoapMessage () {\r
1060                         Test<global::System.Runtime.Serialization.Formatters.SoapMessage> ();\r
1061                 }\r
1062                 [Test]\r
1063                 public void System_Runtime_Serialization_Formatters_SoapFault () {\r
1064                         Test<global::System.Runtime.Serialization.Formatters.SoapFault> ();\r
1065                 }\r
1066                 [Test]\r
1067                 public void System_Configuration_Assemblies_AssemblyHash () {\r
1068                         Test<global::System.Configuration.Assemblies.AssemblyHash> ();\r
1069                 }\r
1070                 [Test]\r
1071                 public void System_Configuration_Assemblies_AssemblyHashAlgorithm () {\r
1072                         Test<global::System.Configuration.Assemblies.AssemblyHashAlgorithm> ();\r
1073                 }\r
1074                 [Test]\r
1075                 public void System_Security_Cryptography_CryptographicException () {\r
1076                         Test<global::System.Security.Cryptography.CryptographicException> ();\r
1077                 }\r
1078                 [Test]\r
1079                 public void System_Security_Cryptography_CryptographicUnexpectedOperationException () {\r
1080                         Test<global::System.Security.Cryptography.CryptographicUnexpectedOperationException> ();\r
1081                 }\r
1082                 [Test]\r
1083                 public void System_Security_Cryptography_FromBase64TransformMode () {\r
1084                         Test<global::System.Security.Cryptography.FromBase64TransformMode> ();\r
1085                 }\r
1086                 [Test]\r
1087                 public void System_Security_Cryptography_CspProviderFlags () {\r
1088                         Test<global::System.Security.Cryptography.CspProviderFlags> ();\r
1089                 }\r
1090                 [Test]\r
1091                 public void System_Security_Cryptography_CryptoStreamMode () {\r
1092                         Test<global::System.Security.Cryptography.CryptoStreamMode> ();\r
1093                 }\r
1094                 [Test]\r
1095                 public void System_Security_Cryptography_DSAParameters () {\r
1096                         Test<global::System.Security.Cryptography.DSAParameters> ();\r
1097                 }\r
1098                 [Test]\r
1099                 public void System_Security_Cryptography_RSAParameters () {\r
1100                         Test<global::System.Security.Cryptography.RSAParameters> ();\r
1101                 }\r
1102                 [Test]\r
1103                 public void System_Security_Cryptography_X509Certificates_X509ContentType () {\r
1104                         Test<global::System.Security.Cryptography.X509Certificates.X509ContentType> ();\r
1105                 }\r
1106                 [Test]\r
1107                 public void System_Security_Cryptography_X509Certificates_X509KeyStorageFlags () {\r
1108                         Test<global::System.Security.Cryptography.X509Certificates.X509KeyStorageFlags> ();\r
1109                 }\r
1110                 [Test]\r
1111                 [Category ("NotWorking")]\r
1112                 public void System_Security_Cryptography_X509Certificates_X509Certificate () {\r
1113                         Test<global::System.Security.Cryptography.X509Certificates.X509Certificate> ();\r
1114                 }\r
1115                 [Test]\r
1116                 public void System_Security_AccessControl_AceType () {\r
1117                         Test<global::System.Security.AccessControl.AceType> ();\r
1118                 }\r
1119                 [Test]\r
1120                 public void System_Security_AccessControl_AceFlags () {\r
1121                         Test<global::System.Security.AccessControl.AceFlags> ();\r
1122                 }\r
1123                 [Test]\r
1124                 public void System_Security_AccessControl_AceQualifier () {\r
1125                         Test<global::System.Security.AccessControl.AceQualifier> ();\r
1126                 }\r
1127                 [Test]\r
1128                 public void System_Security_AccessControl_ObjectAceFlags () {\r
1129                         Test<global::System.Security.AccessControl.ObjectAceFlags> ();\r
1130                 }\r
1131                 [Test]\r
1132                 [Category ("NotWorking")]\r
1133                 public void System_Security_AccessControl_CryptoKeyRights () {\r
1134                         Test<global::System.Security.AccessControl.CryptoKeyRights> ();\r
1135                 }\r
1136                 [Test]\r
1137                 public void System_Security_AccessControl_InheritanceFlags () {\r
1138                         Test<global::System.Security.AccessControl.InheritanceFlags> ();\r
1139                 }\r
1140                 [Test]\r
1141                 public void System_Security_AccessControl_PropagationFlags () {\r
1142                         Test<global::System.Security.AccessControl.PropagationFlags> ();\r
1143                 }\r
1144                 [Test]\r
1145                 public void System_Security_AccessControl_AuditFlags () {\r
1146                         Test<global::System.Security.AccessControl.AuditFlags> ();\r
1147                 }\r
1148                 [Test]\r
1149                 [Category ("NotWorking")]\r
1150                 public void System_Security_AccessControl_SecurityInfos () {\r
1151                         Test<global::System.Security.AccessControl.SecurityInfos> ();\r
1152                 }\r
1153                 [Test]\r
1154                 public void System_Security_AccessControl_ResourceType () {\r
1155                         Test<global::System.Security.AccessControl.ResourceType> ();\r
1156                 }\r
1157                 [Test]\r
1158                 public void System_Security_AccessControl_AccessControlSections () {\r
1159                         Test<global::System.Security.AccessControl.AccessControlSections> ();\r
1160                 }\r
1161                 [Test]\r
1162                 public void System_Security_AccessControl_AccessControlActions () {\r
1163                         Test<global::System.Security.AccessControl.AccessControlActions> ();\r
1164                 }\r
1165                 [Test]\r
1166                 [Category ("NotWorking")]\r
1167                 public void System_Security_AccessControl_EventWaitHandleRights () {\r
1168                         Test<global::System.Security.AccessControl.EventWaitHandleRights> ();\r
1169                 }\r
1170                 [Test]\r
1171                 [Category ("NotWorking")]\r
1172                 public void System_Security_AccessControl_FileSystemRights () {\r
1173                         Test<global::System.Security.AccessControl.FileSystemRights> ();\r
1174                 }\r
1175                 [Test]\r
1176                 [Category ("NotWorking")]\r
1177                 public void System_Security_AccessControl_MutexRights () {\r
1178                         Test<global::System.Security.AccessControl.MutexRights> ();\r
1179                 }\r
1180                 [Test]\r
1181                 public void System_Security_AccessControl_AccessControlModification () {\r
1182                         Test<global::System.Security.AccessControl.AccessControlModification> ();\r
1183                 }\r
1184                 [Test]\r
1185                 [Category ("NotWorking")]\r
1186                 public void System_Security_AccessControl_PrivilegeNotHeldException () {\r
1187                         Test<global::System.Security.AccessControl.PrivilegeNotHeldException> ();\r
1188                 }\r
1189                 [Test]\r
1190                 [Category ("NotWorking")]\r
1191                 public void System_Security_AccessControl_RegistryRights () {\r
1192                         Test<global::System.Security.AccessControl.RegistryRights> ();\r
1193                 }\r
1194                 [Test]\r
1195                 public void System_Security_AccessControl_AccessControlType () {\r
1196                         Test<global::System.Security.AccessControl.AccessControlType> ();\r
1197                 }\r
1198                 [Test]\r
1199                 public void System_Security_AccessControl_ControlFlags () {\r
1200                         Test<global::System.Security.AccessControl.ControlFlags> ();\r
1201                 }\r
1202                 [Test]\r
1203                 public void System_Security_Principal_WellKnownSidType () {\r
1204                         Test<global::System.Security.Principal.WellKnownSidType> ();\r
1205                 }\r
1206                 [Test]\r
1207                 public void System_Security_Principal_IdentityNotMappedException () {\r
1208                         Test<global::System.Security.Principal.IdentityNotMappedException> ();\r
1209                 }\r
1210                 [Test]\r
1211                 public void System_Runtime_Versioning_ResourceScope () {\r
1212                         Test<global::System.Runtime.Versioning.ResourceScope> ();\r
1213                 }\r
1214         }\r
1215 }\r