forked from ServiceStack/ServiceStack.Text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnunit.framework.xml
More file actions
5622 lines (5608 loc) · 297 KB
/
nunit.framework.xml
File metadata and controls
5622 lines (5608 loc) · 297 KB
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.Constraints.EmptyStringConstraint">
<summary>
EmptyStringConstraint tests whether a string is empty.
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.EmptyConstraint">
<summary>
EmptyConstraint tests a whether a string or collection is empty,
postponing the decision about which test is applied until the
type of the actual argument is known.
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.Constraint">
<summary>
The Constraint class is the base of all built-in or
user-defined constraints in NUnit. It provides the operator
overloads used to combine constraints.
</summary>
</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.caseInsensitive">
<summary>
If true, all string comparisons will ignore case
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.clipStrings">
<summary>
If true, strings in error messages will be clipped
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.compareAsCollection">
<summary>
If true, arrays will be treated as collections, allowing
those of different dimensions to be compared
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.tolerance">
<summary>
If non-zero, equality comparisons within the specified
tolerance will succeed.
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.compareWith">
<summary>
IComparer object used in comparisons for some constraints.
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.Constraint.actual">
<summary>
The actual value being tested against a constraint
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.Within(System.Object)">
<summary>
Flag the constraint to use a tolerance when determining equality.
Currently only used for doubles and floats.
</summary>
<param name="tolerance">Tolerance to be used</param>
<returns>Self.</returns>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.Comparer(System.Collections.IComparer)">
<summary>
Flag the constraint to use the supplied IComparer object.
</summary>
<param name="comparer">The IComparer object to use.</param>
<returns>Self.</returns>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.MessageWriter)">
<summary>
Write the failure message to the MessageWriter provided
as an argument. The default implementation simply passes
the constraint and the actual value to the writer, which
then displays the constraint description and the value.
Constraints that need to provide additional details,
such as where the error occured can override this.
</summary>
<param name="writer">The MessageWriter on which to display the message</param>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
<summary>
Write the actual value for a failing constraint test to a
MessageWriter. The default implementation simply writes
the raw value of actual, leaving it to the writer to
perform any formatting.
</summary>
<param name="writer">The writer on which the actual value is displayed</param>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
<summary>
This operator creates a constraint that is satisfied only if both
argument constraints are satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
<summary>
This operator creates a constraint that is satisfied if either
of the argument constraints is satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
<summary>
This operator creates a constraint that is satisfied if the
argument constraint is not satisfied.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.Constraint.IgnoreCase">
<summary>
Flag the constraint to ignore case and return self.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.Constraint.NoClip">
<summary>
Flag the constraint to suppress string clipping
and return self.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.Constraint.AsCollection">
<summary>
Flag the constraint to compare arrays as collections
and return self.
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
<summary>
Class used to detect any derived constraints
that fail to set the actual value in their
Matches override.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.SubstringConstraint">
<summary>
SubstringConstraint can test whether a string contains
the expected substring.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
</summary>
<param name="expected">The expected.</param>
</member>
<member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
<summary>
StartsWithConstraint can test whether a string starts
with an expected substring.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
</summary>
<param name="expected">The expected string</param>
</member>
<member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is matched by the actual value.
This is a template method, which calls the IsMatch method
of the derived class.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
<summary>
EndsWithConstraint can test whether a string ends
with an expected substring.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
</summary>
<param name="expected">The expected string</param>
</member>
<member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is matched by the actual value.
This is a template method, which calls the IsMatch method
of the derived class.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.RegexConstraint">
<summary>
RegexConstraint can test whether a string matches
the pattern provided.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
</summary>
<param name="pattern">The pattern.</param>
</member>
<member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
<summary>
ConstraintBuilder is used to resolve the Not and All properties,
which serve as prefix operators for constraints. With the addition
of an operand stack, And and Or could be supported, but we have
left them out in favor of a simpler, more type-safe implementation.
Use the & and | operator overloads to combine constraints.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.op_Implicit(NUnit.Framework.Constraints.ConstraintBuilder)~NUnit.Framework.Constraints.Constraint">
<summary>
Implicitly convert ConstraintBuilder to an actual Constraint
at the point where the syntax demands it.
</summary>
<param name="builder"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EqualTo(System.Object)">
<summary>
Resolves the chain of constraints using an
EqualConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SameAs(System.Object)">
<summary>
Resolves the chain of constraints using a
SameAsConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.LessThan(System.IComparable)">
<summary>
Resolves the chain of constraints using a
LessThanConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.GreaterThan(System.IComparable)">
<summary>
Resolves the chain of constraints using a
GreaterThanConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.LessThanOrEqualTo(System.IComparable)">
<summary>
Resolves the chain of constraints using a
LessThanOrEqualConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AtMost(System.IComparable)">
<summary>
Resolves the chain of constraints using a
LessThanOrEqualConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.GreaterThanOrEqualTo(System.IComparable)">
<summary>
Resolves the chain of constraints using a
GreaterThanOrEqualConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AtLeast(System.IComparable)">
<summary>
Resolves the chain of constraints using a
GreaterThanOrEqualConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.TypeOf(System.Type)">
<summary>
Resolves the chain of constraints using an
ExactTypeConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.InstanceOfType(System.Type)">
<summary>
Resolves the chain of constraints using an
InstanceOfTypeConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AssignableFrom(System.Type)">
<summary>
Resolves the chain of constraints using an
AssignableFromConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Contains(System.Object)">
<summary>
Resolves the chain of constraints using a
ContainsConstraint as base. This constraint
will, in turn, make use of the appropriate
second-level constraint, depending on the
type of the actual argument.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Member(System.Object)">
<summary>
Resolves the chain of constraints using a
CollectionContainsConstraint as base.
</summary>
<param name="expected">The expected object</param>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.StartsWith(System.String)">
<summary>
Resolves the chain of constraints using a
StartsWithConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EndsWith(System.String)">
<summary>
Resolves the chain of constraints using a
StringEndingConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Matches(System.String)">
<summary>
Resolves the chain of constraints using a
StringMatchingConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EquivalentTo(System.Collections.ICollection)">
<summary>
Resolves the chain of constraints using a
CollectionEquivalentConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.CollectionContaining(System.Object)">
<summary>
Resolves the chain of constraints using a
CollectionContainingConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SubsetOf(System.Collections.ICollection)">
<summary>
Resolves the chain of constraints using a
CollectionSubsetConstraint as base.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Property(System.String,System.Object)">
<summary>
Resolves the chain of constraints using a
PropertyConstraint as base
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Length(System.Int32)">
<summary>
Resolves the chain of constraints using a
PropertyCOnstraint on Length as base
</summary>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Count(System.Int32)">
<summary>
Resolves the chain of constraints using a
PropertyCOnstraint on Length as base
</summary>
<param name="count"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Property(System.String)">
<summary>
Modifies the ConstraintBuilder by pushing a Prop operator on the
ops stack and the name of the property on the opnds stack.
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve(NUnit.Framework.Constraints.Constraint)">
<summary>
Resolve a constraint that has been recognized by applying
any pending operators and returning the resulting Constraint.
</summary>
<returns>A constraint that incorporates all pending operators</returns>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Null">
<summary>
Resolves the chain of constraints using
EqualConstraint(null) as base.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.True">
<summary>
Resolves the chain of constraints using
EqualConstraint(true) as base.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.False">
<summary>
Resolves the chain of constraints using
EqualConstraint(false) as base.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.NaN">
<summary>
Resolves the chain of constraints using
Is.NaN as base.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Empty">
<summary>
Resolves the chain of constraints using
Is.Empty as base.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Unique">
<summary>
Resolves the chain of constraints using
Is.Unique as base.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Not">
<summary>
Modifies the ConstraintBuilder by pushing a Not operator on the stack.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.No">
<summary>
Modifies the ConstraintBuilder by pushing a Not operator on the stack.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.All">
<summary>
Modifies the ConstraintBuilder by pushing an All operator on the stack.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Some">
<summary>
Modifies the ConstraintBuilder by pushing a Some operator on the stack.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ConstraintBuilder.None">
<summary>
Modifies the constraint builder by pushing All and Not operators on the stack
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.CollectionConstraint">
<summary>
CollectionConstraint is the abstract base class for
constraints that operate on collections.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
<summary>
Protected method to be implemented by derived classes
</summary>
<param name="collection"></param>
<returns></returns>
</member>
<member name="T:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally">
<summary>
CollectionTally counts (tallies) the number of
occurences of each object in one or more enuerations.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.#ctor(System.Collections.IEnumerable)">
<summary>
Construct a CollectionTally object from a collection
</summary>
<param name="c"></param>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.CanRemove(System.Collections.IEnumerable)">
<summary>
Remove the counts for a collection from the tally,
so long as their are sufficient items to remove.
The tallies are not permitted to become negative.
</summary>
<param name="c">The collection to remove</param>
<returns>True if there were enough items to remove, otherwise false</returns>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.AllCountsEqualTo(System.Int32)">
<summary>
Test whether all the counts are equal to a given value
</summary>
<param name="count">The value to be looked for</param>
<returns>True if all counts are equal to the value, otherwise false</returns>
</member>
<member name="P:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.Item(System.Object)">
<summary>
Get the count of the number of times an object is present in the tally
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
<summary>
EmptyCollectionConstraint tests whether a colletion is empty.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
<summary>
Check that the collection is empty
</summary>
<param name="collection"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
<summary>
UniqueItemsConstraint tests whether all the items in a
collection are unique.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
<summary>
Check that all items are unique.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
<summary>
CollectionContainsConstraint is used to test whether a collection
contains an expected object as a member.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
<summary>
Construct a CollectionContainsConstraint
</summary>
<param name="expected"></param>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
<summary>
Test whether the expected item is contained in the collection
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a descripton of the constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
<summary>
CollectionEquivalentCOnstraint is used to determine whether two
collections are equivalent.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
<summary>
Construct a CollectionEquivalentConstraint
</summary>
<param name="expected"></param>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
<summary>
Test whether two collections are equivalent
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
<summary>
CollectionSubsetConstraint is used to determine whether
one collection is a subset of another
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
<summary>
Construct a CollectionSubsetConstraint
</summary>
<param name="expected">The collection that the actual value is expected to be a subset of</param>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
<summary>
Test whether the actual collection is a subset of
the expected collection provided.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.EqualConstraint">
<summary>
EqualConstraint is able to compare an actual value with the
expected value provided in its constructor.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
</summary>
<param name="expected">The expected value.</param>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.MessageWriter)">
<summary>
Write a failure message. Overridden to provide custom
failure messages for EqualConstraint.
</summary>
<param name="writer">The MessageWriter to write to</param>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write description of this constraint
</summary>
<param name="writer">The MessageWriter to write to</param>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.ArraysEqual(System.Array,System.Array)">
<summary>
Helper method to compare two arrays
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
<summary>
Method to compare two DirectoryInfo objects
</summary>
<param name="expected">first directory to compare</param>
<param name="actual">second directory to compare</param>
<returns>true if equivalent, false if not</returns>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
<summary>
Display the failure information for two collections that did not match.
</summary>
<param name="writer">The MessageWriter on which to display</param>
<param name="expected">The expected collection.</param>
<param name="actual">The actual collection</param>
<param name="depth">The depth of this failure in a set of nested collections</param>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionTypesAndSizes(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
<summary>
Displays a single line showing the types and sizes of the expected
and actual collections or arrays. If both are identical, the value is
only shown once.
</summary>
<param name="writer">The MessageWriter on which to display</param>
<param name="expected">The expected collection or array</param>
<param name="actual">The actual collection or array</param>
<param name="indent">The indentation level for the message line</param>
</member>
<member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32,System.Int32)">
<summary>
Displays a single line showing the point in the expected and actual
arrays at which the comparison failed. If the arrays have different
structures or dimensions, both values are shown.
</summary>
<param name="writer">The MessageWriter on which to display</param>
<param name="expected">The expected array</param>
<param name="actual">The actual array</param>
<param name="failurePoint">Index of the failure point in the underlying collections</param>
<param name="indent">The indentation level for the message line</param>
</member>
<member name="T:NUnit.Framework.Constraints.PrefixConstraint">
<summary>
Abstract base class used for prefixes
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
<summary>
The base constraint
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
<summary>
Construct given a base constraint
</summary>
<param name="baseConstraint"></param>
</member>
<member name="M:NUnit.Framework.Constraints.PrefixConstraint.PassModifiersToBase">
<summary>
Set all modifiers applied to the prefix into
the base constraint before matching
</summary>
</member>
<member name="T:NUnit.Framework.Constraints.NotConstraint">
<summary>
NotConstraint negates the effect of some other constraint
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
<summary>
Initializes a new instance of the <see cref="T:NotConstraint"/> class.
</summary>
<param name="baseConstraint">The base constraint to be negated.</param>
</member>
<member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for if the base constraint fails, false if it succeeds</returns>
</member>
<member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
<summary>
Write the actual value for a failing constraint test to a MessageWriter.
</summary>
<param name="writer">The writer on which the actual value is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
<summary>
AllItemsConstraint applies another constraint to each
item in a collection, succeeding if they all succeed.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
<summary>
Construct an AllItemsConstraint on top of an existing constraint
</summary>
<param name="itemConstraint"></param>
</member>
<member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
<summary>
Apply the item constraint to each item in the collection,
failing if any item fails.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
<summary>
SomeItemsConstraint applies another constraint to each
item in a collection, succeeding if any of them succeeds.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
<summary>
Construct a SomeItemsConstraint on top of an existing constraint
</summary>
<param name="itemConstraint"></param>
</member>
<member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
<summary>
Apply the item constraint to each item in the collection,
failing if any item fails.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.NoItemConstraint">
<summary>
SomeItemsConstraint applies another constraint to each
item in a collection, succeeding if any of them succeeds.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
<summary>
Construct a SomeItemsConstraint on top of an existing constraint
</summary>
<param name="itemConstraint"></param>
</member>
<member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
<summary>
Apply the item constraint to each item in the collection,
failing if any item fails.
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.SameAsConstraint">
<summary>
SameAsConstraint tests whether an object is identical to
the object passed to its constructor
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
</summary>
<param name="expected">The expected object.</param>
</member>
<member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
<summary>
Test whether the constraint is satisfied by a given value
</summary>
<param name="actual">The value to be tested</param>
<returns>True for success, false for failure</returns>
</member>
<member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
</summary>
<param name="writer">The writer on which the description is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.TypeConstraint">
<summary>
TypeConstraint is the abstract base for constraints
that take a Type as their expected value.
</summary>
</member>
<member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
<summary>
The expected Type used by the constraint
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
<summary>
Construct a TypeConstraint for a given Type
</summary>
<param name="type"></param>
</member>
<member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
<summary>
Write the actual value for a failing constraint test to a
MessageWriter. TypeCOnstraints override this method to write
the name of the type.
</summary>
<param name="writer">The writer on which the actual value is displayed</param>
</member>
<member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
<summary>
ExactTypeConstraint is used to test that an object
is of the exact type provided in the constructor
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
<summary>
Construct an ExactTypeConstraint for a given Type
</summary>
<param name="type"></param>
</member>
<member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
<summary>
Test that an object is of the exact type specified
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write the description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
<summary>
InstanceOfTypeConstraint is used to test that an object
is of the same type provided or derived from it.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
<summary>
Construct an InstanceOfTypeConstraint for the type provided
</summary>
<param name="type"></param>
</member>
<member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
<summary>
Test whether an object is of the specified type or a derived type
</summary>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
<summary>
Write a description of this constraint to a MessageWriter
</summary>
<param name="writer"></param>
</member>
<member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
<summary>
AssignableFromConstraint is used to test that an object
can be assigned from a given Type.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
<summary>
Construct an AssignableFromConstraint for the type provided
</summary>