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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>MbUnit</name>
</assembly>
<members>
<member name="T:MbUnit.Core.MbUnitTestFrameworkExtension">
<summary>A <see cref="T:Gallio.Framework.Pattern.IPatternTestFrameworkExtension" /> that registers MbUnit as a tool when the test assembly contains a reference to the MbUnit assembly.</summary>
</member>
<member name="M:MbUnit.Core.MbUnitTestFrameworkExtension.GetReferencedTools(Gallio.Reflection.IAssemblyInfo)">
<summary>
<para> Gets information about the tools that are used by the specified test assembly. The tool information will be included in the report as part of the framework node that contains the assembly. </para>
<para> This method is used by authors of tools that are derived from the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" /> to provide brand and version information about the tool so that it will be visible to end users. </para>
<para> If no tools are referenced by the assembly, it will be ignored by the <see cref="T:Gallio.Framework.Pattern.PatternTestExplorer" />. </para>
</summary>
<param name="assembly">The test assembly</param>
<returns>The tool information</returns>
</member>
<member name="T:MbUnit.Framework.ArrayAssert">
<summary>Array Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Boolean[],System.Boolean[])">
<summary>Verifies that both array have the same dimension and elements.</summary>
<param name="expected" />
<param name="actual" />
</member>
<member name="T:MbUnit.Framework.AssemblyFixtureAttribute">
<summary>
<para> The assembly fixture attribute is applied to a class that contains setup and teardown methods that are to be applied at the assembly level. Conceptually, the <see cref="T:MbUnit.Framework.AssemblyFixtureAttribute" /> adds new behavior to an assembly-level test fixture that contains all of the test fixtures within the assembly. </para>
<para> The following attributes are typically used within an assembly fixture: <list type="bullet"><item><see cref="T:MbUnit.Framework.FixtureSetUpAttribute" />: Performs setup activities before any test fixtures within the assembly are executed.</item><item><see cref="T:MbUnit.Framework.FixtureTearDownAttribute" />: Performs teardown activities after all test fixtures within the assembly are executed.</item><item><see cref="T:MbUnit.Framework.SetUpAttribute" />: Performs setup activities before each test fixture within the assembly is executed.</item><item><see cref="T:MbUnit.Framework.TearDownAttribute" />: Performs teardown activities after eacj test fixture within the assembly is executed.</item></list></para>
<para> It is also possible to use other attributes as with an ordinary <see cref="T:MbUnit.Framework.TestFixtureAttribute" />. An assembly fixture also supports data binding. When data binding is used on an assembly fixture, it will cause all test fixtures within the assembly to run once for each combination of data values used. </para>
</summary>
</member>
<member name="M:MbUnit.Framework.AssemblyFixtureAttribute.Consume(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
<summary>
<para> Consumes the <paramref name="codeElement" /> and applies its contributions to the <paramref name="containingTestBuilder" />. </para>
<para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined by some other <paramref name="codeElement" />. </para>
<para> For example, when enumerating tests, the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> will call the <see cref="M:Gallio.Framework.Pattern.IPattern.ProcessTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)" /> method of all patterns associated with the public types in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call <see cref="T:Gallio.Framework.Pattern.BootstrapAssemblyPattern" /> for each of the other patterns defined by this <paramref name="codeElement" />. A test fixture pattern will then typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
</summary>
<param name="containingTestBuilder">The containing test builder</param>
<param name="codeElement">The code element to process</param>
<param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.IPatternTestBuilder.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand have no adverse side-effects.</param>
</member>
<member name="M:MbUnit.Framework.AssemblyFixtureAttribute.SetTestSemantics(Gallio.Framework.Pattern.PatternTest,Gallio.Reflection.ITypeInfo)">
<summary>
<para> Applies semantic actions to the <see cref="P:Gallio.Framework.Pattern.PatternTest.TestActions" /> member of a test to set the test's runtime behavior. </para>
<para> This method is called after <see cref="M:Gallio.Framework.Pattern.TestTypePatternAttribute.InitializeTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ITypeInfo)" />. </para>
</summary>
<param name="test">The test</param>
<param name="type">The test type</param>
</member>
<member name="T:MbUnit.Framework.AssemblyResolverAttribute">
<summary>Registers a custom assembly resolver. This class cannot be inherited.</summary>
</member>
<member name="P:MbUnit.Framework.AssemblyResolverAttribute.AssemblyResolverType">
<summary>Gets the assembly resolver type.</summary>
</member>
<member name="M:MbUnit.Framework.AssemblyResolverAttribute.Initialize(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.IAssemblyInfo)">
<summary>Performs early initialization for the specified assembly.</summary>
<param name="topLevelTestBuilder">The top level test builder that will contain the assembly-level test</param>
<param name="assembly">The assembly to process</param>
</member>
<member name="T:MbUnit.Framework.Assert">
<summary>Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
<summary>Verifies that two doubles are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the the expected and the actual</param>
<param name="message">The message printed out upon failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
<summary>Verifies that two doubles are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the the expected and the actual</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
<summary>Verifies that two floats are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="message">The message printed out upon failure</param>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the the expected and the actual</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
<summary>Verifies that two floats are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the the expected and the actual</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
<summary>Verifies that two decimals are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="message">The message printed out upon failure</param>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
<summary>Verifies that two decimals are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
<summary>Verifies that two decimals are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
<summary>Verifies that two ints are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="message">The message printed out upon failure</param>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that two ints are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
<summary>Verifies that two ints are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
<summary>Verifies that two objects are equal. Two objects are considered equal if both are null, or if both have the same value. All non-numeric types are compared by using the <c>Equals</c> method. If they are not equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
<param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
<summary>Verifies that two objects are equal. Two objects are considered equal if both are null, or if both have the same value. All non-numeric types are compared by using the <c>Equals</c> method. If they are not equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
<param name="message">The message to display if objects are not equal</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
<summary>Verifies that two objects are equal. Two objects are considered equal if both are null, or if both have the same value. All non-numeric types are compared by using the <c>Equals</c> method. If they are not equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
<summary>Asserts that two objects are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
<summary>Asserts that two objects are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
<summary>Asserts that two objects are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Asserts that two ints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
<summary>Asserts that two ints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
<summary>Asserts that two ints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
<summary>Asserts that two uints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
<summary>Asserts that two uints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
<summary>Asserts that two uints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
<summary>Asserts that two decimals are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
<summary>Asserts that two decimals are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
<summary>Asserts that two decimals are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
<summary>Asserts that two floats are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
<summary>Asserts that two floats are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
<summary>Asserts that two floats are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
<summary>Asserts that two doubles are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
<summary>Asserts that two doubles are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
<summary>Asserts that two doubles are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
<summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="message">The message to be printed when the two objects are not the same object.</param>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
<summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object)">
<summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:MbUnit.Framework.Assert.AreValueEqual(System.Reflection.PropertyInfo,System.Object,System.Object,System.Object[])">
<summary>Verifies that the value of the property described by <paramref name="pi" /> is the same in both ojects.</summary>
<param name="pi">Property describing the value to test</param>
<param name="expected">Reference object</param>
<param name="actual">Actual object</param>
<param name="indices">Index of the property.</param>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String)">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Equals(System.Object,System.Object)">
<summary>The Equals method throws an AssertionException. This is done to make sure there is no mistake by calling this function.</summary>
<param name="a" />
<param name="b" />
</member>
<member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
<summary>Throws an <see cref="T:MbUnit.Framework.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
<param name="format">The format of the message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.Fail(System.String)">
<summary>Throws an <see cref="T:MbUnit.Framework.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
<param name="message">The message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
</member>
<member name="M:MbUnit.Framework.Assert.Fail">
<summary>Throws an <see cref="T:MbUnit.Framework.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
<summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be greater</param>
<param name="arg2">The second value, expected to be less</param>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String)">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary)">
<summary>Asserts that <paramref name="test" /> is in the dic <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary,System.String)">
<summary>Asserts that <paramref name="test" /> is in the dic <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList)">
<summary>Asserts that <paramref name="test" /> is in the list <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList,System.String)">
<summary>Asserts that <paramref name="test" /> is in the list <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable,System.String)">
<summary>Asserts that <paramref name="test" /> is in the enumerable collection <paramref name="enumerable" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable)">
<summary>Asserts that <paramref name="test" /> is in the enumerable collection <paramref name="enumerable" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
<summary>Asserts that an object may be assigned a value of a given Type.</summary>
<param name="expected">The expected Type.</param>
<param name="actual">The object under examination</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
<summary>Asserts that an object may be assigned a value of a given Type.</summary>
<param name="expected">The expected Type.</param>
<param name="actual">The object under examination</param>
<param name="message">The messge to display in case of failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
<summary>Asserts that an object may be assigned a value of a given Type.</summary>
<param name="expected">The expected Type.</param>
<param name="actual">The object under examination</param>
<param name="message">The message to display in case of failure</param>
<param name="args">Array of objects to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
<summary>Assert that a string is empty - that is equal to string.Empty</summary>
<param name="aString">The string to be tested</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String)">
<summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
<param name="aString">The string to be tested</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsEmpty(System.String)">
<summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
<param name="aString">The string to be tested</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
<summary>Assert that an array,list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
<summary>Asserts that a condition is false. If the condition is true the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
<param name="condition">The evaluated condition</param>
<param name="format">The format of the message to display if the condition is false, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)">
<summary>Asserts that a condition is false. If the condition is true the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
<param name="condition">The evaluated condition</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
<summary>Asserts that an object is an instance of a given type.</summary>
<param name="expected">The expected Type</param>
<param name="actual">The object being examined</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
<summary>Asserts that an object is an instance of a given type.</summary>
<param name="expected">The expected Type</param>
<param name="actual">The object being examined</param>
<param name="message">A message to display in case of failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
<summary>Asserts that an object is an instance of a given type.</summary>
<param name="expected">The expected Type</param>
<param name="actual">The object being examined</param>
<param name="message">A message to display in case of failure</param>
<param name="args">An array of objects to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
<summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="aDouble">The value that is to be tested</param>
<param name="message">The message to be displayed when the object is not null</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String)">
<summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="aDouble">The object that is to be tested</param>
<param name="message">The message to be displayed when the object is not null</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNaN(System.Double)">
<summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="aDouble">The object that is to be tested</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
<summary>Asserts that an object may not be assigned a value of a given Type.</summary>
<param name="expected">The expected Type.</param>
<param name="actual">The object under examination</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
<summary>Asserts that an object may not be assigned a value of a given Type.</summary>
<param name="expected">The expected Type.</param>
<param name="actual">The object under examination</param>
<param name="message">The messge to display in case of failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
<summary>Asserts that an object may not be assigned a value of a given Type.</summary>
<param name="expected">The expected Type.</param>
<param name="actual">The object under examination</param>
<param name="message">The message to display in case of failure</param>
<param name="args">Array of objects to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
<summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
<param name="aString">The string to be tested</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
<summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
<param name="aString">The string to be tested</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String)">
<summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
<param name="aString">The string to be tested</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
<summary>Assert that an array,list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
<summary>Asserts that an object is not an instance of a given type.</summary>
<param name="expected">The expected Type</param>
<param name="actual">The object being examined</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
<summary>Asserts that an object is not an instance of a given type.</summary>
<param name="expected">The expected Type</param>
<param name="actual">The object being examined</param>
<param name="message">A message to display in case of failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
<summary>Asserts that an object is not an instance of a given type.</summary>
<param name="expected">The expected Type</param>
<param name="actual">The object being examined</param>
<param name="message">A message to display in case of failure</param>
<param name="args">An array of objects to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
<summary>Verifies that the object that is passed in is not equal to <code>null</code> If the object is not <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="anObject">The object that is to be tested</param>
<param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
<summary>Verifies that the object that is passed in is not equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown with the message that is passed in.</summary>
<param name="anObject">The object that is to be tested</param>
<param name="message">The message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object)">
<summary>Verifies that the object that is passed in is not equal to <code>null</code> If the object is not <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="anObject">The object that is to be tested</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
<summary>Verifies that the object that is passed in is equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="anObject">The object that is to be tested</param>
<param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String)">
<summary>Verifies that the object that is passed in is equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown with the message that is passed in.</summary>
<param name="anObject">The object that is to be tested</param>
<param name="message">The message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsNull(System.Object)">
<summary>Verifies that the object that is passed in is equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="anObject">The object that is to be tested</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
<summary>Asserts that a condition is true. If the condition is false the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
<param name="condition">The evaluated condition</param>
<param name="format">The format of the message to display if the condition is false, containing zero or more format items.</param>
<param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
</member>
<member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)">
<summary>Asserts that a condition is true. If the condition is false the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
<param name="condition">The evaluated condition</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
<summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
<param name="arg1">The first value, expected to be less</param>
<param name="arg2">The second value, expected to be greater</param>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable)">
<summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String)">
<summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String)">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String,System.Object[])">
<summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.Int32,System.Int32,System.Int32)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.Int16,System.Int16,System.Int16)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.Byte,System.Byte,System.Byte)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.Int64,System.Int64,System.Int64)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.Double,System.Double,System.Double)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.Single,System.Single,System.Single)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotBetween(System.IComparable,System.IComparable,System.IComparable)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary,System.String)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the dic <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the dic <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList,System.String)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the list <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the list <paramref name="list" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable,System.String)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the enumerable collection <paramref name="enumerable" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable)">
<summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the enumerable collection <paramref name="enumerable" />.</summary>
</member>
<member name="M:MbUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
<summary>override the default ReferenceEquals to throw an AssertionException. This implementation makes sure there is no mistake in calling this function as part of Assert.</summary>
<param name="a" />
<param name="b" />
</member>
<member name="T:MbUnit.Framework.AssertionException">
<summary>The exception type used to signal MbUnit assertion failures.</summary>
</member>
<member name="T:MbUnit.Framework.AuthorAttribute">
<summary>Associates the author's name and email address with a test fixture, test method, test parameter or other test component.</summary>
</member>
<member name="P:MbUnit.Framework.AuthorAttribute.AuthorEmail">
<summary>Gets or sets the author's email address or an empty string if none.</summary>
</member>
<member name="P:MbUnit.Framework.AuthorAttribute.AuthorHomepage">
<summary>Gets or sets the author's homepage or an empty string if none.</summary>
</member>
<member name="P:MbUnit.Framework.AuthorAttribute.AuthorName">
<summary>Gets or sets the author's name.</summary>
</member>
<member name="M:MbUnit.Framework.AuthorAttribute.Apply(Gallio.Model.MetadataMap)">
<summary>Applies metadata contributions the metadata map of a test component.</summary>
<param name="metadata">The metadata map</param>
</member>
<member name="T:MbUnit.Framework.BindAttribute">
<summary>The bind attribute overrides the default binding rules for a test parameter by specifying a different data source, a binding path or an index. At most one such attribute may appear on any given test parameter.</summary>
</member>
<member name="P:MbUnit.Framework.BindAttribute.Index">
<summary>Gets the binding index, or null if none.</summary>
</member>
<member name="P:MbUnit.Framework.BindAttribute.Path">
<summary>Gets the binding path, or null if none.</summary>
</member>
<member name="P:MbUnit.Framework.BindAttribute.Source">
<summary>
<para> Gets or sets the name of the data source to bind, or null to bind the default data source for the test parameter. </para>
<para> The default source for a test parameter is the anonymous data source defined within the scope of the test parameter or by its enclosing test. </para>
</summary>
</member>
<member name="M:MbUnit.Framework.BindAttribute.DecorateTestParameter(Gallio.Framework.Pattern.IPatternTestParameterBuilder,Gallio.Reflection.ISlotInfo)">
<summary>
<para> Applies decorations to a <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" />. </para>
<para> A typical use of this method is to augment the test parameter with additional metadata or to add additional behaviors to the test parameter. </para>
</summary>
<param name="builder">The test builder</param>
<param name="slot">The slot</param>
</member>
<member name="T:MbUnit.Framework.CategoryAttribute">
<summary>Associates a category name with a test fixture, test method, test parameter or other test component. The category name can be used to classify tests and build test suites of related tests.</summary>
</member>
<member name="P:MbUnit.Framework.CategoryAttribute.CategoryName">
<summary>Gets the category name.</summary>
</member>
<member name="M:MbUnit.Framework.CategoryAttribute.Apply(Gallio.Model.MetadataMap)">
<summary>Applies metadata contributions the metadata map of a test component.</summary>
<param name="metadata">The metadata map</param>
</member>
<member name="T:MbUnit.Framework.CollectionAssert">
<summary>Assertion helper for the <see cref="T:System.Collections.ICollection" /> class. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type)">
<summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="expectedType">System.Type that all objects in collection must be instances of</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String)">
<summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="expectedType">System.Type that all objects in collection must be instances of</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String,System.Object[])">
<summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="expectedType">System.Type that all objects in collection must be instances of</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection)">
<summary>Asserts that all items contained in collection are not equal to null.</summary>
<param name="collection">ICollection of objects to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String)">
<summary>Asserts that all items contained in collection are not equal to null.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String,System.Object[])">
<summary>Asserts that all items contained in collection are not equal to null.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection)">
<summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
<param name="collection">ICollection of objects to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String)">
<summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String,System.Object[])">
<summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
<param name="expected">Instance containing the expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Int32,System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
<param name="expected">Expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreElementsEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
<summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
<param name="expected">Expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
<param name="expected">Expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
<summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
<summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
<param name="expected">Instance containing the expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Boolean,System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
<param name="expected">Expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Asserts that expected and actual are not exactly equal.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
<summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
<summary>Asserts that expected and actual are not exactly equal.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
<summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
<summary>Asserts that expected and actual are not exactly equal.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
<summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Asserts that expected and actual are not equivalent.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
<summary>Asserts that expected and actual are not equivalent.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
<summary>Asserts that expected and actual are not equivalent.</summary>
<param name="expected">The first ICollection of objects to be considered</param>
<param name="actual">The second ICollection of objects to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
<param name="expected">Instance containing the expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Object,System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
<param name="expected">Expected value.</param>
<param name="actual">Instance containing the tested value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object)">
<summary>Asserts that collection contains actual as an item.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="actual">Object to be found within collection</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String)">
<summary>Asserts that collection contains actual as an item.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="actual">Object to be found within collection</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String,System.Object[])">
<summary>Asserts that collection contains actual as an item.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="actual">Object to be found within collection</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object)">
<summary>Asserts that collection does not contain actual as an item.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="actual">Object that cannot exist within collection</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String)">
<summary>Asserts that collection does not contain actual as an item.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="actual">Object that cannot exist within collection</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String,System.Object[])">
<summary>Asserts that collection does not contain actual as an item.</summary>
<param name="collection">ICollection of objects to be considered</param>
<param name="actual">Object that cannot exist within collection</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsCountCorrect(System.Collections.ICollection)">
<summary>Verifies that the <see cref="P:System.Collections.ICollection.Count" /> property is synchronized with the number of iterated elements.</summary>
<param name="col">Collection to test</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="col" /> is a null reference (Nothing in Visual Basic) </exception>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Asserts that subset is not a subset of superset.</summary>
<param name="subset">The ICollection subset to be considered</param>
<param name="superset">The ICollection superset to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
<summary>Asserts that subset is not a subset of superset.</summary>
<param name="subset">The ICollection subset to be considered</param>
<param name="superset">The ICollection superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
<summary>Asserts that subset is not a subset of superset.</summary>
<param name="subset">The ICollection subset to be considered</param>
<param name="superset">The ICollection superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsNotSynchronized(System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is false.</summary>
<param name="actual">Instance containing the expected value.</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
<summary>Asserts that subset is a subset of superset.</summary>
<param name="subset">The ICollection subset to be considered</param>
<param name="superset">The ICollection superset to be considered</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
<summary>Asserts that subset is a subset of superset.</summary>
<param name="subset">The ICollection subset to be considered</param>
<param name="superset">The ICollection superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
<summary>Asserts that subset is a subset of superset.</summary>
<param name="subset">The ICollection subset to be considered</param>
<param name="superset">The ICollection superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.CollectionAssert.IsSynchronized(System.Collections.ICollection)">
<summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is true.</summary>
<param name="actual">Instance containing the expected value.</param>
</member>
<member name="T:MbUnit.Framework.ColumnAttribute">
<summary>
<para> Provides a column of literal values as a data source. </para>
<para> This attribute is equivalent to providing a sequence of values using <see cref="T:MbUnit.Framework.RowAttribute" /> with 1 element in each. </para>
</summary>
</member>
<member name="P:MbUnit.Framework.ColumnAttribute.Values">
<summary>Gets the array of values in the column.</summary>
</member>
<member name="M:MbUnit.Framework.ColumnAttribute.PopulateDataSource(Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
<summary>Populates the data source with the contributions of this attribute.</summary>
<param name="dataSource">The data source</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.DataAttribute">
<summary>The abstract base type for MbUnit attributes that contribute values to data sources along with metadata such a description or expected exception type. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
</member>
<member name="P:MbUnit.Framework.DataAttribute.Description">
<summary>Gets or sets a description of the values provided by the data source.</summary>
</member>
<member name="P:MbUnit.Framework.DataAttribute.ExpectedException">
<summary>Gets or sets the type of exception that should be thrown when the values provided by the data source are consumed by test.</summary>
</member>
<member name="M:MbUnit.Framework.DataAttribute.GetMetadata">
<summary>Gets the metadata for the data source.</summary>
<returns>The metadata keys and values</returns>
</member>
<member name="T:MbUnit.Framework.DependsOnAssemblyAttribute">
<summary>Creates a dependency from this test assembly, test fixture or test method on all tests in some other test assembly. If any test in the other test assembly test fails then this test will not run. Moreover, the dependency forces this test to run after those it depends upon.</summary>
</member>
<member name="P:MbUnit.Framework.DependsOnAssemblyAttribute.TestAssemblyName">
<summary>Gets the dependent test assembly name.</summary>
</member>
<member name="M:MbUnit.Framework.DependsOnAssemblyAttribute.GetDependency(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>Gets the code element that declares the tests on which this test should depend.</summary>
<param name="testBuilder">The test builder</param>
<returns>The code element representing the dependency</returns>
</member>
<member name="T:MbUnit.Framework.DependsOnAttribute">
<summary>Creates a dependency from this test assembly, test fixture or test method on some other test fixture or test method. If the other test fixture or test method fails then this test will not run. Moreover, the dependency forces this test to run after those it depends upon.</summary>
</member>
<member name="P:MbUnit.Framework.DependsOnAttribute.TestFixtureType">
<summary>Gets the dependent test fixture type, or null if the dependency is on another test method of this test fixture.</summary>
</member>
<member name="P:MbUnit.Framework.DependsOnAttribute.TestMethodName">
<summary>Gets the dependent test method name, or null if the dependency is on the whole test fixture.</summary>
</member>
<member name="M:MbUnit.Framework.DependsOnAttribute.GetDependency(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>Gets the code element that declares the tests on which this test should depend.</summary>
<param name="testBuilder">The test builder</param>
<returns>The code element representing the dependency</returns>
</member>
<member name="T:MbUnit.Framework.DescriptionAttribute">
<summary>Associates a description with a test fixture, test method, test parameter or other test component. The description provides useful documentation to users when browsing the tests.</summary>
</member>
<member name="P:MbUnit.Framework.DescriptionAttribute.Description">
<summary>Gets or sets the description.</summary>
</member>
<member name="M:MbUnit.Framework.DescriptionAttribute.Apply(Gallio.Model.MetadataMap)">
<summary>Applies metadata contributions the metadata map of a test component.</summary>
<param name="metadata">The metadata map</param>
</member>
<member name="T:MbUnit.Framework.ExpectedArgumentExceptionAttribute">
<summary>Declares that the associated test method is expected to throw an <see cref="T:System.ArgumentException" />. The expected contents of the exception message may optionally be specified.</summary>
</member>
<member name="T:MbUnit.Framework.ExpectedArgumentNullExceptionAttribute">
<summary>Declares that the associated test method is expected to throw an <see cref="T:System.ArgumentNullException" />. The expected contents of the exception message may optionally be specified.</summary>
</member>
<member name="T:MbUnit.Framework.ExpectedArgumentOutOfRangeExceptionAttribute">
<summary>Declares that the associated test method is expected to throw an <see cref="T:System.ArgumentOutOfRangeException" />. The expected contents of the exception message may optionally be specified.</summary>
</member>
<member name="T:MbUnit.Framework.ExpectedExceptionAttribute">
<summary>Declares that the associated test is expected to throw an exception of a particular type. The expected contents of the exception message may optionally be specified.</summary>
</member>
<member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
<summary>Gets the expected exception type.</summary>
</member>
<member name="P:MbUnit.Framework.ExpectedExceptionAttribute.Message">
<summary>Gets or sets the expected exception message, or null if none specified.</summary>
</member>
<member name="M:MbUnit.Framework.ExpectedExceptionAttribute.DecorateMethodTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.IMethodInfo)">
<summary>
<para> Applies decorations to a method-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
<para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
</summary>
<param name="builder">The test builder</param>
<param name="method">The method</param>
</member>
<member name="T:MbUnit.Framework.ExplicitAttribute">
<summary>
<para> Indicates that a test should only be run explicitly. The test will still appear in the test results but it will not run unless it is explicitly selected for execution. </para>
<para> A test is considered to be explicitly selected when the filter used to run the tests matches the test or its descendants but none of its ancestors. For example, if the filter matches a test case but not its containing test fixture then the test case will be deemed to be explicitly selected. Otherwise the test case will be implicitly selected by virtue of the fact that the filter matched one of its ancestors. </para>
<para> This attribute can be used to exclude from normal execution any tests that are particularly expensive or require manual supervision by an operator. </para>
</summary>
</member>
<member name="P:MbUnit.Framework.ExplicitAttribute.Reason">
<summary>Gets the reason that the test should only run explicitly.</summary>
</member>
<member name="M:MbUnit.Framework.ExplicitAttribute.DecorateTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>
<para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
<para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
</summary>
<param name="builder">The test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.FixtureInitializerAttribute">
<summary>
<para> The fixture initializer attribute is applied to a method that is to be invoked after a fixture instance has been created to complete its initialization. </para>
<para> This attribute provides a mechanism for completing the initialization of a fixture if the work cannot be completed entirely within the constructor. For example, data binding might be used to set fields and property values of the fixture instance. Consequently post-construction initialization may be required. </para>
<para>
<see cref="T:MbUnit.Framework.FixtureInitializerAttribute" /> allows initialization to occur earlier in the test lifecycle than <see cref="T:MbUnit.Framework.FixtureSetUpAttribute" />. </para>
</summary>
</member>
<member name="M:MbUnit.Framework.FixtureInitializerAttribute.DecorateContainingTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
<param name="containingTestBuilder">The containing test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.FixtureSetUpAttribute">
<summary>The fixture set up attribute is applied to a method that is to be invoked when a fixture instance is being set up before any of its tests are executed.</summary>
</member>
<member name="M:MbUnit.Framework.FixtureSetUpAttribute.DecorateContainingTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
<param name="containingTestBuilder">The containing test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.FixtureTearDownAttribute">
<summary>The fixture tear down attribute is applied to a method that is to be invoked when a fixture instance is being torn down after all of its tests have been executed.</summary>
</member>
<member name="M:MbUnit.Framework.FixtureTearDownAttribute.DecorateContainingTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
<param name="containingTestBuilder">The containing test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.GenericAssert">
<summary>Assertion class This class cannot be inherited.</summary>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0},System.String,System.Object[])">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0},System.String)">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0})">
<summary>Assert that an array,list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0},System.String,System.Object[])">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0},System.String)">
<summary>Assert that an array, list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
<param name="message">The message to be displayed on failure</param>
</member>
<member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0})">
<summary>Assert that an array,list or other collection is empty</summary>
<param name="collection">An array, list or other collection implementing ICollection</param>
</member>
<member name="T:MbUnit.Framework.HeaderAttribute">
<summary>Defines names as aliases for the columns in an indexed data source such as those that have been populated by <see cref="T:MbUnit.Framework.RowAttribute" /> or <see cref="T:MbUnit.Framework.ColumnAttribute" />. The names may subsequently be used in data binding expressions in place of their corresponding column indices.</summary>
</member>
<member name="P:MbUnit.Framework.HeaderAttribute.ColumnNames">
<summary>Gets the array of column names.</summary>
</member>
<member name="M:MbUnit.Framework.HeaderAttribute.PopulateDataSource(Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
<summary>Populates the data source with the contributions of this attribute.</summary>
<param name="dataSource">The data source</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.IgnoreAttribute">
<summary>
<para> Indicates that a test is to be ignored by the framework and will not be run. The test will still appear in test reports along with the reason that it was ignored, if provided. </para>
<para> This attribute can be used to disable tests that are broken or expensive without commenting them out or removing them from the source code. </para>
</summary>
</member>
<member name="P:MbUnit.Framework.IgnoreAttribute.Reason">
<summary>Gets the reason that the test has been ignored, or an empty string if none.</summary>
</member>
<member name="M:MbUnit.Framework.IgnoreAttribute.DecorateTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>
<para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
<para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
</summary>
<param name="builder">The test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.ImportanceAttribute">
<summary>Associates a <see cref="T:MbUnit.Framework.Importance" /> with a test fixture, test method, test parameter or other test component.</summary>
</member>
<member name="P:MbUnit.Framework.ImportanceAttribute.Importance">
<summary>Gets or sets the importance.</summary>
</member>
<member name="M:MbUnit.Framework.ImportanceAttribute.Apply(Gallio.Model.MetadataMap)">
<summary>Applies metadata contributions the metadata map of a test component.</summary>
<param name="metadata">The metadata map</param>
</member>
<member name="T:MbUnit.Framework.InterimAssert">
<summary>This is an interim assertion class intended to be used within MbUnit v2 tests. We'll refactor these assertions when we move to Gallio. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.InterimAssert.AreDistinct``1(``0[])">
<summary>Asserts that all of the values in the objects array are distinct by equality and hashcode.</summary>
<typeparam name="T">The type of object</typeparam>
<param name="items">The objects</param>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="items" /> is null</exception>
</member>
<member name="M:MbUnit.Framework.InterimAssert.DoesNotThrow(Gallio.Action)">
<summary>Asserts that the specified block of code does not throw an exception.</summary>
<param name="action">The block of code to run</param>
</member>
<member name="M:MbUnit.Framework.InterimAssert.DoesNotThrow(Gallio.Action,System.String)">
<summary>Asserts that the specified block of code does not throw an exception.</summary>
<param name="action">The block of code to run</param>
<param name="message">The failure message</param>
</member>
<member name="M:MbUnit.Framework.InterimAssert.DoesNotThrow(Gallio.Action,System.String,System.Object[])">
<summary>Asserts that the specified block of code does not throw an exception.</summary>
<param name="action">The block of code to run</param>
<param name="messageFormat">The failure message format string</param>
<param name="messageArgs">The failure message arguments</param>
</member>
<member name="M:MbUnit.Framework.InterimAssert.WithKeyedPairs``3(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``2},Gallio.Action{``0,``1,``2})">
<summary>Evaluates an assertion with matched pairs drawn from each dictionary that have identical keys. Fails if the collections have different sizes or if one is null but not the other.</summary>
<typeparam name="TKey">The key type</typeparam>
<typeparam name="TExpectedValue">The expected value type</typeparam>
<typeparam name="TActualValue">The expected value type</typeparam>
<param name="expectedValues">The enumeration of expected values</param>
<param name="actualValues">The enumeration of actual values</param>
<param name="assertion">The assertion to evaluate over all pairs</param>
</member>
<member name="M:MbUnit.Framework.InterimAssert.WithKeyedPairs``3(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``2},Gallio.Action{``1,``2})">
<summary>Evaluates an assertion with matched pairs drawn from each dictionary that have identical keys. Fails if the collections have different sizes or if one is null but not the other.</summary>
<typeparam name="TKey">The key type</typeparam>
<typeparam name="TExpectedValue">The expected value type</typeparam>
<typeparam name="TActualValue">The actual value type</typeparam>
<param name="expectedValues">The enumeration of expected values</param>
<param name="actualValues">The enumeration of actual values</param>
<param name="assertion">The assertion to evaluate over all pairs</param>
</member>
<member name="M:MbUnit.Framework.InterimAssert.WithPairs``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Gallio.Action{``0,``1})">
<summary>Evaluates an assertion with matched pairs drawn from each collection. Fails if the collections have different sizes or if one is null but not the other.</summary>
<typeparam name="TExpected">The expected value type</typeparam>
<typeparam name="TActual">The actual value type</typeparam>
<param name="expectedValues">The enumeration of expected values</param>
<param name="actualValues">The enumeration of actual values</param>
<param name="assertion">The assertion to evaluate over all pairs</param>
</member>
<member name="T:MbUnit.Framework.MetadataAttribute">
<summary>Associates custom metadata with a test fixture, test method, test parameter or other test component. The metadata can be used for documentation, classification or dynamic customization of tests.</summary>
</member>
<member name="P:MbUnit.Framework.MetadataAttribute.MetadataKey">
<summary>Gets the metadata key.</summary>
</member>
<member name="P:MbUnit.Framework.MetadataAttribute.MetadataValue">
<summary>Gets the metadata value.</summary>
</member>
<member name="M:MbUnit.Framework.MetadataAttribute.Apply(Gallio.Model.MetadataMap)">
<summary>Applies metadata contributions the metadata map of a test component.</summary>
<param name="metadata">The metadata map</param>
</member>
<member name="T:MbUnit.Framework.MixinAttribute">
<summary>
<para> The mixin attribute combines tests, test parameters, setup/teardown methods, data sources and other test elements declared by a target mixin class into a host test. The target mixin class is incorporated as a surrogate of the host test and participates in all phases of the test lifecycle including data binding, setup/teardown and test execution. </para>
<para> At runtime, an instance of the target class is created and injected into the host by way of the property, field, constructor parameter or method parameter to which the mixin attribute was applied. </para>
</summary>
</member>
<member name="P:MbUnit.Framework.MixinAttribute.MixinType">
<summary>Gets the mixin type.</summary>
</member>
<member name="T:MbUnit.Framework.ParameterAttribute">
<summary>Declares that a property, field or parameter is a test parameter and specifies its properties. At most one attribute of this type may appear on any given test fixture property or field. If the attribute is omitted from test method parameters and test fixture constructor parameters the parameter will be declared with default values (which are usually just fine).</summary>
</member>
<member name="P:MbUnit.Framework.ParameterAttribute.Index">
<summary>Gets or sets the zero-based index of the parameter. The index is used instead of the parameter name in unlabeled table-like data sources (such as row-tests and headerless CSV files) to select the column to which the parameter will be bound.</summary>
<value>The default value is null which causes the parameter's index to be set to 0 for fields and properties or the parameter's actual positional index for the combined list of generic parameters and method parameters with the generic parameters counted first followed by the method parameters in left-to-right order.</value>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="value" /> is less than 0</exception>
</member>
<member name="P:MbUnit.Framework.ParameterAttribute.Name">
<summary>Gets or sets the name of the parameter. If set to null, the parameter is named the same as the property, field or parameter to which the attribute has been applied.</summary>
<value>The default value is null.</value>
</member>
<member name="M:MbUnit.Framework.ParameterAttribute.InitializeTestParameter(Gallio.Framework.Pattern.IPatternTestParameterBuilder,Gallio.Reflection.ISlotInfo)">
<summary>Initializes a test parameter after it has been added to the containing test.</summary>
<param name="testParameterBuilder">The test parameter builer</param>
<param name="slot">The slot</param>
</member>
<member name="T:MbUnit.Framework.PendingAttribute">
<summary>
<para> Indicates that a test has pending prerequisites so it will not be run. The test will still appear in test reports along with an explanation of the reason it it pending, if provided. </para>
<para> This attribute can be used to disable tests that cannot run because the subject under test is missing certain prerequisite functionality. It may also serve as a placeholder for test that have yet to be implemented. </para>
</summary>
</member>
<member name="P:MbUnit.Framework.PendingAttribute.Reason">
<summary>Gets the reason that the test is pending.</summary>
</member>
<member name="M:MbUnit.Framework.PendingAttribute.DecorateTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>
<para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
<para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
</summary>
<param name="builder">The test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.ReflectionAssert">
<summary>Reflection Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Type[])">
<summary>Asserts that the type has a public instance constructor with a signature defined by parameters.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Reflection.BindingFlags,System.Type[])">
<summary>Asserts that the type has a constructor, with the specified bindind flags, with a signature defined by parameters.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasDefaultConstructor(System.Type)">
<summary>Asserts that the type has a default public constructor</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.String)">
<summary>Asserts that the type has a public field method with a signature defined by parameters.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.Reflection.BindingFlags,System.String)">
<summary>Asserts that the type has a field, with the specified bindind flags, with a signature defined by parameters.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.String,System.Type[])">
<summary>Asserts that the type has a public instance method with a signature defined by parameters.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.Reflection.BindingFlags,System.String,System.Type[])">
<summary>Asserts that the type has a method, with the specified bindind flags, with a signature defined by parameters.</summary>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.IsAssignableFrom(System.Type,System.Type)">
<summary>Asserts whether an instance of the <paramref name="parent" /> can be assigned from an instance of <paramref name="child" />.</summary>
<param name="parent">Parent <see cref="T:System.Type" /> instance.</param>
<param name="child">Child <see cref="T:System.Type" /> instance.</param>
</member>
<member name="M:MbUnit.Framework.ReflectionAssert.IsInstanceOf(System.Type,System.Object)">
<summary>Asserts whether <paramref name="child" /> is an instance of the <paramref name="type" />.</summary>
<param name="type">
<see cref="T:System.Type" /> instance.</param>
<param name="child">Child instance.</param>
</member>
<member name="T:MbUnit.Framework.RowAttribute">
<summary>Provides a row of literal values as a data source.</summary>
</member>
<member name="P:MbUnit.Framework.RowAttribute.Values">
<summary>Gets the array of values in the row.</summary>
</member>
<member name="M:MbUnit.Framework.RowAttribute.PopulateDataSource(Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
<summary>Populates the data source with the contributions of this attribute.</summary>
<param name="dataSource">The data source</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.SecurityAssert">
<summary>Security Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.IsAuthenticated(System.Security.Principal.IIdentity)">
<summary>Asserts that <paramref name="identity" /> is authenticated.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.IsNotAuthenticated(System.Security.Principal.IIdentity)">
<summary>Asserts that <paramref name="identity" /> is not authenticated.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowIsAuthenticated">
<summary>Asserts that the current windows identity is authenticated.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowIsNotAuthenticated">
<summary>Asserts that the current windows identity is not authenticated.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInAdministrator">
<summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.Administrator" /> role.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInGuest">
<summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.Guest" /> role.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInPowerUser">
<summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.PowerUser" /> role.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInRole(System.Security.Principal.WindowsBuiltInRole)">
<summary>Asserts that the current windows identity is in <param name="role" />.</summary>
</member>
<member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInUser">
<summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.User" /> role.</summary>
</member>
<member name="T:MbUnit.Framework.SetUpAttribute">
<summary>The setup attribute is applied to a method that is to be invoked before each test in a fixture executes. The method will run once for each test. This class cannot be inherited.</summary>
</member>
<member name="T:MbUnit.Framework.StringAssert">
<summary>String Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.StringAssert.AreEqualIgnoreCase(System.String,System.String)">
<summary>Asserts that two strings are equal, ignoring the case</summary>
<param name="s1">Expected string</param>
<param name="s2">Actual string</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.DoesNotContain(System.String,System.Char[])">
<summary>Asserts the string does not contain c</summary>
<param name="s">String to test.</param>
<param name="anyOf">Variable list of characeters.</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.String)">
<summary>Asserts the regular expression reg makes a full match on s</summary>
<param name="s">String to test.</param>
<param name="reg">Regular expression</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.Text.RegularExpressions.Regex)">
<summary>Asserts the regular expression regex makes a full match on <paramref name="s" />.</summary>
<param name="s">String to test.</param>
<param name="regex">Regular expression</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.IsEmpty(System.String)">
<summary>Asserts that the string is non null and empty</summary>
<param name="s">String to test.</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.IsNonEmpty(System.String)">
<summary>Asserts that the string is non null and non empty</summary>
<param name="s">String to test.</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.String)">
<summary>Asserts the regular expression reg makes a match on s</summary>
<param name="s">String to test.</param>
<param name="reg">Regular expression</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.Text.RegularExpressions.Regex)">
<summary>Asserts the regular expression regex makes a match on s</summary>
<param name="s">String to test.</param>
<param name="regex">A <see cref="T:System.Text.RegularExpressions.Regex" /> instance.</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.String)">
<summary>Asserts the regular expression reg makes a match on s</summary>
<param name="s">String to test.</param>
<param name="reg">Regular expression</param>
</member>
<member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.Text.RegularExpressions.Regex)">
<summary>Asserts the regular expression regex makes a match on s</summary>
<param name="s">String to test.</param>
<param name="regex">A <see cref="T:System.Text.RegularExpressions.Regex" /> instance.</param>
</member>
<member name="T:MbUnit.Framework.TearDownAttribute">
<summary>The tear down attribute is applied to a method that is to be invoked after each test in a fixture executes. The method will run once for each test. This class cannot be inherited.</summary>
</member>
<member name="T:MbUnit.Framework.TestAttribute">
<summary>
<para> The test attribute is applied to a method that represents a single test case within a fixture. By default, if the method throws an unexpected exception, the test will be deemed to have failed. Otherwise, the test will pass. </para>
<para> The default behavior may be modified by test decorator attributes that may alter the execution environment of the test, catch and reinterpret any exceptions it throws, or impose additional constraints upon its execution. </para>
<para> Output from the test, such as text written to the console, is captured by the framework and will be included in the test report. Additional information can also be logged during test execution using the <see cref="T:Gallio.Framework.Log" /> class. </para>
</summary>
</member>
<member name="M:MbUnit.Framework.TestAttribute.SetTestSemantics(Gallio.Framework.Pattern.PatternTest,Gallio.Reflection.IMethodInfo)">
<summary>
<para> Applies semantic actions to the <see cref="P:Gallio.Framework.Pattern.PatternTest.TestActions" /> member of a test to set the test's runtime behavior. </para>
<para> This method is called after <see cref="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.InitializeTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.IMethodInfo)" />. </para>
</summary>
<param name="test">The test</param>
<param name="method">The test method</param>
</member>
<member name="T:MbUnit.Framework.TestDecoratorAttribute">
<summary>
<para> A test decorator applies actions to be performed around the initialization, setup, execution, teardown and disposal lifecycle of a test. </para>
<para> This abstract class provides a convenient way to implement new test decorators of your own. If you need more control over how the test is decorated, you may prefer subclassing <see cref="T:Gallio.Framework.Pattern.TestDecoratorPatternAttribute" /> directly instead. </para>
<para> When multiple test decorators are applied to a test, they are installed in order according to the <see cref="P:Gallio.Framework.Pattern.DecoratorPatternAttribute.Order" /> property. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.TestDecoratorAttribute.DecorateTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>
<para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
<para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
</summary>
<param name="builder">The test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="M:MbUnit.Framework.TestDecoratorAttribute.Dispose(Gallio.Framework.Pattern.PatternTestInstanceState)">
<summary>Disposes the test.</summary>
<param name="testInstanceState">The test instance state, not null</param>
</member>
<member name="M:MbUnit.Framework.TestDecoratorAttribute.Execute(Gallio.Framework.Pattern.PatternTestInstanceState)">
<summary>Executes the test.</summary>
<param name="testInstanceState">The test instance state, not null</param>
</member>
<member name="M:MbUnit.Framework.TestDecoratorAttribute.Initialize(Gallio.Framework.Pattern.PatternTestInstanceState)">
<summary>Initializes the test.</summary>
<param name="testInstanceState">The test instance state, not null</param>
</member>
<member name="M:MbUnit.Framework.TestDecoratorAttribute.SetUp(Gallio.Framework.Pattern.PatternTestInstanceState)">
<summary>Sets up the test.</summary>
<param name="testInstanceState">The test instance state, not null</param>
</member>
<member name="M:MbUnit.Framework.TestDecoratorAttribute.TearDown(Gallio.Framework.Pattern.PatternTestInstanceState)">
<summary>Tears down the test.</summary>
<param name="testInstanceState">The test instance state, not null</param>
</member>
<member name="T:MbUnit.Framework.TestFixtureAttribute">
<summary>The test fixture attribute is applied to a class that contains a suite of related test cases. If an error occurs while initializing the fixture or if at least one of the test cases within the fixture fails, then the fixture itself will be deemed to have failed. Otherwise the fixture will pass. Output from the fixture, such as text written to the console, is captured by the framework and will be included in the test report.</summary>
</member>
<member name="T:MbUnit.Framework.TestsOnAttribute">
<summary>Associates the name of the type under test with a test fixture, test method, test parameter or other test component. The type under test helps to describe which type is primarily being exercised by the test so that we can quickly identify which tests to run after making changes to a given type.</summary>
</member>
<member name="P:MbUnit.Framework.TestsOnAttribute.TypeName">
<summary>Gets the full name or assembly qualified name of the type under test.</summary>
<value>The name of the type under test as obtained by <see cref="P:System.Type.FullName" /> or <see cref="P:System.Type.AssemblyQualifiedName" />.</value>
</member>
<member name="M:MbUnit.Framework.TestsOnAttribute.Apply(Gallio.Model.MetadataMap)">
<summary>Applies metadata contributions the metadata map of a test component.</summary>
<param name="metadata">The metadata map</param>
</member>
<member name="T:MbUnit.Framework.TimeoutAttribute">
<summary>Sets the maximum amount of time that a test or fixture is permitted to run.</summary>
</member>
<member name="P:MbUnit.Framework.TimeoutAttribute.TimeoutSeconds">
<summary>Gets the timeout in seconds.</summary>
</member>
<member name="M:MbUnit.Framework.TimeoutAttribute.DecorateTest(Gallio.Framework.Pattern.IPatternTestBuilder,Gallio.Reflection.ICodeElementInfo)">
<summary>
<para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
<para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
</summary>
<param name="builder">The test builder</param>
<param name="codeElement">The code element</param>
</member>
<member name="T:MbUnit.Framework.Importance">
<summary>Specifies the test's relative importance which can be used for classifying tests to be executed.</summary>
</member>
<member name="F:MbUnit.Framework.Importance.Critical">
<summary>Critical importance.</summary>
</member>
<member name="F:MbUnit.Framework.Importance.Severe">
<summary>Severe importance. Less important than <see cref="F:MbUnit.Framework.Importance.Critical" />.</summary>
</member>
<member name="F:MbUnit.Framework.Importance.Serious">
<summary>Serious importance. Less important than <see cref="F:MbUnit.Framework.Importance.Severe" />.</summary>
</member>
<member name="F:MbUnit.Framework.Importance.Default">
<summary>Default importance.</summary>
</member>
<member name="F:MbUnit.Framework.Importance.NoOneReallyCaresAbout">
<summary>Not important.</summary>
</member>
<member name="T:MbUnit.Framework.Reflection.Reflector">
<summary>Helps to test non-public classes and class members.</summary>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.CreateInstance(System.String,System.String)">
<summary>Create Instance</summary>
<param name="assemblyName">Full assembly path.</param>
<param name="typeName">Type Name such as (System.String)</param>
<returns>Newly created object.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.CreateInstance(System.String,System.String,System.Object[])">
<summary>Create Instance</summary>
<param name="assemblyName">Full assembly path.</param>
<param name="typeName">Type Name such as (System.String)</param>
<param name="args">Constructor parameters.</param>
<returns>Newly created object.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.Object,System.String)">
<summary>Get public, non-public, or static field value.</summary>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field name.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String)">
<summary>Get field value.</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field name.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean)">
<summary>Get field value.</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field name.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String)">
<summary>Get public, non-public, or static field value.</summary>
<param name="fieldName">Field name.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String,MbUnit.Framework.Reflection.AccessModifier)">
<summary>Get field value.</summary>
<param name="fieldName">Field name.</param>
<param name="access">Specify field access modifier.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String,MbUnit.Framework.Reflection.AccessModifier,System.Boolean)">
<summary>Get field value.</summary>
<param name="fieldName">Field name.</param>
<param name="access">Specify field access modifier.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
<returns>Field value</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(System.Object,System.String)">
<summary>Get Property Value</summary>
<param name="obj">Object where property is defined.</param>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String)">
<summary>Get Property Value</summary>
<param name="access">Specify property access modifier.</param>
<param name="obj">Object that has the property.</param>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean)">
<summary>Get Property Value</summary>
<param name="access">Specify property access modifier.</param>
<param name="obj">Object that has the property.</param>
<param name="propertyName">Property Name.</param>
<param name="lookInBase">Set to true if need look for the property in base classes.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(System.String)">
<summary>Get Property Value</summary>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String)">
<summary>Get Property Value</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Boolean)">
<summary>Get Property Value</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
<returns>Property Value.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.Object,System.String)">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.Object,System.String,System.Object[])">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object[])">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="access">Specify method access modifier.</param>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean,System.Object[])">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="access">Specify method access modifier.</param>
<param name="obj">Object where method is defined.</param>
<param name="methodName">Method to call</param>
<param name="lookInBase">Speicifies if to search for the method in the base classes or not.</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.String)">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="methodName">Method to call</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.String,System.Object[])">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="methodName">Method to call</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object[])">
<summary>Execute a NonPublic method with arguments on a object</summary>
<param name="methodName">Method to call</param>
<param name="access">Specify method access modifier.</param>
<param name="methodParams">Method's parameters.</param>
<returns>The object the method should return.</returns>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(System.Object,System.String,System.Object)">
<summary>Set field value.</summary>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object)">
<summary>Set field value.</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object,System.Boolean)">
<summary>Set field value.</summary>
<param name="access">Specify field access modifier.</param>
<param name="obj">Object where field is defined.</param>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
<param name="lookInBase">Specify if need to look in Base classes.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(System.String,System.Object)">
<summary>Set field value.</summary>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object)">
<summary>Set field value.</summary>
<param name="fieldName">Field Name.</param>
<param name="fieldValue">Field Value.</param>
<param name="access">Specify field access modifier.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(System.Object,System.String,System.Object)">
<summary>Set Property value.</summary>
<param name="obj">Object where property is defined.</param>
<param name="propertyName">Property Name.</param>
<param name="propertyValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object)">
<summary>Set Property value.</summary>
<param name="access">Specify property access modifier.</param>
<param name="obj">Object where property is defined.</param>
<param name="propertyName">Property Name.</param>
<param name="propertyValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object,System.Boolean)">
<summary>Set Property value.</summary>
<param name="access">Specify property access modifier.</param>
<param name="obj">Object where property is defined.</param>
<param name="propertyName">Property Name.</param>
<param name="propertyValue">Property Value.</param>
<param name="lookInBase">Set to true if need look for the property in base classes.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(System.String,System.Object)">
<summary>Set Property value.</summary>
<param name="propertyName">Property Name.</param>
<param name="propertyValue">Property Value.</param>
</member>
<member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object)">
<summary>Set Property value.</summary>
<param name="access">Specify property access modifier.</param>
<param name="propertyName">Property Name.</param>
<param name="propertyValue">Property Value.</param>
</member>
<member name="T:MbUnit.Framework.Reflection.AccessModifier">
<summary>Access modifier of a class or class member.</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.AccessModifier.Public">
<summary>public</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.AccessModifier.NonPublic">
<summary>protected, internal, private</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.AccessModifier.Static">
<summary>static</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.AccessModifier.Default">
<summary>default that includes public, protected, internal, private, and static</summary>
</member>
<member name="T:MbUnit.Framework.Reflection.MemberType">
<summary>Member types of a class.</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.MemberType.Method">
<summary>Method</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.MemberType.Field">
<summary>Field or variable</summary>
</member>
<member name="F:MbUnit.Framework.Reflection.MemberType.Property">
<summary>Property</summary>
</member>
<member name="T:MbUnit.Framework.Xml.XmlSerializationAssert">
<summary>Assertions based on Xml serialization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
</member>
<member name="M:MbUnit.Framework.Xml.XmlSerializationAssert.AreEqualAfterRoundTrip``1(``0)">
<summary>Performs XML serialization then deserialization of the specified object then compares the object to ensure that it equals the original.</summary>
<typeparam name="T">The type of object to serialize</typeparam>
<param name="obj">The object</param>
<returns>The deserialized object after serialization</returns>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
</member>
<member name="M:MbUnit.Framework.Xml.XmlSerializationAssert.IsXmlSerializable(System.Type)">
<summary>Asserts that an <see cref="T:System.Xml.Serialization.XmlSerializer" /> can be produced for a <see cref="T:System.Type" />.</summary>
<param name="t">The type to check</param>
</member>
<member name="M:MbUnit.Framework.Xml.XmlSerializationAssert.RoundTrip``1(``0)">
<summary>Performs XML serialization then deserialization of the specified object.</summary>
<typeparam name="T">The type of object to serialize</typeparam>
<param name="obj">The object</param>
<returns>The deserialized object after serialization</returns>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
</member>
</members>
</doc>
|