forked from SolrNet/SolrNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMbUnit.xml
12687 lines (12594 loc) · 741 KB
/
MbUnit.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>MbUnit</name>
</assembly>
<members>
<member name="T:MbUnit.Framework.ContractVerifiers.Core.NotEnoughHashesException">
<summary>
This exception type is used to signal that a <see cref="T:MbUnit.Framework.ContractVerifiers.Core.HashStore"/> was
not initialized with a sufficient number of hash code values.
</summary>
</member>
<member name="M:MbUnit.Framework.ContractVerifiers.Core.NotEnoughHashesException.#ctor(System.Int32,System.Int32)">
<summary>
Creates an exception specifying the expected minimum and the
actual number of hash code values.
</summary>
</member>
<member name="M:MbUnit.Framework.ContractVerifiers.Core.NotEnoughHashesException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a exception from serialization info.
</summary>
<param name="info">The serialization info.</param>
<param name="context">The streaming context.</param>
</member>
<member name="T:MbUnit.Framework.Assert">
<summary>
Defines a set of assertions that enable a test to verify the expected
behavior of the subject under test.
</summary>
<remarks>
<para>
Each assertion is generally provided in at least 4 flavors distinguished by overloads:
<list type="bullet">
<item>A simple form that takes only the assertion parameters.</item>
<item>A simple form that accepts a custom message format string and arguments in addition to the assertion parameters.</item>
<item>A rich form that takes the assertion parameters and a custom comparer object.</item>
<item>A rich form that accepts a custom message format string and arguments in addition to the assertion parameters and a custom comparer object.</item>
</list>
</para>
<para>
The value upon which the assertion is being evaluated is usually called the "actual value".
Other parameters for the assertion are given names such as the "expected value", "unexpected value",
or other terms as appropriate. In some cases where the role of a parameter is ambiguous,
we may use designations such as "left" and "right" to distinguish the parameters.
</para>
<para>
The Assert class does not provide direct support for old-style collection types such as <see cref="T:System.Collections.ICollection"/>
and <see cref="T:System.Collections.IEnumerable"/>. If you are using .Net 3.5 for your test projects, you may find the
"Cast" function helpful.
<example>
<code>
ICollection myOldCollection = subjectUnderTest.DoSomething();
Assert.AreElementsEqual(new[] { "a", "b", "c" }, myOldCollection.Cast<string>());
</code>
</example>
</para>
<para>
Framework authors may choose to extend this class with additional assertions by creating
a subclass. Alternately, new assertions can be defined in other classes.
</para>
<para>
When formatting values for inclusion in assertion failures, it is recommended to use the
formatter provided by the <see cref="P:Gallio.Framework.Assertions.AssertionFailureBuilder.Formatter"/> property instead
of directly calling <see cref="M:System.Object.ToString"/>. This enables custom formatting rules to
decide how best to present values of particular types and yields a more consistent user experience.
In particular the <see cref="M:Gallio.Framework.Assertions.AssertionFailureBuilder.AddRawLabeledValue(System.String,System.Object)"/> method and
its siblings automatically format values in this manner.
</para>
</remarks>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute(System.Type,System.Reflection.MemberInfo)">
<summary>
Verifies that the targeted object is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute(System.Type,System.Reflection.MemberInfo)"/> instead.
</para>
</remarks>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute(System.Type,System.Reflection.MemberInfo,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute(System.Type,System.Reflection.MemberInfo,System.String,System.Object[])"/> instead.
</para>
</remarks>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute``1(System.Reflection.MemberInfo)">
<summary>
Verifies that the targeted type is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute``1(System.Reflection.MemberInfo)"/> instead.
</para>
</remarks>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute``1(System.Reflection.MemberInfo,System.String,System.Object[])">
<summary>
Verifies that the targeted type is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute``1(System.Reflection.MemberInfo,System.String,System.Object[])"/> instead.
</para>
</remarks>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute(System.Type,MbUnit.Framework.Mirror.MemberSet)">
<summary>
Verifies that the targeted object is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute(System.Type,System.Reflection.MemberInfo)"/> instead.
</para>
</remarks>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute(System.Type,MbUnit.Framework.Mirror.MemberSet,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute(System.Type,System.Reflection.MemberInfo,System.String,System.Object[])"/> instead.
</para>
</remarks>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute``1(MbUnit.Framework.Mirror.MemberSet)">
<summary>
Verifies that the targeted type is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute``1(System.Reflection.MemberInfo)"/> instead.
</para>
</remarks>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttribute``1(MbUnit.Framework.Mirror.MemberSet,System.String,System.Object[])">
<summary>
Verifies that the targeted type is decorated once with the specified <see cref="T:System.Attribute"/>.
</summary>
<remarks>
<para>
The assertion returns the instance of the actual attribute found.
</para>
<para>
The assertion fails if the target object is decorated with multiple instances of the searched attribute. If several
instances are expected, use <see cref="M:MbUnit.Framework.Assert.HasAttribute``1(System.Reflection.MemberInfo,System.String,System.Object[])"/> instead.
</para>
</remarks>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>The instance of the actual attribute found.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,System.Reflection.MemberInfo)">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,System.Reflection.MemberInfo,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(System.Reflection.MemberInfo)">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(System.Reflection.MemberInfo,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,MbUnit.Framework.Mirror.MemberSet)">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,MbUnit.Framework.Mirror.MemberSet,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(MbUnit.Framework.Mirror.MemberSet)">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(MbUnit.Framework.Mirror.MemberSet,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with one or several instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,System.Reflection.MemberInfo,System.Int32)">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,System.Reflection.MemberInfo,System.Int32,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(System.Reflection.MemberInfo,System.Int32)">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(System.Reflection.MemberInfo,System.Int32,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,MbUnit.Framework.Mirror.MemberSet,System.Int32)">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes(System.Type,MbUnit.Framework.Mirror.MemberSet,System.Int32,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<param name="expectedAttributeType">The type of the searched <see cref="T:System.Attribute"/>.</param>
<param name="target">The targeted object to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedAttributeType"/> or <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(MbUnit.Framework.Mirror.MemberSet,System.Int32)">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.HasAttributes``1(MbUnit.Framework.Mirror.MemberSet,System.Int32,System.String,System.Object[])">
<summary>
Verifies that the targeted object is decorated with the exact number of instances of the specified <see cref="T:System.Attribute"/>.
</summary>
<typeparam name="TAttribute">The type of the searched <see cref="T:System.Attribute"/>.</typeparam>
<param name="target">The target type to evaluate.</param>
<param name="expectedCount">The expected number of attribute instances to be found.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>An array of attribute instances.</returns>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="target"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is less than or equal to zero.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Count(System.Int32,System.Collections.IEnumerable)">
<summary>
Verifies that the specified sequence, collection, or array contains the expected number of elements.
</summary>
<remarks>
<para>
The assertion counts the elements according to the underlying type of the sequence.
<list type="bullet">
<item>Uses <see cref="P:System.Array.Length"/> if the sequence is an array.</item>
<item>Uses <see cref="P:System.Collections.ICollection.Count"/> or <see cref="P:System.Collections.Generic.ICollection`1.Count"/> if the sequence is a collection such as <see cref="T:System.Collections.Generic.List`1"/> or <see cref="T:System.Collections.Generic.Dictionary`2"/>. It enumerates and counts the elements as well.</item>
<item>Enumerates and counts the elements if the sequence is a simple <see cref="T:System.Collections.IEnumerable"/>.</item>
</list>
</para>
</remarks>
<param name="expectedCount">The expected number of elements.</param>
<param name="values">The enumeration of elements to count.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is negative.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="values"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Count(System.Int32,System.Collections.IEnumerable,System.String,System.Object[])">
<summary>
Verifies that the specified sequence, collection, or array contains the expected number of elements.
</summary>
<remarks>
<para>
The assertion counts the elements according to the underlying type of the sequence.
<list type="bullet">
<item>Uses <see cref="P:System.Array.Length"/> if the sequence is an array.</item>
<item>Uses <see cref="P:System.Collections.ICollection.Count"/> or <see cref="P:System.Collections.Generic.ICollection`1.Count"/> if the sequence is a collection such as <see cref="T:System.Collections.Generic.List`1"/> or <see cref="T:System.Collections.Generic.Dictionary`2"/>. It enumerates and counts the elements as well.</item>
<item>Enumerates and counts the elements if the sequence is a simple <see cref="T:System.Collections.IEnumerable"/>.</item>
</list>
</para>
</remarks>
<param name="expectedCount">The expected number of elements.</param>
<param name="values">The enumeration of elements to count.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="expectedCount"/> is negative.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="values"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.#ctor">
<summary>
Prevents instantiation.
Subclasses should likewise define their constructor to be protected.
</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Equals(System.Object,System.Object)">
<summary>
Always throws an <see cref="T:System.InvalidOperationException"/>.
Use <see cref="M:MbUnit.Framework.Assert.AreEqual``1(``0,``0)"/> instead.
</summary>
</member>
<member name="M:MbUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
<summary>
Always throws an <see cref="T:System.InvalidOperationException"/>.
Use <see cref="M:MbUnit.Framework.Assert.AreSame``1(``0,``0)"/> instead.
</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Fail">
<summary>
Signals an unconditional assertion failure.
</summary>
<remarks>
<para>
Use <see cref="M:Gallio.Framework.Assertions.AssertionHelper.Verify(Gallio.Common.Func{Gallio.Framework.Assertions.AssertionFailure})"/> and <see cref="M:Gallio.Framework.Assertions.AssertionHelper.Fail(Gallio.Framework.Assertions.AssertionFailure)"/>
instead when implementing custom assertions.
</para>
</remarks>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
<summary>
Signals an unconditional assertion failure with a particular message.
</summary>
<remarks>
<para>
Use <see cref="M:Gallio.Framework.Assertions.AssertionHelper.Verify(Gallio.Common.Func{Gallio.Framework.Assertions.AssertionFailure})"/> and <see cref="M:Gallio.Framework.Assertions.AssertionHelper.Fail(Gallio.Framework.Assertions.AssertionFailure)"/>
instead when implementing custom assertions.
</para>
</remarks>
<param name="messageFormat">The format of the assertion failure message.</param>
<param name="messageArgs">The arguments for the assertion failure message format string.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Inconclusive">
<summary>
Terminates the test and reports an inconclusive test outcome.
</summary>
<remarks>
<para>
The test is terminated with an inconclusive test outcome by throwing a
<see cref="T:Gallio.Framework.TestInconclusiveException"/>. If other code in the test case catches
this exception and does not rethrow it then the test might not terminate correctly.
</para>
</remarks>
<exception cref="T:Gallio.Framework.TestInconclusiveException">Thrown always.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
<summary>
Terminates the test and reports an inconclusive test outcome.
</summary>
<remarks>
<para>
The test is terminated with an inconclusive test outcome by throwing a
<see cref="T:Gallio.Framework.TestInconclusiveException"/>. If other code in the test case catches
this exception and does not rethrow it then the test might not terminate correctly.
</para>
</remarks>
<param name="messageFormat">The custom message format string, or null if none.</param>
<param name="messageArgs">The custom message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.TestInconclusiveException">Thrown always.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Terminate(Gallio.Model.TestOutcome)">
<summary>
Terminates the test and reports a specific test outcome.
</summary>
<remarks>
<para>
The test is terminated with by throwing a <see cref="T:Gallio.Framework.TestTerminatedException"/>
with the specified outcome. If other code in the test case catches
this exception and does not rethrow it then the test might not terminate correctly.
</para>
</remarks>
<param name="outcome">The desired test outcome.</param>
<exception cref="T:Gallio.Framework.TestTerminatedException">Thrown always.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Terminate(Gallio.Model.TestOutcome,System.String,System.Object[])">
<summary>
Terminates the test and reports a specific test outcome.
</summary>
<remarks>
<para>
The test is terminated with by throwing a <see cref="T:Gallio.Framework.TestTerminatedException"/>
with the specified outcome. If other code in the test case catches
this exception and does not rethrow it then the test might not terminate correctly.
</para>
</remarks>
<param name="outcome">The desired test outcome.</param>
<param name="messageFormat">The custom message format string, or null if none.</param>
<param name="messageArgs">The custom message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.TestTerminatedException">Thrown always.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.TerminateSilently(Gallio.Model.TestOutcome)">
<summary>
Terminates the test silently and reports a specific test outcome.
</summary>
<remarks>
<para>
Unlike <see cref="M:MbUnit.Framework.Assert.Terminate(Gallio.Model.TestOutcome)"/> this method does not report the
stack trace. It also does not include a termination reason unless one is explicitly
specified by the caller.
</para>
<para>
The test is terminated with by throwing a <see cref="T:Gallio.Framework.SilentTestException"/>
with the specified outcome. If other code in the test case catches
this exception and does not rethrow it then the test might not terminate correctly.
</para>
</remarks>
<param name="outcome">The desired test outcome.</param>
<exception cref="T:Gallio.Framework.SilentTestException">Thrown always.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.TerminateSilently(Gallio.Model.TestOutcome,System.String,System.Object[])">
<summary>
Terminates the test silently and reports a specific test outcome.
</summary>
<remarks>
<para>
Unlike <see cref="M:MbUnit.Framework.Assert.Terminate(Gallio.Model.TestOutcome,System.String,System.Object[])"/> this method does not report the
stack trace. It also does not include a termination reason unless one is explicitly
specified by the caller.
</para>
<para>
The test is terminated with by throwing a <see cref="T:Gallio.Framework.TestTerminatedException"/>
with the specified outcome. If other code in the test case catches
this exception and does not rethrow it then the test might not terminate correctly.
</para>
</remarks>
<param name="outcome">The desired test outcome.</param>
<param name="messageFormat">The custom message format string, or null if none.</param>
<param name="messageArgs">The custom message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.SilentTestException">Thrown always.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Multiple(Gallio.Common.Action)">
<summary>
Evaluates a block of code that contains multiple related assertions.
</summary>
<remarks>
<para>
While the action delegate runs, the behavior of assertions is change such that
failures are captured but do not cause a <see cref="T:Gallio.Framework.Assertions.AssertionFailureException"/>
to be throw. When the delegate returns, the previous assertion failure behavior
is restored and any captured assertion failures are reported. The net effect
of this change is that the test can continue to run even after an assertion failure
occurs which can help to provide more information about the problem.
</para>
<para>
A multiple assertion block is useful for verifying the state of a single
component with many parts that require several assertions to check.
This feature can accelerate debugging because more diagnostic information
become available at once.
</para>
</remarks>
<param name="action">The action to invoke.</param>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Multiple(Gallio.Common.Action,System.String,System.Object[])">
<summary>
Evaluates a block of code that contains multiple related assertions.
</summary>
<remarks>
<para>
While the action delegate runs, the behavior of assertions is change such that
failures are captured but do not cause a <see cref="T:Gallio.Framework.Assertions.AssertionFailureException"/>
to be throw. When the delegate returns, the previous assertion failure behavior
is restored and any captured assertion failures are reported. The net effect
of this change is that the test can continue to run even after an assertion failure
occurs which can help to provide more information about the problem.
</para>
<para>
A multiple assertion block is useful for verifying the state of a single
component with many parts that require several assertions to check.
This feature can accelerate debugging because more diagnostic information
become available at once.
</para>
</remarks>
<param name="action">The action to invoke.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Contains(System.String,System.String)">
<summary>
Verifies that a string contains some expected value.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="expectedSubstring">The expected substring.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedSubstring"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Contains(System.String,System.String,System.String,System.Object[])">
<summary>
Verifies that a string contains some expected value.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="expectedSubstring">The expected substring.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedSubstring"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Contains(System.String,System.String,System.StringComparison)">
<summary>
Verifies that a string contains some expected value.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="expectedSubstring">The expected substring.</param>
<param name="comparisonType">One of the <see cref="T:System.StringComparison"/> values that determines how the expected substring is compared to the actual value.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedSubstring"/> is null.</exception>
<exception cref="T:System.ArgumentException">Thrown if <paramref name="comparisonType"> has invalid value.</paramref></exception>
</member>
<member name="M:MbUnit.Framework.Assert.Contains(System.String,System.String,System.StringComparison,System.String,System.Object[])">
<summary>
Verifies that a string contains some expected value.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="expectedSubstring">The expected substring.</param>
<param name="comparisonType">One of the <see cref="T:System.StringComparison"/> values that determines how the expected substring is compared to the actual value.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expectedSubstring"/> is null.</exception>
<exception cref="T:System.ArgumentException">Thrown if <paramref name="comparisonType"> has invalid value.</paramref></exception>
</member>
<member name="M:MbUnit.Framework.Assert.DoesNotContain(System.String,System.String)">
<summary>
Verifies that a string does not contain some unexpected substring.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="unexpectedSubstring">The unexpected substring.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="unexpectedSubstring"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
<summary>
Verifies that a string does not contain some unexpected substring.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="unexpectedSubstring">The unexpected substring.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="unexpectedSubstring"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.DoesNotContain(System.String,System.String,System.StringComparison)">
<summary>
Verifies that a string does not contain some unexpected substring.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="unexpectedSubstring">The unexpected substring.</param>
<param name="comparisonType">One of the <see cref="T:System.StringComparison"/> values that determines how unexpected text is compared to the actual value.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="unexpectedSubstring"/> is null.</exception>
<exception cref="T:System.ArgumentException">Thrown if <paramref name="comparisonType"> has invalid value.</paramref></exception>
</member>
<member name="M:MbUnit.Framework.Assert.DoesNotContain(System.String,System.String,System.StringComparison,System.String,System.Object[])">
<summary>
Verifies that a string does not contain some unexpected substring.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<param name="actualValue">The actual value.</param>
<param name="unexpectedSubstring">The unexpected substring.</param>
<param name="comparisonType">One of the <see cref="T:System.StringComparison"/> values that determines how unexpected text is compared to the actual value.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="unexpectedSubstring"/> is null.</exception>
<exception cref="T:System.ArgumentException">Thrown if <paramref name="comparisonType"> has invalid value.</paramref></exception>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.String,System.String,System.StringComparison)">
<summary>
Asserts that two strings are equal according to a particular string comparison mode.
</summary>
<param name="expectedValue">The expected value.</param>
<param name="actualValue">The actual value.</param>
<param name="comparisonType">The string comparison type.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.String,System.String,System.StringComparison,System.String,System.Object[])">
<summary>
Asserts that two strings are equal according to a particular string comparison mode.
</summary>
<param name="expectedValue">The expected value.</param>
<param name="actualValue">The actual value.</param>
<param name="comparisonType">The string comparison type.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.String,System.String,System.StringComparison)">
<summary>
Asserts that two strings are not equal according to a particular string comparison mode.
</summary>
<param name="unexpectedValue">The unexpected value.</param>
<param name="actualValue">The actual value.</param>
<param name="comparisonType">The string comparison type.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.String,System.String,System.StringComparison,System.String,System.Object[])">
<summary>
Asserts that two strings are not equal according to a particular string comparison mode.
</summary>
<param name="unexpectedValue">The unexpected value.</param>
<param name="actualValue">The actual value.</param>
<param name="comparisonType">The string comparison type.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.FullMatch(System.String,System.String)">
<summary>
Verifies that a string matches regular expression pattern exactly.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.FullMatch(System.String,System.String,System.String,System.Object[])">
<summary>
Verifies that a string matches regular expression pattern exactly.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.FullMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Verifies that a string matches regular expression pattern exactly.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<param name="regexOptions">The regular expression options.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.FullMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.Object[])">
<summary>
Verifies that a string matches regular expression pattern exactly.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<param name="regexOptions">The regular expression options.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.FullMatch(System.String,System.Text.RegularExpressions.Regex)">
<summary>
Verifies that a string matches regular expression pattern exactly.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.Match(System.String)"/>
<param name="actualValue">The actual value.</param>
<param name="regex">The regular expression.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regex"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.FullMatch(System.String,System.Text.RegularExpressions.Regex,System.String,System.Object[])">
<summary>
Verifies that a string matches regular expression pattern exactly.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.Match(System.String)"/>
<param name="actualValue">The actual value.</param>
<param name="regex">The regular expression.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regex"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Like(System.String,System.String)">
<summary>
Verifies that a string contains a full or partial match of a regular expression pattern.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Like(System.String,System.String,System.String,System.Object[])">
<summary>
Verifies that a string contains a full or partial match of a regular expression pattern.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Like(System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
<summary>
Verifies that a string contains a full or partial match of a regular expression pattern.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<param name="regexOptions">The regular expression options.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Like(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.Object[])">
<summary>
Verifies that a string contains a full or partial match of a regular expression pattern.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)"/>
<param name="actualValue">The actual value.</param>
<param name="regexPattern">The regular expression pattern.</param>
<param name="regexOptions">The regular expression options.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="regexPattern"/> is null.</exception>
</member>
<member name="M:MbUnit.Framework.Assert.Like(System.String,System.Text.RegularExpressions.Regex)">
<summary>
Verifies that a string contains a full or partial match of a regular expression pattern.
</summary>
<remarks>
<para>
This assertion will fail if the string is null.
</para>
</remarks>
<seealso cref="M:System.Text.RegularExpressions.Regex.IsMatch(System.String)"/>
<param name="actualValue">The actual value.</param>
<param name="regex">The regular expression.</param>
<exception cref="T:Gallio.Framework.Assertions.AssertionException">Thrown if the verification failed unless the current <see cref="P:Gallio.Framework.Assertions.AssertionContext.AssertionFailureBehavior"/> indicates otherwise.</exception>