-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathnunit.framework.xml
10385 lines (10366 loc) · 542 KB
/
nunit.framework.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>nunit.framework</name>
</assembly>
<members>
<member name="T:NUnit.Framework.CategoryAttribute">
<summary>
Attribute used to apply a category to a test
</summary>
</member>
<member name="F:NUnit.Framework.CategoryAttribute.categoryName">
<summary>
The name of the category
</summary>
</member>
<member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
<summary>
Construct attribute for a given category based on
a name. The name may not contain the characters ',',
'+', '-' or '!'. However, this is not checked in the
constructor since it would cause an error to arise at
as the test was loaded without giving a clear indication
of where the problem is located. The error is handled
in NUnitFramework.cs by marking the test as not
runnable.
</summary>
<param name="name">The name of the category</param>
</member>
<member name="M:NUnit.Framework.CategoryAttribute.#ctor">
<summary>
Protected constructor uses the Type name as the name
of the category.
</summary>
</member>
<member name="P:NUnit.Framework.CategoryAttribute.Name">
<summary>
The name of the category
</summary>
</member>
<member name="T:NUnit.Framework.DatapointAttribute">
<summary>
Used to mark a field for use as a datapoint when executing a theory
within the same fixture that requires an argument of the field's Type.
</summary>
</member>
<member name="T:NUnit.Framework.DatapointsAttribute">
<summary>
Used to mark an array as containing a set of datapoints to be used
executing a theory within the same fixture that requires an argument
of the Type of the array elements.
</summary>
</member>
<member name="T:NUnit.Framework.DescriptionAttribute">
<summary>
Attribute used to provide descriptive text about a
test case or fixture.
</summary>
</member>
<member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
<summary>
Construct the attribute
</summary>
<param name="description">Text describing the test</param>
</member>
<member name="P:NUnit.Framework.DescriptionAttribute.Description">
<summary>
Gets the test description
</summary>
</member>
<member name="T:NUnit.Framework.MessageMatch">
<summary>
Enumeration indicating how the expected message parameter is to be used
</summary>
</member>
<member name="F:NUnit.Framework.MessageMatch.Exact">
Expect an exact match
</member>
<member name="F:NUnit.Framework.MessageMatch.Contains">
Expect a message containing the parameter string
</member>
<member name="F:NUnit.Framework.MessageMatch.Regex">
Match the regular expression provided as a parameter
</member>
<member name="F:NUnit.Framework.MessageMatch.StartsWith">
Expect a message that starts with the parameter string
</member>
<member name="T:NUnit.Framework.ExpectedExceptionAttribute">
<summary>
ExpectedExceptionAttribute
</summary>
</member>
<member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
<summary>
Constructor for a non-specific exception
</summary>
</member>
<member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
<summary>
Constructor for a given type of exception
</summary>
<param name="exceptionType">The type of the expected exception</param>
</member>
<member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
<summary>
Constructor for a given exception name
</summary>
<param name="exceptionName">The full name of the expected exception</param>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
<summary>
Gets or sets the expected exception type
</summary>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
<summary>
Gets or sets the full Type name of the expected exception
</summary>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
<summary>
Gets or sets the expected message text
</summary>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
<summary>
Gets or sets the user message displayed in case of failure
</summary>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
<summary>
Gets or sets the type of match to be performed on the expected message
</summary>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
<summary>
Gets the name of a method to be used as an exception handler
</summary>
</member>
<member name="T:NUnit.Framework.ExplicitAttribute">
<summary>
ExplicitAttribute marks a test or test fixture so that it will
only be run if explicitly executed from the gui or command line
or if it is included by use of a filter. The test will not be
run simply because an enclosing suite is run.
</summary>
</member>
<member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
<summary>
Constructor with a reason
</summary>
<param name="reason">The reason test is marked explicit</param>
</member>
<member name="P:NUnit.Framework.ExplicitAttribute.Reason">
<summary>
The reason test is marked explicit
</summary>
</member>
<member name="T:NUnit.Framework.IgnoreAttribute">
<summary>
Attribute used to mark a test that is to be ignored.
Ignored tests result in a warning message when the
tests are run.
</summary>
</member>
<member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
<summary>
Constructs the attribute without giving a reason
for ignoring the test.
</summary>
</member>
<member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
<summary>
Constructs the attribute giving a reason for ignoring the test
</summary>
<param name="reason">The reason for ignoring the test</param>
</member>
<member name="P:NUnit.Framework.IgnoreAttribute.Reason">
<summary>
The reason for ignoring a test
</summary>
</member>
<member name="T:NUnit.Framework.IncludeExcludeAttribute">
<summary>
Abstract base for Attributes that are used to include tests
in the test run based on environmental settings.
</summary>
</member>
<member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
<summary>
Constructor with no included items specified, for use
with named property syntax.
</summary>
</member>
<member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
<summary>
Constructor taking one or more included items
</summary>
<param name="include">Comma-delimited list of included items</param>
</member>
<member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
<summary>
Name of the item that is needed in order for
a test to run. Multiple itemss may be given,
separated by a comma.
</summary>
</member>
<member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
<summary>
Name of the item to be excluded. Multiple items
may be given, separated by a comma.
</summary>
</member>
<member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
<summary>
The reason for including or excluding the test
</summary>
</member>
<member name="T:NUnit.Framework.PlatformAttribute">
<summary>
PlatformAttribute is used to mark a test fixture or an
individual method as applying to a particular platform only.
</summary>
</member>
<member name="M:NUnit.Framework.PlatformAttribute.#ctor">
<summary>
Constructor with no platforms specified, for use
with named property syntax.
</summary>
</member>
<member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
<summary>
Constructor taking one or more platforms
</summary>
<param name="platforms">Comma-deliminted list of platforms</param>
</member>
<member name="T:NUnit.Framework.CultureAttribute">
<summary>
CultureAttribute is used to mark a test fixture or an
individual method as applying to a particular Culture only.
</summary>
</member>
<member name="M:NUnit.Framework.CultureAttribute.#ctor">
<summary>
Constructor with no cultures specified, for use
with named property syntax.
</summary>
</member>
<member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
<summary>
Constructor taking one or more cultures
</summary>
<param name="cultures">Comma-deliminted list of cultures</param>
</member>
<member name="T:NUnit.Framework.CombinatorialAttribute">
<summary>
Marks a test to use a combinatorial join of any argument data
provided. NUnit will create a test case for every combination of
the arguments provided. This can result in a large number of test
cases and so should be used judiciously. This is the default join
type, so the attribute need not be used except as documentation.
</summary>
</member>
<member name="T:NUnit.Framework.PropertyAttribute">
<summary>
PropertyAttribute is used to attach information to a test as a name/value pair..
</summary>
</member>
<member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
<summary>
Construct a PropertyAttribute with a name and string value
</summary>
<param name="propertyName">The name of the property</param>
<param name="propertyValue">The property value</param>
</member>
<member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
<summary>
Construct a PropertyAttribute with a name and int value
</summary>
<param name="propertyName">The name of the property</param>
<param name="propertyValue">The property value</param>
</member>
<member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
<summary>
Construct a PropertyAttribute with a name and double value
</summary>
<param name="propertyName">The name of the property</param>
<param name="propertyValue">The property value</param>
</member>
<member name="M:NUnit.Framework.PropertyAttribute.#ctor">
<summary>
Constructor for derived classes that set the
property dictionary directly.
</summary>
</member>
<member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
<summary>
Constructor for use by derived classes that use the
name of the type as the property name. Derived classes
must ensure that the Type of the property value is
a standard type supported by the BCL. Any custom
types will cause a serialization Exception when
in the client.
</summary>
</member>
<member name="P:NUnit.Framework.PropertyAttribute.Properties">
<summary>
Gets the property dictionary for this attribute
</summary>
</member>
<member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="T:NUnit.Framework.PairwiseAttribute">
<summary>
Marks a test to use pairwise join of any argument data provided.
NUnit will attempt too excercise every pair of argument values at
least once, using as small a number of test cases as it can. With
only two arguments, this is the same as a combinatorial join.
</summary>
</member>
<member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="T:NUnit.Framework.SequentialAttribute">
<summary>
Marks a test to use a sequential join of any argument data
provided. NUnit will use arguements for each parameter in
sequence, generating test cases up to the largest number
of argument values provided and using null for any arguments
for which it runs out of values. Normally, this should be
used with the same number of arguments for each parameter.
</summary>
</member>
<member name="M:NUnit.Framework.SequentialAttribute.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="T:NUnit.Framework.MaxTimeAttribute">
<summary>
Summary description for MaxTimeAttribute.
</summary>
</member>
<member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
<summary>
Construct a MaxTimeAttribute, given a time in milliseconds.
</summary>
<param name="milliseconds">The maximum elapsed time in milliseconds</param>
</member>
<member name="T:NUnit.Framework.RandomAttribute">
<summary>
RandomAttribute is used to supply a set of random values
to a single parameter of a parameterized test.
</summary>
</member>
<member name="T:NUnit.Framework.ValuesAttribute">
<summary>
ValuesAttribute is used to provide literal arguments for
an individual parameter of a test.
</summary>
</member>
<member name="T:NUnit.Framework.ParameterDataAttribute">
<summary>
Abstract base class for attributes that apply to parameters
and supply data for the parameter.
</summary>
</member>
<member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
<summary>
Gets the data to be provided to the specified parameter
</summary>
</member>
<member name="F:NUnit.Framework.ValuesAttribute.data">
<summary>
The collection of data to be returned. Must
be set by any derived attribute classes.
We use an object[] so that the individual
elements may have their type changed in GetData
if necessary.
</summary>
</member>
<member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
<summary>
Construct with one argument
</summary>
<param name="arg1"></param>
</member>
<member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
<summary>
Construct with two arguments
</summary>
<param name="arg1"></param>
<param name="arg2"></param>
</member>
<member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
<summary>
Construct with three arguments
</summary>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
</member>
<member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
<summary>
Construct with an array of arguments
</summary>
<param name="args"></param>
</member>
<member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
<summary>
Get the collection of values to be used as arguments
</summary>
</member>
<member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
<summary>
Construct a set of doubles from 0.0 to 1.0,
specifying only the count.
</summary>
<param name="count"></param>
</member>
<member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
<summary>
Construct a set of doubles from min to max
</summary>
<param name="min"></param>
<param name="max"></param>
<param name="count"></param>
</member>
<member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
Construct a set of ints from min to max
</summary>
<param name="min"></param>
<param name="max"></param>
<param name="count"></param>
</member>
<member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
<summary>
Get the collection of values to be used as arguments
</summary>
</member>
<member name="T:NUnit.Framework.RangeAttribute">
<summary>
RangeAttribute is used to supply a range of values to an
individual parameter of a parameterized test.
</summary>
</member>
<member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
<summary>
Construct a range of ints using default step of 1
</summary>
<param name="from"></param>
<param name="to"></param>
</member>
<member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
Construct a range of ints specifying the step size
</summary>
<param name="from"></param>
<param name="to"></param>
<param name="step"></param>
</member>
<member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
<summary>
Construct a range of longs
</summary>
<param name="from"></param>
<param name="to"></param>
<param name="step"></param>
</member>
<member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
<summary>
Construct a range of doubles
</summary>
<param name="from"></param>
<param name="to"></param>
<param name="step"></param>
</member>
<member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
<summary>
Construct a range of floats
</summary>
<param name="from"></param>
<param name="to"></param>
<param name="step"></param>
</member>
<member name="T:NUnit.Framework.RepeatAttribute">
<summary>
RepeatAttribute may be applied to test case in order
to run it multiple times.
</summary>
</member>
<member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
<summary>
Construct a RepeatAttribute
</summary>
<param name="count">The number of times to run the test</param>
</member>
<member name="T:NUnit.Framework.RequiredAddinAttribute">
<summary>
RequiredAddinAttribute may be used to indicate the names of any addins
that must be present in order to run some or all of the tests in an
assembly. If the addin is not loaded, the entire assembly is marked
as NotRunnable.
</summary>
</member>
<member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
</summary>
<param name="requiredAddin">The required addin.</param>
</member>
<member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
<summary>
Gets the name of required addin.
</summary>
<value>The required addin name.</value>
</member>
<member name="T:NUnit.Framework.SetCultureAttribute">
<summary>
Summary description for SetCultureAttribute.
</summary>
</member>
<member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
<summary>
Construct given the name of a culture
</summary>
<param name="culture"></param>
</member>
<member name="T:NUnit.Framework.SetUICultureAttribute">
<summary>
Summary description for SetUICultureAttribute.
</summary>
</member>
<member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
<summary>
Construct given the name of a culture
</summary>
<param name="culture"></param>
</member>
<member name="T:NUnit.Framework.SetUpAttribute">
<summary>
Attribute used to mark a class that contains one-time SetUp
and/or TearDown methods that apply to all the tests in a
namespace or an assembly.
</summary>
</member>
<member name="T:NUnit.Framework.SetUpFixtureAttribute">
<summary>
SetUpFixtureAttribute is used to identify a SetUpFixture
</summary>
</member>
<member name="T:NUnit.Framework.SuiteAttribute">
<summary>
Attribute used to mark a static (shared in VB) property
that returns a list of tests.
</summary>
</member>
<member name="T:NUnit.Framework.TearDownAttribute">
<summary>
Attribute used to identify a method that is called
immediately after each test is run. The method is
guaranteed to be called, even if an exception is thrown.
</summary>
</member>
<member name="T:NUnit.Framework.TestAttribute">
<summary>
Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
class makes the method callable from the NUnit test runner. There is a property
called Description which is optional which you can provide a more detailed test
description. This class cannot be inherited.
</summary>
<example>
[TestFixture]
public class Fixture
{
[Test]
public void MethodToTest()
{}
[Test(Description = "more detailed description")]
publc void TestDescriptionMethod()
{}
}
</example>
</member>
<member name="P:NUnit.Framework.TestAttribute.Description">
<summary>
Descriptive text for this test
</summary>
</member>
<member name="T:NUnit.Framework.TestCaseAttribute">
<summary>
TestCaseAttribute is used to mark parameterized test cases
and provide them with their arguments.
</summary>
</member>
<member name="T:NUnit.Framework.ITestCaseData">
<summary>
The ITestCaseData interface is implemented by a class
that is able to return complete testcases for use by
a parameterized test method.
NOTE: This interface is used in both the framework
and the core, even though that results in two different
types. However, sharing the source code guarantees that
the various implementations will be compatible and that
the core is able to reflect successfully over the
framework implementations of ITestCaseData.
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.Arguments">
<summary>
Gets the argument list to be provided to the test
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.Result">
<summary>
Gets the expected result
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
<summary>
Gets the expected exception Type
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
<summary>
Gets the FullName of the expected exception
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.TestName">
<summary>
Gets the name to be used for the test
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.Description">
<summary>
Gets the description of the test
</summary>
</member>
<member name="P:NUnit.Framework.ITestCaseData.Ignored">
<summary>
Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
</summary>
<value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
<summary>
Gets the ignore reason.
</summary>
<value>The ignore reason.</value>
</member>
<member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
<summary>
Construct a TestCaseAttribute with a list of arguments.
This constructor is not CLS-Compliant
</summary>
<param name="arguments"></param>
</member>
<member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
<summary>
Construct a TestCaseAttribute with a single argument
</summary>
<param name="arg"></param>
</member>
<member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
<summary>
Construct a TestCaseAttribute with a two arguments
</summary>
<param name="arg1"></param>
<param name="arg2"></param>
</member>
<member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
<summary>
Construct a TestCaseAttribute with a three arguments
</summary>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
<summary>
Gets the list of arguments to a test case
</summary>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.Result">
<summary>
Gets or sets the expected result.
</summary>
<value>The result.</value>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
<summary>
Gets or sets the expected exception.
</summary>
<value>The expected exception.</value>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
<summary>
Gets or sets the name the expected exception.
</summary>
<value>The expected name of the exception.</value>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
<summary>
Gets or sets the expected message of the expected exception
</summary>
<value>The expected message of the exception.</value>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
<summary>
Gets or sets the type of match to be performed on the expected message
</summary>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.Description">
<summary>
Gets or sets the description.
</summary>
<value>The description.</value>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.TestName">
<summary>
Gets or sets the name of the test.
</summary>
<value>The name of the test.</value>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
<summary>
Gets or sets the ignored status of the test
</summary>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
<summary>
Gets or sets the ignored status of the test
</summary>
</member>
<member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
<summary>
Gets the ignore reason.
</summary>
<value>The ignore reason.</value>
</member>
<member name="T:NUnit.Framework.TestCaseSourceAttribute">
<summary>
FactoryAttribute indicates the source to be used to
provide test cases for a test method.
</summary>
</member>
<member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
<summary>
Construct with the name of the factory - for use with languages
that don't support params arrays.
</summary>
<param name="sourceName">An array of the names of the factories that will provide data</param>
</member>
<member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
<summary>
Construct with a Type and name - for use with languages
that don't support params arrays.
</summary>
<param name="sourceType">The Type that will provide data</param>
<param name="sourceName">The name of the method, property or field that will provide data</param>
</member>
<member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
<summary>
The name of a the method, property or fiend to be used as a source
</summary>
</member>
<member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
<summary>
A Type to be used as a source
</summary>
</member>
<member name="T:NUnit.Framework.TestFixtureAttribute">
<example>
[TestFixture]
public class ExampleClass
{}
</example>
</member>
<member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
<summary>
Construct with a object[] representing a set of arguments.
In .NET 2.0, the arguments may later be separated into
type arguments and constructor arguments.
</summary>
<param name="arguments"></param>
</member>
<member name="P:NUnit.Framework.TestFixtureAttribute.Description">
<summary>
Descriptive text for this fixture
</summary>
</member>
<member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
<summary>
The arguments originally provided to the attribute
</summary>
</member>
<member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
<summary>
Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
</summary>
<value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
</member>
<member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
<summary>
Gets or sets the ignore reason. May set Ignored as a side effect.
</summary>
<value>The ignore reason.</value>
</member>
<member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
<summary>
Get or set the type arguments. If not set
explicitly, any leading arguments that are
Types are taken as type arguments.
</summary>
</member>
<member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
<summary>
Attribute used to identify a method that is
called before any tests in a fixture are run.
</summary>
</member>
<member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
<summary>
Attribute used to identify a method that is called after
all the tests in a fixture have run. The method is
guaranteed to be called, even if an exception is thrown.
</summary>
</member>
<member name="T:NUnit.Framework.TheoryAttribute">
<summary>
Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
class makes the method callable from the NUnit test runner. There is a property
called Description which is optional which you can provide a more detailed test
description. This class cannot be inherited.
</summary>
<example>
[TestFixture]
public class Fixture
{
[Test]
public void MethodToTest()
{}
[Test(Description = "more detailed description")]
publc void TestDescriptionMethod()
{}
}
</example>
</member>
<member name="T:NUnit.Framework.TimeoutAttribute">
<summary>
WUsed on a method, marks the test with a timeout value in milliseconds.
The test will be run in a separate thread and is cancelled if the timeout
is exceeded. Used on a method or assembly, sets the default timeout
for all contained test methods.
</summary>
</member>
<member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
<summary>
Construct a TimeoutAttribute given a time in milliseconds
</summary>
<param name="timeout">The timeout value in milliseconds</param>
</member>
<member name="T:NUnit.Framework.RequiresSTAAttribute">
<summary>
Marks a test that must run in the STA, causing it
to run in a separate thread if necessary.
On methods, you may also use STAThreadAttribute
to serve the same purpose.
</summary>
</member>
<member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
<summary>
Construct a RequiresSTAAttribute
</summary>
</member>
<member name="T:NUnit.Framework.RequiresMTAAttribute">
<summary>
Marks a test that must run in the MTA, causing it
to run in a separate thread if necessary.
On methods, you may also use MTAThreadAttribute
to serve the same purpose.
</summary>
</member>
<member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
<summary>
Construct a RequiresMTAAttribute
</summary>
</member>
<member name="T:NUnit.Framework.RequiresThreadAttribute">
<summary>
Marks a test that must run on a separate thread.
</summary>
</member>
<member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
<summary>
Construct a RequiresThreadAttribute
</summary>
</member>
<member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
<summary>
Construct a RequiresThreadAttribute, specifying the apartment
</summary>
</member>
<member name="T:NUnit.Framework.ValueSourceAttribute">
<summary>
ValueSourceAttribute indicates the source to be used to
provide data for one parameter of a test method.
</summary>
</member>
<member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
<summary>
Construct with the name of the factory - for use with languages
that don't support params arrays.
</summary>
<param name="sourceName">The name of the data source to be used</param>
</member>
<member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
<summary>
Construct with a Type and name - for use with languages
that don't support params arrays.
</summary>
<param name="sourceType">The Type that will provide data</param>
<param name="sourceName">The name of the method, property or field that will provide data</param>
</member>
<member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
<summary>
The name of a the method, property or fiend to be used as a source
</summary>
</member>
<member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
<summary>
A Type to be used as a source
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
<summary>
AttributeExistsConstraint tests for the presence of a
specified attribute on a Type.
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.Constraint">
<summary>
The Constraint class is the base of all built-in constraints
within NUnit. It provides the operator overloads used to combine
constraints.
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.IResolveConstraint">
<summary>
The IConstraintExpression interface is implemented by all
complete and resolvable constraints and expressions.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
<summary>
Return the top-level constraint for this expression
</summary>
<returns></returns>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
<summary>
Static UnsetObject used to detect derived constraints
failing to set the actual value.
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.actual">
<summary>
The actual value being tested against a constraint
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.displayName">
<summary>
The display name of this Constraint for use by ToString()
</summary>