summaryrefslogtreecommitdiff
path: root/build/tools/mbunit/MbUnit.Framework.xml
blob: 72f6bd47487023a8d369e4fb91c9b0cf2b7c87d0 (plain)
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
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>MbUnit.Framework</name>
  </assembly>
  <members>
    <member name="T:MbUnit.Core.AssemblyEventArgs">
      <summary>Event argument that contains an assembly.</summary>
    </member>
    <member name="P:MbUnit.Core.Fixture.IsIgnored">
      <summary>Returns true if the entire test fixture is ignored.</summary>
    </member>
    <member name="T:MbUnit.Core.MethodSignature">
      <summary>TODO - Add class summary</summary>
    </member>
    <member name="T:MbUnit.Core.ResourceHelper">
      <summary>Static helper functions for retreiving resources This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Core.ResourceHelper.CreateImages(System.String)">
      <summary>Creates and saves the images in the directory with the specified path.</summary>
      <param name="path">The directory path in which to save the images</param>
    </member>
    <member name="T:MbUnit.Core.RunPipe">
      <summary>This class represents the execution pipe of a test. It contains a sequence of <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</summary>
    </member>
    <member name="T:MbUnit.Core.RunPipeEventArgs">
      <summary>TODO - Add class summary</summary>
    </member>
    <member name="T:MbUnit.Core.TypeEventArgs">
      <summary>Event argument that carries a <see cref="P:MbUnit.Core.TypeEventArgs.Type" /> instance.</summary>
    </member>
    <member name="T:MbUnit.Core.TypeHelper">
      <summary>Helper static class for Type related tasks This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type)">
      <summary>Creates an instance of the type <paramref name="t" /> using the default Method.</summary>
      <param name="t">type to instanciate</param>
      <returns>type <paramref name="t" /> instance</returns>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type,System.Object[])">
      <summary>Creates an instance of the type <paramref name="t" /> using the Method that matches the signature defined by <paramref name="args" /></summary>
      <param name="t">type to instanciate</param>
      <param name="args">argument of the Method</param>
      <returns>type <paramref name="t" /> instance initialized using <paramref name="args" /></returns>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethod(System.Type,System.Type)">
      <summary>Gets the first method of the type <paramref name="t" /> that is tagged by a <paramref name="customAttributeType" /> instance.</summary>
      <param name="t">type to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>First method of <paramref name="t" /> that that is tagged by a <paramref name="customAttributeType" /> instance, null if no method is tagged by the specified attribute type.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethods(System.Type,System.Type)">
      <summary>Gets all methods of the type <paramref name="t" /> that are tagged by a <paramref name="customAttributeType" /> instance.</summary>
      <param name="t">type to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>
        <see cref="T:System.Reflection.MethodInfo" /> collection of type <paramref name="t" /> that that are tagged by a <paramref name="customAttributeType" /> instance.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Type[])">
      <summary>Retreives the <see cref="T:System.Reflection.MethodInfo" /> that matches the signature.</summary>
      <param name="t">type to test</param>
      <param name="types">Method parameter types</param>
      <returns>The <see cref="T:System.Reflection.MethodInfo" /> instance of <paramref name="t" /> matching the signature.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> is a null reference</exception>
      <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException"> No Method of type <paramref name="t" /> match the signature defined by <paramref name="types" />. </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Object[])">
      <summary>Retreives the <see cref="T:System.Reflection.MethodInfo" /> that matches the signature, given the list of arguments.</summary>
      <param name="t">type to test</param>
      <param name="args">Method arguments from which the signature is deduced</param>
      <returns>The <see cref="T:System.Reflection.MethodInfo" /> instance of <paramref name="t" /> matching the signature defined by the list of arguments.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> is a null reference</exception>
      <exception cref="T:System.ArgumentNullException"> One of the args item is a null reference </exception>
      <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException"> No Method of type <paramref name="t" /> match the signature defined by <paramref name="args" />. </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
      <summary>Gets the first instance of <paramref name="customAttributeType" /> from the method <paramref name="mi" /> custom attributes.</summary>
      <param name="mi">Method to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>First instance of <paramref name="customAttributeTyp" /> from the method <paramref name="mi" /> custom attributes.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="mi" /> is not tagged by an attribute of type <paramref name="customAttributeType" /></exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetIndexer(System.Type,System.Type[])">
      <summary>Retreives the indexer that matches the signature</summary>
      <param name="t">type that holds the indexer</param>
      <param name="args">indexer arguments</param>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.GetValue(System.Reflection.PropertyInfo,System.Object,System.Object[])">
      <summary>Gets the value of the property <paramref name="pi" />.</summary>
      <param name="pi">property</param>
      <param name="o">object instnace</param>
      <param name="args">property arguments (in case of an indexer</param>
      <returns>property value</returns>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.HasConstructor(System.Type,System.Type[])">
      <summary>Gets a value indicating if the type <paramref name="t" /> contains a Method with the signature defined by <paramref name="types" />.</summary>
      <param name="t">type to test</param>
      <param name="types">arguments of the Method</param>
      <returns>true if <paramref name="t" /> contains a Method matching types</returns>
      <exception cref="T:System.ArgumentNullException">t is a null reference</exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Type,System.Type)">
      <summary>Gets a value indicating if the <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
      <param name="t">method to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>true if <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
      <summary>Gets a value indicating if the method info <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
      <param name="t">method to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>true if <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.HasIndexer(System.Type,System.Type[])">
      <summary>Gets a value indicating if the type <paramref name="t" /> has an indexer that takes <paramref name="args" /> arguments.</summary>
      <param name="t">type that holds the indexer</param>
      <param name="args">indexer arguments</param>
      <returns>true if an indexer that matched the signature was found, false otherwise</returns>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.HasMethodCustomAttribute(System.Type,System.Type)">
      <summary>Gets a value indicating the class type <paramref name="t" /> has a method that is tagged by a <paramref name="customAttributeType" /> instance.</summary>
      <param name="t">type to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>true if class type <paramref name="t" /> has a method tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.ParametersMatch(System.Reflection.ParameterInfo[],System.Type[])">
      <summary>Gets a value indicating if the <paramref name="parameters" /> match the <paramref name="types" /></summary>
      <param name="parameters">property or method paramter info</param>
      <param name="types">tested signature</param>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.ShowMethodAttributes(System.Type)">
      <summary>Output the methods and their custom attributes to the console. (Debugging method)</summary>
      <param name="t">type to visit</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="t" /> is a null reference </exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="t" /> is anot a class type. </exception>
    </member>
    <member name="M:MbUnit.Core.TypeHelper.TryGetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
      <summary>Gets the first instance of <paramref name="customAttributeType" /> from the method <paramref name="mi" /> custom attributes.</summary>
      <param name="mi">Method to test</param>
      <param name="customAttributeType">custom attribute type to search</param>
      <returns>First instance of <paramref name="customAttributeTyp" /> from the method <paramref name="mi" /> custom attributes; otherwize a null reference</returns>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
    </member>
    <member name="T:MbUnit.Core.AssemblyEventHandler">
      <summary>Assembly event delegate</summary>
    </member>
    <member name="T:MbUnit.Core.TypeEventHandler">
      <summary>Type event delegate</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.AssemblyCollection">
      <summary>A collection of elements of type Assembly This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.AssemblyCollection.Item(System.Int32)">
      <summary>Gets or sets the Assembly at the given index in this AssemblyCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyCollection.Add(System.Reflection.Assembly)">
      <summary>Adds an instance of type Assembly to the end of this AssemblyCollection.</summary>
      <param name="value">The Assembly to be added to the end of this AssemblyCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyCollection.Contains(System.Reflection.Assembly)">
      <summary>Determines whether a specfic Assembly value is in this AssemblyCollection.</summary>
      <param name="value">The Assembly value to locate in this AssemblyCollection.</param>
      <returns>true if value is found in this AssemblyCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this AssemblyCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyCollection.Remove(System.Reflection.Assembly)">
      <summary>Removes the first occurrence of a specific Assembly from this AssemblyCollection.</summary>
      <param name="value">The Assembly value to remove from this AssemblyCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.AssemblyCollection.Enumerator">
      <summary>Type-specific enumeration class, used by AssemblyCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary">
      <summary>A dictionary with keys of type Assembly and values of type TypeCollection This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Item(System.Reflection.Assembly)">
      <summary>Gets or sets the TypeCollection associated with the given Assembly</summary>
      <param name="key">The Assembly whose value to get or set.</param>
    </member>
    <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Keys">
      <summary>Gets a collection containing the keys in this AssemblyTypeCollectionDictionary.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Values">
      <summary>Gets a collection containing the values in this AssemblyTypeCollectionDictionary.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Add(System.Reflection.Assembly)">
      <summary>Adds an element with the specified key and value to this AssemblyTypeCollectionDictionary.</summary>
      <param name="key">The Assembly key of the element to add.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Contains(System.Reflection.Assembly)">
      <summary>Determines whether this AssemblyTypeCollectionDictionary contains a specific key.</summary>
      <param name="key">The Assembly key to locate in this AssemblyTypeCollectionDictionary.</param>
      <returns>true if this AssemblyTypeCollectionDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Remove(System.Reflection.Assembly)">
      <summary>Removes the element with the specified key from this AssemblyTypeCollectionDictionary.</summary>
      <param name="key">The Assembly key of the element to remove.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureCollection.Add(MbUnit.Core.Fixture)">
      <summary>Adds an instance of type Fixture to the end of this FixtureCollection.</summary>
      <param name="value">The Fixture to be added to the end of this FixtureCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureCollection.Contains(MbUnit.Core.Fixture)">
      <summary>Determines whether a specfic Fixture value is in this FixtureCollection.</summary>
      <param name="value">The Fixture value to locate in this FixtureCollection.</param>
      <returns>true if value is found in this FixtureCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this FixtureCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureCollection.Remove(MbUnit.Core.Fixture)">
      <summary>Removes the first occurrence of a specific Fixture from this FixtureCollection.</summary>
      <param name="value">The Fixture value to remove from this FixtureCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.FixtureCollection.Enumerator">
      <summary>Type-specific enumeration class, used by FixtureCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection">
      <summary>A collection of elements of type IFixtureFactory This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Add(MbUnit.Core.IFixtureFactory)">
      <summary>Adds an instance of type IFixtureFactory to the end of this FixtureFactoryCollection.</summary>
      <param name="value">The IFixtureFactory to be added to the end of this FixtureFactoryCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Contains(MbUnit.Core.IFixtureFactory)">
      <summary>Determines whether a specfic IFixtureFactory value is in this FixtureFactoryCollection.</summary>
      <param name="value">The IFixtureFactory value to locate in this FixtureFactoryCollection.</param>
      <returns>true if value is found in this FixtureFactoryCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this FixtureFactoryCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Remove(MbUnit.Core.IFixtureFactory)">
      <summary>Removes the first occurrence of a specific IFixtureFactory from this FixtureFactoryCollection.</summary>
      <param name="value">The IFixtureFactory value to remove from this FixtureFactoryCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection.Enumerator">
      <summary>Type-specific enumeration class, used by FixtureFactoryCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunCollection">
      <summary>A collection of elements of type IRun This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunCollection.Item(System.Int32)">
      <summary>Gets or sets the IRun at the given index in this RunCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunCollection.Add(MbUnit.Core.Runs.IRun)">
      <summary>Adds an instance of type IRun to the end of this RunCollection.</summary>
      <param name="value">The IRun to be added to the end of this RunCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunCollection.Contains(MbUnit.Core.Runs.IRun)">
      <summary>Determines whether a specfic IRun value is in this RunCollection.</summary>
      <param name="value">The IRun value to locate in this RunCollection.</param>
      <returns>true if value is found in this RunCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this RunCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunCollection.Remove(MbUnit.Core.Runs.IRun)">
      <summary>Removes the first occurrence of a specific IRun from this RunCollection.</summary>
      <param name="value">The IRun value to remove from this RunCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunCollection.Enumerator">
      <summary>Type-specific enumeration class, used by RunCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunInvokerCollection">
      <summary>A collection of elements of type IRunInvoker This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunInvokerCollection.Item(System.Int32)">
      <summary>Gets or sets the IRunInvoker at the given index in this IRunInvokerCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Add(MbUnit.Core.Invokers.IRunInvoker)">
      <summary>Adds an instance of type IRunInvoker to the end of this IRunInvokerCollection.</summary>
      <param name="value">The IRunInvoker to be added to the end of this IRunInvokerCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Contains(MbUnit.Core.Invokers.IRunInvoker)">
      <summary>Determines whether a specfic IRunInvoker value is in this IRunInvokerCollection.</summary>
      <param name="value">The IRunInvoker value to locate in this IRunInvokerCollection.</param>
      <returns>true if value is found in this IRunInvokerCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this IRunInvokerCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Remove(MbUnit.Core.Invokers.IRunInvoker)">
      <summary>Removes the first occurrence of a specific IRunInvoker from this IRunInvokerCollection.</summary>
      <param name="value">The IRunInvoker value to remove from this IRunInvokerCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunInvokerCollection.Enumerator">
      <summary>Type-specific enumeration class, used by IRunInvokerCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection">
      <summary>A collection of elements of type RunInvokerVertex This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollection.Item(System.Int32)">
      <summary>Gets or sets the RunInvokerVertex at the given index in this RunInvokerVertexCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Add(MbUnit.Core.Invokers.RunInvokerVertex)">
      <summary>Adds an instance of type RunInvokerVertex to the end of this RunInvokerVertexCollection.</summary>
      <param name="value">The RunInvokerVertex to be added to the end of this RunInvokerVertexCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Contains(MbUnit.Core.Invokers.RunInvokerVertex)">
      <summary>Determines whether a specfic RunInvokerVertex value is in this RunInvokerVertexCollection.</summary>
      <param name="value">The RunInvokerVertex value to locate in this RunInvokerVertexCollection.</param>
      <returns>true if value is found in this RunInvokerVertexCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Remove(MbUnit.Core.Invokers.RunInvokerVertex)">
      <summary>Removes the first occurrence of a specific RunInvokerVertex from this RunInvokerVertexCollection.</summary>
      <param name="value">The RunInvokerVertex value to remove from this RunInvokerVertexCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection.Enumerator">
      <summary>Type-specific enumeration class, used by RunInvokerVertexCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection">
      <summary>A collection of elements of type RunInvokerVertexCollection This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Item(System.Int32)">
      <summary>Gets or sets the RunInvokerVertexCollection at the given index in this RunInvokerVertexCollectionCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Add(MbUnit.Core.Collections.RunInvokerVertexCollection)">
      <summary>Adds an instance of type RunInvokerVertexCollection to the end of this RunInvokerVertexCollectionCollection.</summary>
      <param name="value">The RunInvokerVertexCollection to be added to the end of this RunInvokerVertexCollectionCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Contains(MbUnit.Core.Collections.RunInvokerVertexCollection)">
      <summary>Determines whether a specfic RunInvokerVertexCollection value is in this RunInvokerVertexCollectionCollection.</summary>
      <param name="value">The RunInvokerVertexCollection value to locate in this RunInvokerVertexCollectionCollection.</param>
      <returns>true if value is found in this RunInvokerVertexCollectionCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollectionCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Remove(MbUnit.Core.Collections.RunInvokerVertexCollection)">
      <summary>Removes the first occurrence of a specific RunInvokerVertexCollection from this RunInvokerVertexCollectionCollection.</summary>
      <param name="value">The RunInvokerVertexCollection value to remove from this RunInvokerVertexCollectionCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Enumerator">
      <summary>Type-specific enumeration class, used by RunInvokerVertexCollectionCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunPipeCollection">
      <summary>A collection of elements of type RunPipe This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunPipeCollection.Item(System.Int32)">
      <summary>Gets or sets the RunPipe at the given index in this RunPipeCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeCollection.Add(MbUnit.Core.RunPipe)">
      <summary>Adds an instance of type RunPipe to the end of this RunPipeCollection.</summary>
      <param name="value">The RunPipe to be added to the end of this RunPipeCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeCollection.Contains(MbUnit.Core.RunPipe)">
      <summary>Determines whether a specfic RunPipe value is in this RunPipeCollection.</summary>
      <param name="value">The RunPipe value to locate in this RunPipeCollection.</param>
      <returns>true if value is found in this RunPipeCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this RunPipeCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeCollection.Remove(MbUnit.Core.RunPipe)">
      <summary>Removes the first occurrence of a specific RunPipe from this RunPipeCollection.</summary>
      <param name="value">The RunPipe value to remove from this RunPipeCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunPipeCollection.Enumerator">
      <summary>Type-specific enumeration class, used by RunPipeCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection">
      <summary>A collection of elements of type IRunPipeListener This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Add(MbUnit.Core.IRunPipeListener)">
      <summary>Adds an instance of type IRunPipeListener to the end of this RunPipeListenerCollection.</summary>
      <param name="value">The IRunPipeListener to be added to the end of this RunPipeListenerCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Contains(MbUnit.Core.IRunPipeListener)">
      <summary>Determines whether a specfic IRunPipeListener value is in this RunPipeListenerCollection.</summary>
      <param name="value">The IRunPipeListener value to locate in this RunPipeListenerCollection.</param>
      <returns>true if value is found in this RunPipeListenerCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this RunPipeListenerCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Remove(MbUnit.Core.IRunPipeListener)">
      <summary>Removes the first occurrence of a specific IRunPipeListener from this RunPipeListenerCollection.</summary>
      <param name="value">The IRunPipeListener value to remove from this RunPipeListenerCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection.Enumerator">
      <summary>Type-specific enumeration class, used by RunPipeListenerCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection">
      <summary>A collection of elements of type RunPipeStarter This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Add(MbUnit.Core.RunPipeStarter)">
      <summary>Adds an instance of type RunPipeStarter to the end of this RunPipeStarterCollection.</summary>
      <param name="value">The RunPipeStarter to be added to the end of this RunPipeStarterCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Contains(MbUnit.Core.RunPipeStarter)">
      <summary>Determines whether a specfic RunPipeStarter value is in this RunPipeStarterCollection.</summary>
      <param name="value">The RunPipeStarter value to locate in this RunPipeStarterCollection.</param>
      <returns>true if value is found in this RunPipeStarterCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this RunPipeStarterCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Remove(MbUnit.Core.RunPipeStarter)">
      <summary>Removes the first occurrence of a specific RunPipeStarter from this RunPipeStarterCollection.</summary>
      <param name="value">The RunPipeStarter value to remove from this RunPipeStarterCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection.Enumerator">
      <summary>Type-specific enumeration class, used by RunPipeStarterCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.RunVertexDictionary">
      <summary>A dictionary with keys of type IRun and values of type RunVertex This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Item(MbUnit.Core.Runs.IRun)">
      <summary>Gets or sets the RunVertex associated with the given IRun</summary>
      <param name="key">The IRun whose value to get or set.</param>
    </member>
    <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Keys">
      <summary>Gets a collection containing the keys in this RunVertexDictionary.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Values">
      <summary>Gets a collection containing the values in this RunVertexDictionary.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Add(MbUnit.Core.Runs.IRun,MbUnit.Core.Runs.RunVertex)">
      <summary>Adds an element with the specified key and value to this RunVertexDictionary.</summary>
      <param name="key">The IRun key of the element to add.</param>
      <param name="value">The RunVertex value of the element to add.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Contains(MbUnit.Core.Runs.IRun)">
      <summary>Determines whether this RunVertexDictionary contains a specific key.</summary>
      <param name="key">The IRun key to locate in this RunVertexDictionary.</param>
      <returns>true if this RunVertexDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.ContainsValue(MbUnit.Core.Runs.RunVertex)">
      <summary>Determines whether this RunVertexDictionary contains a specific value.</summary>
      <param name="value">The RunVertex value to locate in this RunVertexDictionary.</param>
      <returns>true if this RunVertexDictionary contains an element with the specified value; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Remove(MbUnit.Core.Runs.IRun)">
      <summary>Removes the element with the specified key from this RunVertexDictionary.</summary>
      <param name="key">The IRun key of the element to remove.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.ThreadCollection">
      <summary>A collection of elements of type Thread This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.ThreadCollection.Item(System.Int32)">
      <summary>Gets or sets the Thread at the given index in this ThreadCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.ThreadCollection.Add(System.Threading.Thread)">
      <summary>Adds an instance of type Thread to the end of this ThreadCollection.</summary>
      <param name="value">The Thread to be added to the end of this ThreadCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.ThreadCollection.Contains(System.Threading.Thread)">
      <summary>Determines whether a specfic Thread value is in this ThreadCollection.</summary>
      <param name="value">The Thread value to locate in this ThreadCollection.</param>
      <returns>true if value is found in this ThreadCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.ThreadCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this ThreadCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.ThreadCollection.Remove(System.Threading.Thread)">
      <summary>Removes the first occurrence of a specific Thread from this ThreadCollection.</summary>
      <param name="value">The Thread value to remove from this ThreadCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.ThreadCollection.Enumerator">
      <summary>Type-specific enumeration class, used by ThreadCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Collections.TypeCollection">
      <summary>A collection of elements of type Type This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Collections.TypeCollection.Item(System.Int32)">
      <summary>Gets or sets the Type at the given index in this TypeCollection.</summary>
    </member>
    <member name="M:MbUnit.Core.Collections.TypeCollection.Add(System.Type)">
      <summary>Adds an instance of type Type to the end of this TypeCollection.</summary>
      <param name="value">The Type to be added to the end of this TypeCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Collections.TypeCollection.Contains(System.Type)">
      <summary>Determines whether a specfic Type value is in this TypeCollection.</summary>
      <param name="value">The Type value to locate in this TypeCollection.</param>
      <returns>true if value is found in this TypeCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.TypeCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this TypeCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Collections.TypeCollection.Remove(System.Type)">
      <summary>Removes the first occurrence of a specific Type from this TypeCollection.</summary>
      <param name="value">The Type value to remove from this TypeCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Collections.TypeCollection.Enumerator">
      <summary>Type-specific enumeration class, used by TypeCollection.GetEnumerator. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute">
      <summary>Allows control of command line parsing. Attach this attribute to instance fields of types used as the destination of command line argument parsing.</summary>
    </member>
    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultLongName">
      <summary>Returns true if the argument did not have an explicit long name specified.</summary>
    </member>
    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultShortName">
      <summary>Returns true if the argument did not have an explicit short name specified.</summary>
    </member>
    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.LongName">
      <summary>The long name of the argument.</summary>
    </member>
    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.ShortName">
      <summary>The short name of the argument.</summary>
    </member>
    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.Type">
      <summary>The error checking to be done on the argument.</summary>
    </member>
    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser">
      <summary>Parser for command line arguments.</summary>
    </member>
    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Usage">
      <summary>A user friendly usage string describing the command line argument syntax.</summary>
    </member>
    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Parse(System.String[],System.Object)">
      <summary>Parses an argument list.</summary>
      <param name="args">The arguments to parse.</param>
      <param name="destination">The destination of the parsed arguments.</param>
      <returns>true if no parse errors were encountered.</returns>
    </member>
    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineUtility">
      <summary>Useful Stuff. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineUtility.NewLine">
      <summary>The System Defined new line string. This field is constant and read-only.</summary>
    </member>
    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.CommandLineArgumentsUsage(System.Type)">
      <summary>Returns a Usage string for command line argument parsing. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
      <param name="argumentType">The type of the arguments to display usage for.</param>
      <returns>Printable string containing a user friendly description of command line arguments.</returns>
    </member>
    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object)">
      <summary>Parses Command Line Arguments. Errors are output on Console.Error. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
      <param name="arguments">The actual arguments.</param>
      <param name="destination">The resulting parsed arguments.</param>
    </member>
    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object,MbUnit.Core.Cons.CommandLine.ErrorReporter)">
      <summary>Parses Command Line Arguments. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
      <param name="arguments">The actual arguments.</param>
      <param name="destination">The resulting parsed arguments.</param>
      <param name="reporter">The destination for parse errors.</param>
    </member>
    <member name="T:MbUnit.Core.Cons.CommandLine.DefaultCommandLineArgumentAttribute">
      <summary>Indicates that this argument is the default argument. '/' or '-' prefix only the argument value is specified.</summary>
    </member>
    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType">
      <summary>Used to control parsing of command line arguments.</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Required">
      <summary>Indicates that this field is required. An error will be displayed if it is not present when parsing arguments.</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Unique">
      <summary>Only valid in conjunction with Multiple. Duplicate values will result in an error.</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Multiple">
      <summary>Inidicates that the argument may be specified more than once. Only valid if the argument is a collection</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.AtMostOnce">
      <summary>The default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once.</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.LastOccurenceWins">
      <summary>For non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list.</summary>
    </member>
    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.MultipleUnique">
      <summary>The default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported.</summary>
    </member>
    <member name="T:MbUnit.Core.Cons.CommandLine.ErrorReporter">
      <summary>A delegate used in error reporting.</summary>
    </member>
    <member name="T:MbUnit.Core.Exceptions.AssertionException">
      <summary>Base class for MbUnit exceptions</summary>
    </member>
    <member name="T:MbUnit.Core.Exceptions.CompilationException">
      <summary>Exception thrown when not finding a vertex.</summary>
    </member>
    <member name="P:MbUnit.Core.Exceptions.CompilationException.Message">
      <summary>The exception message</summary>
    </member>
    <member name="T:MbUnit.Core.Exceptions.MissingResourceException">
      <summary>Exception thrown when a specified resource cannot be found.</summary>
    </member>
    <member name="T:MbUnit.Core.Exceptions.MultipleCultureException">
      <summary>Exception throwed when not finding a vertex.</summary>
    </member>
    <member name="T:MbUnit.Core.Filters.CategoryFixtureFilter">
      <summary>Filter class for FixtureCategory attribute. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.Filters.CategoryFixtureFilter.Filter(System.Type)">
      <summary>Tests if a fixture has a category attribute matching a pattern.</summary>
      <param name="fixture">The fixture to test.</param>
      <returns>true if the fixture has a matching category attribute, otherwise false.</returns>
    </member>
    <member name="T:MbUnit.Core.Framework.DecoratorPatternAttribute">
      <summary>This is the base class for attributes that can decorate tests. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
    </member>
    <member name="T:MbUnit.Core.Framework.FixtureDecoratorPatternAttribute">
      <summary>This is the base class for attributes that can decorate fixtures. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
    </member>
    <member name="T:MbUnit.Core.Framework.NonTestPatternAttribute">
      <summary>Base class for attributes that tag method that are usualy used to set up, provide data, tear down tests, etc...</summary>
    </member>
    <member name="T:MbUnit.Core.Framework.PatternAttribute">
      <summary>Base class for all attributes that are part of the MbUnit framework.</summary>
    </member>
    <member name="T:MbUnit.Core.Framework.TestFixturePatternAttribute">
      <summary>Base class for attributes that define test fixtures. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
    </member>
    <member name="P:MbUnit.Core.Framework.TestFixturePatternAttribute.TimeOut">
      <summary>Gets or sets the fixture timeout in minutes.</summary>
      <value>Time out minutes.</value>
    </member>
    <member name="T:MbUnit.Core.Framework.TestPatternAttribute">
      <summary>Base class for attributes that define unit test.</summary>
    </member>
    <member name="T:MbUnit.Core.Invokers.DecoratorRunInvoker">
      <summary>Decorator invorkers are used to modify the way a fixute method is executed. Popular examples of such is the <see cref="T:MbUnit.Core.Invokers.ExpectedExceptionRunInvoker" /> or the <see cref="T:MbUnit.Core.Invokers.RepeatRunInvoker" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
    </member>
    <member name="T:MbUnit.Core.Invokers.ExplicitRunInvoker">
      <summary>Invoker for tests decorated with the ExplicitAttribute.</summary>
    </member>
    <member name="M:MbUnit.Core.Invokers.ExplicitRunInvoker.Execute(System.Object,System.Collections.IList)">
      <summary>Execute method for the invoker.</summary>
      <param name="o" />
      <param name="args" />
    </member>
    <member name="T:MbUnit.Core.Invokers.InvokerEventArgs">
      <summary>TODO - Add class summary</summary>
    </member>
    <member name="T:MbUnit.Core.Invokers.MethodRunInvoker">
      <summary>An invoker that wraps up the call to a fixture method.</summary>
    </member>
    <member name="T:MbUnit.Core.Invokers.RunInvokerVertex">
      <summary>A <see cref="T:QuickGraph.Concepts.IVertex" /> implementation, containing a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</summary>
    </member>
    <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.HasInvoker">
      <summary>Gets a value indicating if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached to it.</summary>
      <value>true if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached.</value>
    </member>
    <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.Invoker">
      <summary>Gets the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> attached to the vertex.</summary>
      <value>The <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached to the vertex</value>
      <exception cref="T:System.InvalidOperationException"> the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> is a null reference </exception>
    </member>
    <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ReadGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
      <summary>Not implemented.</summary>
      <exception cref="T:System.InvalidOperationException">always thrown</exception>
    </member>
    <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ToString">
      <summary>Converts the object to string</summary>
      <returns>String representation of the vertex</returns>
    </member>
    <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.WriteGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
      <summary>Serializes informations to the <see cref="T:QuickGraph.Concepts.Serialization.IGraphSerializationInfo" /> instance.</summary>
      <param name="info">serialization device</param>
      <exception cref="T:System.ArgumentNullException">info is a null reference</exception>
    </member>
    <member name="T:MbUnit.Core.Invokers.RunInvokerVertexProvider">
      <summary>Internal use This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Invokers.IRunInvoker">
      <summary>This interface defines a method invoker object.</summary>
    </member>
    <member name="P:MbUnit.Core.Invokers.IRunInvoker.Generator">
      <summary>Gets a reference to the <see cref="T:MbUnit.Core.Runs.IRun" /> instance that generated the invoker.</summary>
      <value>Reference to the <see cref="T:MbUnit.Core.Runs.IRun" /> instance that generated the invoker.</value>
    </member>
    <member name="P:MbUnit.Core.Invokers.IRunInvoker.Name">
      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /></summary>
      <value>A descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</value>
    </member>
    <member name="M:MbUnit.Core.Invokers.IRunInvoker.ContainsMemberInfo(System.Reflection.MemberInfo)">
      <summary>Gets a value indicating if the instance is related to <paramref name="memberInfo" /></summary>
      <param name="memberInfo">A <see cref="T:System.Reflection.MethodInfo" /> instance</param>
      <returns>true if the instance is related to the member info; otherwize false</returns>
    </member>
    <member name="M:MbUnit.Core.Invokers.IRunInvoker.Execute(System.Object,System.Collections.IList)">
      <summary>Executes the wrapped method</summary>
      <param name="o">Test fixture instance</param>
      <param name="args">Method arguments</param>
      <returns>Return value of the invoked method. If the method returns void, null is returned.</returns>
    </member>
    <member name="T:MbUnit.Core.Monitoring.MemoryStatus">
      <summary>Describes the status of the memory. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Monitoring.TimeMonitor">
      <summary>A high performance timer This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Duration">
      <summary>Gets the timed duration value in seconds</summary>
      <value>Timer duration</value>
    </member>
    <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Now">
      <summary>Gets the current duration value without stopping the timer</summary>
      <value>Current duration value</value>
    </member>
    <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Start">
      <summary>Starts the timer</summary>
    </member>
    <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Stop">
      <summary>Stops the timer</summary>
    </member>
    <member name="T:MbUnit.Core.Remoting.AssemblyWatcher">
      <summary>AssemblyWatcher keeps track of one or more assemblies to see if they have changed. It incorporates a delayed notification and uses a standard event to notify any interested parties about the change. The path to the assembly is provided as an argument to the event handler so that one routine can be used to handle events from multiple watchers.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.CacheFolderHelper.DeleteDir(System.IO.DirectoryInfo)">
      <summary>Helper method to delete the cache dir. This method deals with a bug that occurs when pdb files are marked read-only.</summary>
      <param name="cacheDir" />
    </member>
    <member name="M:MbUnit.Core.Remoting.ConfigUtils.MergeDependentAssembly(System.Xml.XmlDocument,System.Reflection.AssemblyName,System.String,System.String)">
      <summary>Merge a 'dependentAssembly' directive into a given config document. If any entries exist for the same assembly they will be deleted before the new entry is merged.</summary>
      <param name="doc">The config document to merge</param>
      <param name="assemblyName">The Assembly that should be used</param>
      <param name="versionRange">The range of compatable versions (eg. "1.0.0.0-3.0.0.0")</param>
      <param name="codeBase">The codebase to use.</param>
    </member>
    <member name="T:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary">
      <summary>A dictionary with keys of type Guid and values of type TestTreeNode</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Item(System.Guid)">
      <summary>Gets or sets the TestTreeNode associated with the given Guid</summary>
      <param name="key">The Guid whose value to get or set.</param>
    </member>
    <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Keys">
      <summary>Gets a collection containing the keys in this GuidTestTreeNodeDictionary.</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Values">
      <summary>Gets a collection containing the values in this GuidTestTreeNodeDictionary.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Add(MbUnit.Core.Remoting.TestTreeNode)">
      <summary>Adds an element with the specified key and value to this GuidTestTreeNodeDictionary.</summary>
      <param name="value">The TestTreeNode value of the element to add.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Contains(System.Guid)">
      <summary>Determines whether this GuidTestTreeNodeDictionary contains a specific key.</summary>
      <param name="key">The Guid key to locate in this GuidTestTreeNodeDictionary.</param>
      <returns>true if this GuidTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.ContainsKey(System.Guid)">
      <summary>Determines whether this GuidTestTreeNodeDictionary contains a specific key.</summary>
      <param name="key">The Guid key to locate in this GuidTestTreeNodeDictionary.</param>
      <returns>true if this GuidTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Remove(System.Guid)">
      <summary>Removes the element with the specified key from this GuidTestTreeNodeDictionary.</summary>
      <param name="key">The Guid key of the element to remove.</param>
    </member>
    <member name="T:MbUnit.Core.Remoting.GuidTreeNodeDictionary">
      <summary>A dictionary with keys of type Guid and values of type TreeNode</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Item(System.Guid)">
      <summary>Gets or sets the TreeNode associated with the given Guid</summary>
      <param name="key">The Guid whose value to get or set.</param>
    </member>
    <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Keys">
      <summary>Gets a collection containing the keys in this GuidTreeNodeDictionary.</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Values">
      <summary>Gets a collection containing the values in this GuidTreeNodeDictionary.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Add(System.Windows.Forms.TreeNode)">
      <summary>Adds an element with the specified key and value to this GuidTreeNodeDictionary.</summary>
      <param name="value">The TreeNode value of the element to add.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Contains(System.Guid)">
      <summary>Determines whether this GuidTreeNodeDictionary contains a specific key.</summary>
      <param name="key">The Guid key to locate in this GuidTreeNodeDictionary.</param>
      <returns>true if this GuidTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.ContainsKey(System.Guid)">
      <summary>Determines whether this GuidTreeNodeDictionary contains a specific key.</summary>
      <param name="key">The Guid key to locate in this GuidTreeNodeDictionary.</param>
      <returns>true if this GuidTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Remove(System.Guid)">
      <summary>Removes the element with the specified key from this GuidTreeNodeDictionary.</summary>
      <param name="key">The Guid key of the element to remove.</param>
    </member>
    <member name="T:MbUnit.Core.Remoting.LongLivingMarshalByRefObject">
      <summary>Long living object. (Extracted from NUnit source)</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Clear">
      <summary>Clears the internal representation of the tree</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
      <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.RemoteTestEngine.AddConsoleListener">
      <summary>Supports verbose output option of console app. Added as part of fix to issue MBUNIT-28.</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.SeparateTestDomain.ShadowCopyFiles">
      <summary>Gets or sets a value indicating the assemblies have to be shadow copied</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.ConfigureCachePath(System.AppDomainSetup)">
      <summary>Set the location for caching and delete any old cache info</summary>
      <param name="setup">Our domain</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.MakeDomain(System.String,System.String,System.String,System.String)">
      <summary>Creates an AppDomain for the Test Assembly</summary>
      <param name="domainName" />
      <param name="appBase" />
      <param name="configFile" />
      <param name="binPath" />
    </member>
    <member name="T:MbUnit.Core.Remoting.StringTestTreeNodeDictionary">
      <summary>A dictionary with keys of type String and values of type TestTreeNode</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Item(System.String)">
      <summary>Gets or sets the TestTreeNode associated with the given String</summary>
      <param name="key">The String whose value to get or set.</param>
    </member>
    <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Keys">
      <summary>Gets a collection containing the keys in this StringTestTreeNodeDictionary.</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Values">
      <summary>Gets a collection containing the values in this StringTestTreeNodeDictionary.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Add(System.String,MbUnit.Core.Remoting.TestTreeNode)">
      <summary>Adds an element with the specified key and value to this StringTestTreeNodeDictionary.</summary>
      <param name="key">The String key of the element to add.</param>
      <param name="value">The TestTreeNode value of the element to add.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Contains(System.String)">
      <summary>Determines whether this StringTestTreeNodeDictionary contains a specific key.</summary>
      <param name="key">The String key to locate in this StringTestTreeNodeDictionary.</param>
      <returns>true if this StringTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Remove(System.String)">
      <summary>Removes the element with the specified key from this StringTestTreeNodeDictionary.</summary>
      <param name="key">The String key of the element to remove.</param>
    </member>
    <member name="P:MbUnit.Core.Remoting.TestDomain.TestFilePath">
      <summary>Gets the testFilePath</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.TestDomainBase.Identifier">
      <summary>Gets a <see cref="T:System.Guid" /> identifying the <see cref="T:MbUnit.Core.Remoting.TestDomain" /></summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestDomainBase.Load">
      <summary>Loads domain and test assembly</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnLoaded">
      <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.Loaded" /> event.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnReLoaded">
      <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.ReLoaded" /> event.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnUnLoaded">
      <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.UnLoaded" /> event.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestDomainBase.Reload">
      <summary>Unload and reload test domain</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestDomainBase.Unload">
      <summary>Unload domain</summary>
    </member>
    <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection">
      <summary>A collection of elements of type TestTreeNode</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Add(MbUnit.Core.Remoting.TestTreeNode)">
      <summary>Adds an instance of type TestTreeNode to the end of this TestTreeNodeCollection.</summary>
      <param name="value">The TestTreeNode to be added to the end of this TestTreeNodeCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Contains(MbUnit.Core.Remoting.TestTreeNode)">
      <summary>Determines whether a specfic TestTreeNode value is in this TestTreeNodeCollection.</summary>
      <param name="value">The TestTreeNode value to locate in this TestTreeNodeCollection.</param>
      <returns>true if value is found in this TestTreeNodeCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this TestTreeNodeCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Remove(MbUnit.Core.Remoting.TestTreeNode)">
      <summary>Removes the first occurrence of a specific TestTreeNode from this TestTreeNodeCollection.</summary>
      <param name="value">The TestTreeNode value to remove from this TestTreeNodeCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection.Enumerator">
      <summary>Type-specific enumeration class, used by TestTreeNodeCollection.GetEnumerator.</summary>
    </member>
    <member name="T:MbUnit.Core.Remoting.TestTreePopulator">
      <summary>Defines a class that can populate a tree of tests This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Clear">
      <summary>Clears the internal representation of the tree</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
      <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
      <param name="nodes">Node dictionary.</param>
      <param name="root">The root node.</param>
      <param name="pipes">Collection of <see cref="T:MbUnit.Core.RunPipeStarter" />s</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="root" /> or <paramref name="pipes" /> is a null reference (Nothing in Visual Basic) </exception>
    </member>
    <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection">
      <summary>A collection of elements of type TestTreePopulator</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Add(MbUnit.Core.Remoting.ITestTreePopulator)">
      <summary>Adds an instance of type TestTreePopulator to the end of this TestTreePopulatorCollection.</summary>
      <param name="value">The TestTreePopulator to be added to the end of this TestTreePopulatorCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.ITestTreePopulator[])">
      <summary>Adds the elements of an array to the end of this TestTreePopulatorCollection.</summary>
      <param name="items">The array whose elements are to be added to the end of this TestTreePopulatorCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.TestTreePopulatorCollection)">
      <summary>Adds the elements of another TestTreePopulatorCollection to the end of this TestTreePopulatorCollection.</summary>
      <param name="items">The TestTreePopulatorCollection whose elements are to be added to the end of this TestTreePopulatorCollection.</param>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Contains(MbUnit.Core.Remoting.ITestTreePopulator)">
      <summary>Determines whether a specfic TestTreePopulator value is in this TestTreePopulatorCollection.</summary>
      <param name="value">The TestTreePopulator value to locate in this TestTreePopulatorCollection.</param>
      <returns>true if value is found in this TestTreePopulatorCollection; false otherwise.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through the elements of this TestTreePopulatorCollection.</summary>
      <returns>An object that implements System.Collections.IEnumerator.</returns>
    </member>
    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Remove(MbUnit.Core.Remoting.ITestTreePopulator)">
      <summary>Removes the first occurrence of a specific TestTreePopulator from this TestTreePopulatorCollection.</summary>
      <param name="value">The TestTreePopulator value to remove from this TestTreePopulatorCollection.</param>
    </member>
    <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection.Enumerator">
      <summary>Type-specific enumeration class, used by TestTreePopulatorCollection.GetEnumerator.</summary>
    </member>
    <member name="P:MbUnit.Core.Remoting.TreeTestDomainCollection.Watcher">
      <summary>Gets the assembly watcher</summary>
    </member>
    <member name="T:MbUnit.Core.Remoting.ITestTreePopulator">
      <summary>Defines a class that can populate a tree of tests</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Clear">
      <summary>Clears the internal representation of the tree</summary>
    </member>
    <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
      <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
      <param name="nodes">A node dictionary.</param>
      <param name="root">The root node.</param>
      <param name="pipes">A collection of pipes.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="root" /> or <paramref name="pipes" /> is a null reference (Nothing in Visual Basic) </exception>
    </member>
    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.IO.TextWriter)">
      <summary>Render the report result to the specified writer</summary>
      <param name="result">Result from the test</param>
      <param name="writer">Writer to write result output to</param>
    </member>
    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String)">
      <summary>Render the report result to a file</summary>
      <param name="result">Result from the test</param>
      <param name="fileName">Report output file name</param>
    </member>
    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String,System.String)">
      <summary>Render the report result to a file</summary>
      <param name="result">Result from the test</param>
      <param name="outputPath">Output directory</param>
      <param name="nameFormat">Default format name</param>
      <param name="extension">Extension of the file</param>
      <returns>File name of the report</returns>
    </member>
    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String)">
      <summary>Render the report result to a file</summary>
      <param name="result">Result from the test</param>
      <param name="outputPath">Output directory</param>
      <param name="nameFormat">Default format name. If null, the default name will be used</param>
      <returns>File name of the report</returns>
    </member>
    <member name="T:MbUnit.Core.Reports.TextReport">
      <summary>Reports MbUnit result in text format. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Reports.XmlReport">
      <summary>XML Report. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Core.Runs.CustomRun">
      <summary>TODO - Add class summary</summary>
    </member>
    <member name="P:MbUnit.Core.Runs.IndexerProviderRun.IsTest">
      <summary>Gets a value indicating the run is considered as a test or not.</summary>
      <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
    </member>
    <member name="P:MbUnit.Core.Runs.IndexerProviderRun.Name">
      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
      <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
    </member>
    <member name="M:MbUnit.Core.Runs.IndexerProviderRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
      <param name="tree">Invoker tree</param>
      <param name="parent">parent vertex</param>
      <param name="t">class type that is marked by the run</param>
    </member>
    <member name="T:MbUnit.Core.Runs.ParallelRun">
      <summary>TODO - Add class summary This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Core.Runs.Run.IsTest">
      <summary>Gets a value indicating the run is considered as a test or not.</summary>
      <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
    </member>
    <member name="P:MbUnit.Core.Runs.Run.Name">
      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
      <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
    </member>
    <member name="M:MbUnit.Core.Runs.Run.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
      <param name="tree">Invoker tree</param>
      <param name="parent">parent vertex</param>
      <param name="t">class type that is marked by the run</param>
    </member>
    <member name="T:MbUnit.Core.Runs.SequenceRun">
      <summary>A sequence of IRuns This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.Runs.SequenceRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
      <param name="tree">Invoker tree.</param>
      <param name="parent">Parent vertex.</param>
      <param name="t">The <see cref="T:System.Type" /> to search for.</param>
    </member>
    <member name="T:MbUnit.Core.Runs.TestFixtureRun">
      <summary>Test fixture run with support for decoration by <see cref="T:MbUnit.Framework.TestFixtureExtensionAttribute" />. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Core.Runs.TestFixtureRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
      <summary>Builds the test run invoker tree.</summary>
      <param name="tree" />
      <param name="parent" />
      <param name="t" />
    </member>
    <member name="T:MbUnit.Core.Runs.IRun">
      <summary>This interface defines a type of test/non test run that is used to define the <see cref="T:MbUnit.Core.Framework.TestFixturePatternAttribute" /> logic.</summary>
    </member>
    <member name="P:MbUnit.Core.Runs.IRun.IsTest">
      <summary>Gets a value indicating the run is considered as a test or not.</summary>
      <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
    </member>
    <member name="P:MbUnit.Core.Runs.IRun.Name">
      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
      <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
    </member>
    <member name="M:MbUnit.Core.Runs.IRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
      <param name="tree">Invoker tree</param>
      <param name="parent">parent vertex</param>
      <param name="t">class type that is marked by the run</param>
    </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.Assert">
      <summary>Class containing generic assert methods for the comparison of values and object references, the existence of objects within a collection type and basic object properties - for example, whether or not it is assignable to. Also contains a set of Fail asserts which will automatically fail a test straight away. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="P:MbUnit.Framework.Assert.AssertCount">
      <summary>Number of Asserts made so far this test run</summary>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
      <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal given a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
      <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with no explanation for the failure. Use <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)" /> if you want to provide an explanation.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
      <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />. Exception message is generated through <paramref name="format" /> and <paramref name="args" />.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
      <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
      <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />. Exception message is generated through <paramref name="format" /> and <paramref name="args" />.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
      <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> 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 <paramref name="expected" /> and <paramref name="actual" /></param>
      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
      <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">
        <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
      <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
      <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
      <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"> Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
      <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a given <paramref name="message" />.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
      <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
      <param name="expected">The expected value</param>
      <param name="actual">The actual value</param>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">
        <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
      <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The <see cref="T:System.Object" /> to compare</param>
      <param name="actual">The <see cref="T:System.Object" /> being compared</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></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.AreNotEqual(System.Object,System.Object,System.String)">
      <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="expected">The <see cref="T:System.Object" /> to compare</param>
      <param name="actual">The <see cref="T:System.Object" /> being compared</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are both null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
      <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
      <param name="expected">The <see cref="T:System.Object" /> to compare</param>
      <param name="actual">The <see cref="T:System.Object" /> being compared</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are both null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The integer to compare</param>
      <param name="actual">The integer being compared</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a given <paramref name="message" />.</summary>
      <param name="expected">The integer to compare</param>
      <param name="actual">The integer being compared</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
      <param name="expected">The integer to compare</param>
      <param name="actual">The integer being compared</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
      <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
      <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
      <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
      <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
      <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
      <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
      <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
      <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
      <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
      <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
      <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
      <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
      <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
      <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
      <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The <see cref="T:System.Single" /> to compare</param>
      <param name="actual">The <see cref="T:System.Single" /> being compared</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
      <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="expected">The <see cref="T:System.Single" /> to compare</param>
      <param name="actual">The <see cref="T:System.Single" /> being compared</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
      <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
      <param name="expected">The <see cref="T:System.Single" /> to compare</param>
      <param name="actual">The <see cref="T:System.Single" /> being compared</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
      <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="expected">The <see cref="T:System.Double" /> to compare</param>
      <param name="actual">The <see cref="T:System.Double" /> being compared</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
      <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="expected">The <see cref="T:System.Double" /> to compare</param>
      <param name="actual">The <see cref="T:System.Double" /> being compared</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
      <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
      <param name="expected">The <see cref="T:System.Double" /> to compare</param>
      <param name="actual">The <see cref="T:System.Double" /> being compared</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
    </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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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 given two objects, <paramref name="expected" /> and <paramref name="actual" />, the property described by the <see cref="T:System.Reflection.PropertyInfo" /> object <paramref name="pi" /> is present in both objects, is not null, and that the value of the property in both objects is equal.</summary>
      <param name="pi">The <see cref="T:System.Reflection.PropertyInfo" /> object indicating the property to be tested</param>
      <param name="expected">The object containing the expected value of the property</param>
      <param name="actual">The object containing the actual value of the property</param>
      <param name="indices">The index of the value in the property if it is an indexed property</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">One or both of <paramref name="expected" /> and <paramref name="actual" /> are null</exception>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">The property that <paramref name="pi" /> describes is not present in either <paramref name="expected" /> or <paramref name="actual" /></exception>
      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">The property values in <paramref name="expected" /> and <paramref name="actual" /> are not equal</exception>
    </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 <see cref="T:MbUnit.Core.Exceptions.AssertionException" />. This is done to make sure there is no mistake by calling this function. Use <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">AreEqual</see> instead or one of its overloads.</summary>
      <param name="a">The first <see cref="T:System.Object" /> to compare</param>
      <param name="b">The second <see cref="T:System.Object" /> to compare</param>
      <returns>True if the values are equal, false otherwise</returns>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Always thrown as this method should not be used.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
      <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.AssertionException" /> with.</param>
    </member>
    <member name="M:MbUnit.Framework.Assert.Fail">
      <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Ignore(System.String,System.Object[])">
      <summary>Makes the current test ignored using <see cref="M:System.String.Format(System.String,System.Object[])" /> like formatting</summary>
      <param name="format" />
      <param name="args" />
    </member>
    <member name="M:MbUnit.Framework.Assert.Ignore(System.String)">
      <summary>Makes the current test ignored using <see cref="M:System.String.Format(System.String,System.Object[])" /> like formatting</summary>
      <param name="message" />
    </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.IncrementAssertCount">
      <summary>Increments <see cref="P:MbUnit.Framework.Assert.AssertCount" /> by 1</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 <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
      <param name="condition">The evaluated condition</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
      <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the given <paramref name="message" />.</summary>
      <param name="condition">The evaluated condition</param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false. </exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)">
      <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with no explanatory message.</summary>
      <param name="condition">The evaluated condition</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false. </exception>
    </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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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,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.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.IsNotNull(System.Object,System.String,System.Object[])">
      <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" /></summary>
      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
      <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object)">
      <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
      <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" /></summary>
      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String)">
      <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
      <param name="message">The message to include if the test fails</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object)">
      <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
      <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])">String.Format</see>.</summary>
      <param name="condition">The evaluated condition</param>
      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not true. </exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
      <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the given <paramref name="message" />.</summary>
      <param name="condition">The evaluated condition</param>
      <param name="message">The message printed out upon failure</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not true.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)">
      <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with no explanatory message.</summary>
      <param name="condition">The evaluated condition</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="condition" /> is not true. </exception>
    </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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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.Core.Exceptions.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>Overrides the default <see cref="M:System.Object.ReferenceEquals(System.Object,System.Object)" /> method inherited from <see cref="T:System.Object" /> to throw an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> instead. This is to ensure that there is no mistake in calling this function as part of an Assert in your tests. Use <see cref="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">AreSame()</see> instead or one of its overloads.</summary>
      <param name="a">The first <see cref="T:System.Object" /> to compare</param>
      <param name="b">The second <see cref="T:System.Object" /> to compare</param>
      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Always thrown as this method should not be used.</exception>
    </member>
    <member name="M:MbUnit.Framework.Assert.ResetAssertCount">
      <summary>Resets <see cref="P:MbUnit.Framework.Assert.AssertCount" /> to 0</summary>
    </member>
    <member name="T:MbUnit.Framework.AuthorAttribute">
      <summary>This attribute identifies the author of a test fixture.</summary>
    </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.CollectionIndexingFixtureAttribute">
      <summary>Collection indexing pattern. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Framework.CollectionIndexingFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="T:MbUnit.Framework.CollectionOrderFixtureAttribute">
      <summary>Collection Order Pattern implementations. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.CombinatorialTestAttribute">
      <summary>Tag use to mark a mark a unit test method. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.CompilerAssert">
      <summary>Assertion helper for compilation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="P:MbUnit.Framework.CompilerAssert.CSharpCompiler">
      <summary>Gets the C# compiler from <see cref="T:Microsoft.CSharp.CSharpCodeProvider" />.</summary>
      <value>C# compiler.</value>
    </member>
    <member name="P:MbUnit.Framework.CompilerAssert.VBCompiler">
      <summary>Gets the VB.NET compiler from <see cref="T:Microsoft.VisualBasic.VBCodeProvider" />.</summary>
      <value>VB.NET compiler.</value>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">Compiler instance</param>
      <param name="source">Source code to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">Compiler instance</param>
      <param name="source">Source code to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">Compiler instance</param>
      <param name="references">Referenced assemblies</param>
      <param name="source">Source code to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="options">Compilation options</param>
      <param name="source">source to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String,System.Boolean)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="options">Compilation options</param>
      <param name="source">Source to compile</param>
      <param name="throwOnWarning">true if assertion should throw if any warning.</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="options">Compilation options</param>
      <param name="source">Stream containing the source to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream,System.Boolean)">
      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="options">Compilation options</param>
      <param name="source">Stream containing the source to compile</param>
      <param name="throwOnWarning">true if assertion should throw if any warning.</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="source">Source to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="source">Source to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="referencedAssemblies">Collection of referenced assemblies</param>
      <param name="source">Source to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="options">Compilation options</param>
      <param name="source">Source to compile</param>
    </member>
    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
      <param name="compiler">
        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
      <param name="options">Compilation options</param>
      <param name="source">Source to compile</param>
    </member>
    <member name="T:MbUnit.Framework.CompositeFixtureAttribute">
      <summary>Composite fixture pattern implementation. This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Framework.CompositeFixtureAttribute.FixtureType">
      <summary>Gets or sets the fixture type.</summary>
      <value>Fixture instance type.</value>
    </member>
    <member name="M:MbUnit.Framework.CompositeFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="T:MbUnit.Framework.ConditionalExceptionAttribute">
      <summary>Tags method that should throw an exception if a predicate is true.</summary>
    </member>
    <member name="T:MbUnit.Framework.ControlAssert">
      <summary>Assertion helper for the <see cref="T:System.Windows.Forms.Control" /> class. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.AllowDrop(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> 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.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> 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.ControlAssert.AreAccessibleDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> 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.ControlAssert.AreAccessibleDescriptionEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> 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.ControlAssert.AreAccessibleNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName" /> 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.ControlAssert.AreAccessibleNameEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName" /> 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.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> 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.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.AccessibleRole,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> 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.ControlAssert.AreAllowDropEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> 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.ControlAssert.AreAllowDropEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> 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.ControlAssert.AreAnchorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor" /> 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.ControlAssert.AreAnchorEqual(System.Windows.Forms.AnchorStyles,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor" /> 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.ControlAssert.AreBackColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor" /> 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.ControlAssert.AreBackColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor" /> 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.ControlAssert.AreBackgroundImageEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> 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.ControlAssert.AreBackgroundImageEqual(System.Drawing.Image,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> 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.ControlAssert.AreBindingContextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext" /> 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.ControlAssert.AreBindingContextEqual(System.Windows.Forms.BindingContext,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext" /> 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.ControlAssert.AreBottomEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom" /> 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.ControlAssert.AreBottomEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom" /> 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.ControlAssert.AreBoundsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds" /> 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.ControlAssert.AreBoundsEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds" /> 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.ControlAssert.AreCanFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> 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.ControlAssert.AreCanFocusEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> 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.ControlAssert.AreCanSelectEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> 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.ControlAssert.AreCanSelectEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> 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.ControlAssert.AreCaptureEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> 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.ControlAssert.AreCaptureEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> 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.ControlAssert.AreCausesValidationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> 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.ControlAssert.AreCausesValidationEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> 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.ControlAssert.AreClientRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle" /> 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.ControlAssert.AreClientRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle" /> 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.ControlAssert.AreClientSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize" /> 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.ControlAssert.AreClientSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize" /> 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.ControlAssert.AreCompanyNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName" /> 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.ControlAssert.AreCompanyNameEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName" /> 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.ControlAssert.AreContainerEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.ComponentModel.Component.Container" /> 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.ControlAssert.AreContainerEqual(System.ComponentModel.IContainer,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.ComponentModel.Component.Container" /> 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.ControlAssert.AreContainsFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> 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.ControlAssert.AreContainsFocusEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> 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.ControlAssert.AreContextMenuEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu" /> 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.ControlAssert.AreContextMenuEqual(System.Windows.Forms.ContextMenu,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu" /> 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.ControlAssert.AreControlsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls" /> 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.ControlAssert.AreControlsEqual(System.Windows.Forms.Control.ControlCollection,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls" /> 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.ControlAssert.AreCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> 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.ControlAssert.AreCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> 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.ControlAssert.AreCursorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor" /> 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.ControlAssert.AreCursorEqual(System.Windows.Forms.Cursor,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor" /> 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.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings" /> 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.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.ControlBindingsCollection,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings" /> 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.ControlAssert.AreDisplayRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> 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.ControlAssert.AreDisplayRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> 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.ControlAssert.AreDisposingEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> 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.ControlAssert.AreDisposingEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> 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.ControlAssert.AreDockEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock" /> 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.ControlAssert.AreDockEqual(System.Windows.Forms.DockStyle,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock" /> 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.ControlAssert.AreEnabledEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> 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.ControlAssert.AreEnabledEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> 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.ControlAssert.AreFocusedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> 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.ControlAssert.AreFocusedEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> 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.ControlAssert.AreFontEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font" /> 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.ControlAssert.AreFontEqual(System.Drawing.Font,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font" /> 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.ControlAssert.AreForeColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor" /> 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.ControlAssert.AreForeColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor" /> 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.ControlAssert.AreHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle" /> 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.ControlAssert.AreHandleEqual(System.IntPtr,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle" /> 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.ControlAssert.AreHasChildrenEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> 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.ControlAssert.AreHasChildrenEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> 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.ControlAssert.AreHeightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height" /> 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.ControlAssert.AreHeightEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height" /> 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.ControlAssert.AreImeModeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode" /> 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.ControlAssert.AreImeModeEqual(System.Windows.Forms.ImeMode,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode" /> 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.ControlAssert.AreInvokeRequiredEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> 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.ControlAssert.AreInvokeRequiredEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> 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.ControlAssert.AreIsAccessibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> 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.ControlAssert.AreIsAccessibleEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> 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.ControlAssert.AreIsDisposedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> 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.ControlAssert.AreIsDisposedEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> 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.ControlAssert.AreIsHandleCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> 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.ControlAssert.AreIsHandleCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> 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.ControlAssert.AreLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left" /> 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.ControlAssert.AreLeftEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left" /> 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.ControlAssert.AreLocationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location" /> 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.ControlAssert.AreLocationEqual(System.Drawing.Point,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location" /> 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.ControlAssert.AreNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name" /> 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.ControlAssert.AreNameEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name" /> 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.ControlAssert.AreParentEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Parent" /> 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.ControlAssert.AreProductNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName" /> 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.ControlAssert.AreProductNameEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName" /> 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.ControlAssert.AreProductVersionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion" /> 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.ControlAssert.AreProductVersionEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion" /> 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.ControlAssert.AreRecreatingHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> 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.ControlAssert.AreRecreatingHandleEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> 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.ControlAssert.AreRegionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region" /> 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.ControlAssert.AreRegionEqual(System.Drawing.Region,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region" /> 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.ControlAssert.AreRightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right" /> 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.ControlAssert.AreRightEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right" /> 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.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft" /> 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.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.RightToLeft,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft" /> 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.ControlAssert.AreSiteEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site" /> 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.ControlAssert.AreSiteEqual(System.ComponentModel.ISite,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site" /> 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.ControlAssert.AreSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size" /> 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.ControlAssert.AreSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size" /> 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.ControlAssert.AreTabIndexEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex" /> 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.ControlAssert.AreTabIndexEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex" /> 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.ControlAssert.AreTabStopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> 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.ControlAssert.AreTabStopEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> 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.ControlAssert.AreTagEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag" /> 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.ControlAssert.AreTagEqual(System.Object,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag" /> 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.ControlAssert.AreTextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text" /> 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.ControlAssert.AreTextEqual(System.String,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text" /> 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.ControlAssert.AreTopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top" /> 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.ControlAssert.AreTopEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top" /> 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.ControlAssert.AreTopLevelControlEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TopLevelControl" /> 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.ControlAssert.AreVisibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> 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.ControlAssert.AreVisibleEqual(System.Boolean,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> 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.ControlAssert.AreWidthEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width" /> 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.ControlAssert.AreWidthEqual(System.Int32,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width" /> 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.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget" /> 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.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.IWindowTarget,System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget" /> 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.ControlAssert.CanFocus(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.CanSelect(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.Capture(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.CausesValidation(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.ContainsFocus(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.Created(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.Disposing(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.Enabled(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.Focused(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.HasChildren(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.InvokeRequired(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.IsAccessible(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.IsDisposed(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.IsHandleCreated(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.IsNotandleCreated(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.IsNotccessible(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.IsNotisposed(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotAllowDrop(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotCanFocus(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotCanSelect(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotCapture(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotCausesValidation(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotContainsFocus(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotCreated(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotDisposing(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotEnabled(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotFocused(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotHasChildren(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotInvokeRequired(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotRecreatingHandle(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotTabStop(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.NotVisible(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> is false.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.RecreatingHandle(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.TabStop(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="M:MbUnit.Framework.ControlAssert.Visible(System.Windows.Forms.Control)">
      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> is true.</summary>
      <param name="actual">Instance containing the expected value.</param>
    </member>
    <member name="T:MbUnit.Framework.CopyToProviderAttribute">
      <summary>Tags method that provider a new object and copy the content of the arguments into the object</summary>
    </member>
    <member name="T:MbUnit.Framework.DataAssert">
      <summary>Assertion class for Database related object. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.DataAssert.AreDataEqual(System.Data.DataSet,System.Data.DataSet)">
      <summary>Assert that <see cref="T:System.Data.DataSet" /> data are equal.</summary>
    </member>
    <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataColumn,System.Data.DataColumn)">
      <summary>Asserts that two <see cref="T:System.Data.DataColumn" /> are equal.</summary>
      <param name="expected">Expected <see cref="T:System.Data.DataColumn" /> instance.</param>
      <param name="actual">Actual <see cref="T:System.Data.DataColumn" /> instance.</param>
    </member>
    <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataRow,System.Data.DataRow)">
      <summary>Asserts that two <see cref="T:System.Data.DataRow" /> are equal.</summary>
      <param name="expected">Expected <see cref="T:System.Data.DataRow" /> instance.</param>
      <param name="actual">Actual <see cref="T:System.Data.DataRow" /> instance.</param>
    </member>
    <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataSet,System.Data.DataSet)">
      <summary>Assert that <see cref="T:System.Data.DataSet" /> schemas and data are equal.</summary>
    </member>
    <member name="M:MbUnit.Framework.DataAssert.AreSchemasEqual(System.Data.DataSet,System.Data.DataSet)">
      <summary>Assert that <see cref="T:System.Data.DataSet" /> schemas are equal.</summary>
    </member>
    <member name="T:MbUnit.Framework.DataFixtureAttribute">
      <summary>Data Test fixture. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Framework.DataFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="T:MbUnit.Framework.DataProviderAttribute">
      <summary>Tags method that provide data for the tests.</summary>
    </member>
    <member name="T:MbUnit.Framework.DurationAttribute">
      <summary>Tag method that should return in a given time interval.</summary>
    </member>
    <member name="T:MbUnit.Framework.EnumerationFixtureAttribute">
      <summary>Enumeration Pattern implementations. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.ExpectedExceptionAttribute">
      <summary>Tags method that should throw an exception.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
      <summary>The expected exception.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
      <summary>The expected message text.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.InnerExceptionType">
      <summary>The expected inner exception.</summary>
    </member>
    <member name="T:MbUnit.Framework.ExplicitAttribute">
      <summary>Tags test methods that are only to be run when explicitly selected. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.ExtractResourceAttribute">
      <summary>Test methods annotated with this attribute will have the specified embedded resource extracted.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExtractResourceAttribute.Destination">
      <summary>The destination file to write the resource to. Should be a path.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceCleanup">
      <summary>Whether or not to cleanup the resource.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceName">
      <summary>The full name of the resource. Use Reflector to find this out if you don't know.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExtractResourceAttribute.Stream">
      <summary>The current resource stream if using the attribute without specifying a destination.</summary>
    </member>
    <member name="P:MbUnit.Framework.ExtractResourceAttribute.Type">
      <summary>The type within the assembly that contains the embedded resource.</summary>
    </member>
    <member name="T:MbUnit.Framework.FillAttribute">
      <summary>Tags method that fill collections with data.</summary>
    </member>
    <member name="T:MbUnit.Framework.IgnoreAttribute">
      <summary>Tags test methods that are ignored. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.ImportanceAttribute">
      <summary>This attribute collects the test importance information.</summary>
    </member>
    <member name="T:MbUnit.Framework.IndexerProviderAttribute">
      <summary>Tag method that provider a collection, an inde</summary>
    </member>
    <member name="T:MbUnit.Framework.MultipleCultureAttribute">
      <summary>Tag method that gives a list of culture that the test should run on.</summary>
    </member>
    <member name="T:MbUnit.Framework.NotInheritedExpectedExceptionAttribute">
      <summary>Tags method that should throw an exception.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfAssert">
      <summary>Performance Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfAssert.Duration(System.Double)">
      <summary>Creates a countdown timer that will assert if execution time exceeds maximum duration.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData">
      <summary>.Net CLR Data This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools">
      <summary>Current number of pools associated with the process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections">
      <summary>Current number of connections, pooled or not. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections">
      <summary>Current number of connections in all pools associated with the process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections">
      <summary>The highest number of connections in all pools since the process started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands">
      <summary>The total number of command executes that have failed for any reason. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects">
      <summary>The total number of connection open attempts that have failed for any reason. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions">
      <summary>Runtime statistics on CLR exception handling. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown">
      <summary>This counter displays the total number of exceptions thrown since the start of the application. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions that are re-thrown would get counted again. Exceptions should only occur in rare situations and not in the normal control flow of the program. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec">
      <summary>This counter displays the number of exceptions thrown per second. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions should only occur in rare situations and not in the normal control flow of the program; this counter was designed as an indicator of potential performance problems due to large (&gt;100s) rate of exceptions thrown. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec">
      <summary>This counter displays the number of .NET exception filters executed per second. An exception filter evaluates whether an exception should be handled or not. This counter tracks the rate of exception filters evaluated; irrespective of whether the exception was handled or not. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec">
      <summary>This counter displays the number of finally blocks executed per second. A finally block is guaranteed to be executed regardless of how the try block was exited. Only the finally blocks that are executed for an exception are counted; finally blocks on normal code paths are not counted by this counter. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec">
      <summary>This counter displays the number of stack frames traversed from the frame that threw the .NET exception to the frame that handled the exception per second. This counter resets to 0 when an exception handler is entered; so nested exceptions would show the handler to handler stack depth. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop">
      <summary>Stats for CLR interop. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws">
      <summary>This counter displays the current number of Com-Callable-Wrappers (CCWs). A CCW is a proxy for the .NET managed object being referenced from unmanaged COM client(s). This counter was designed to indicate the number of managed objects being referenced by unmanaged COM code. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling">
      <summary>This counter displays the total number of times arguments and return values have been marshaled from managed to unmanaged code and vice versa since the start of the application. This counter is not incremented if the stubs are inlined. (Stubs are responsible for marshalling arguments and return values). Stubs usually get inlined if the marshalling overhead is small. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs">
      <summary>This counter displays the current number of stubs created by the CLR. Stubs are responsible for marshalling arguments and return values from managed to unmanaged code and vice versa; during a COM Interop call or PInvoke call. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec">
      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec">
      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit">
      <summary>Stats for CLR Jit. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec">
      <summary>This counter displays the rate at which IL bytes are jitted per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted">
      <summary>This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "Total # of IL Bytes Jitted" counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted">
      <summary>This counter displays the total number of methods compiled Just-In-Time (JIT) by the CLR JIT compiler since the start of the application. This counter does not include the pre-jitted methods. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed">
      <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures">
      <summary>This counter displays the peak number of methods the JIT compiler has failed to JIT since the start of the application. This failure can occur if the IL cannot be verified or if there was an internal error in the JIT compiler. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit">
      <summary>This counter displays the percentage of elapsed time spent in JIT compilation since the last JIT compilation phase. This counter is updated at the end of every JIT compilation phase. A JIT compilation phase is the phase when a method and its dependencies are being compiled. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted">
      <summary>This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "# of IL Bytes Jitted" counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading">
      <summary>Statistics for CLR Class Loader. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength">
      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap">
      <summary>This counter displays the current size (in bytes) of the memory committed by the class loader across all AppDomains. (Committed memory is the physical memory for which space has been reserved on the disk paging file.) This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains">
      <summary>This counter displays the current number of AppDomains loaded in this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies">
      <summary>This counter displays the current number of Assemblies loaded across all AppDomains in this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded">
      <summary>This counter displays the current number of classes loaded in all Assemblies. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains">
      <summary>This counter displays the number of AppDomains loaded per second. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded">
      <summary>This counter displays the number of AppDomains unloaded per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies">
      <summary>This counter displays the number of Assemblies loaded across all AppDomains per second. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded">
      <summary>This counter displays the number of classes loaded per second in all Assemblies. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures">
      <summary>This counter displays the number of classes that failed to load per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading">
      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains">
      <summary>This counter displays the peak number of AppDomains loaded since the start of this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded">
      <summary>This counter displays the total number of AppDomains unloaded since the start of the application. If an AppDomain is loaded and unloaded multiple times this counter would count each of those unloads as separate. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies">
      <summary>This counter displays the total number of Assemblies loaded since the start of this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded">
      <summary>This counter displays the cumulative number of classes loaded in all Assemblies since the start of this application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures">
      <summary>This counter displays the peak number of classes that have failed to load since the start of the application. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads">
      <summary>Stats for CLR Locks and Threads. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec">
      <summary>Rate at which threads in the runtime attempt to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength">
      <summary>This counter displays the total number of threads currently waiting to acquire some managed lock in the application. This counter is not an average over time; it displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads">
      <summary>This counter displays the number of current .NET thread objects in the application. A .NET thread object is created either by new System.Threading.Thread or when an unmanaged thread enters the managed environment. This counters maintains the count of both running and stopped threads. This counter is not an average over time; it just displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads">
      <summary>This counter displays the number of native OS threads created and owned by the CLR to act as underlying threads for .NET thread objects. This counters value does not include the threads used by the CLR in its internal operations; it is a subset of the threads in the OS process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads">
      <summary>This counter displays the number of threads that are currently recognized by the CLR; they have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads">
      <summary>This counter displays the total number of threads that have been recognized by the CLR since the start of this application; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak">
      <summary>This counter displays the total number of threads that waited to acquire some managed lock since the start of the application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec">
      <summary>This counter displays the number of threads per second waiting to acquire some lock in the application. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec">
      <summary>This counter displays the number of threads per second that have been recognized by the CLR; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions">
      <summary>This counter displays the total number of times threads in the CLR have attempted to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory">
      <summary>Counters for CLR Garbage Collected heap. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec">
      <summary>This counter displays the rate of bytes per second allocated on the GC Heap. This counter is updated at the end of every GC; not at each allocation. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors">
      <summary>This counter displays the number of garbage collected objects that survive a collection because they are waiting to be finalized. If these objects hold references to other objects then those objects also survive but are not counted by this counter; the "Promoted Finalization-Memory from Gen 0" and "Promoted Finalization-Memory from Gen 1" counters represent all the memory that survived due to finalization. This counter is not a cumulative counter; its updated at the end of every GC with count of the survivors during that particular GC only. This counter was designed to indicate the extra overhead that the application might incur because of finalization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize">
      <summary>This counter displays the maximum bytes that can be allocated in generation 0 (Gen 0); its does not indicate the current number of bytes allocated in Gen 0. A Gen 0 GC is triggered when the allocations since the last GC exceed this size. The Gen 0 size is tuned by the Garbage Collector and can change during the execution of the application. At the end of a Gen 0 collection the size of the Gen 0 heap is infact 0 bytes; this counter displays the size (in bytes) of allocations that would trigger the next Gen 0 GC. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec">
      <summary>This counter displays the bytes per second that are promoted from generation 0 (youngest) to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. This counter was designed as an indicator of relatively long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize">
      <summary>This counter displays the current number of bytes in generation 1 (Gen 1); this counter does not display the maximum size of Gen 1. Objects are not directly allocated in this generation; they are promoted from previous Gen 0 GCs. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec">
      <summary>This counter displays the bytes per second that are promoted from generation 1 to generation 2 (oldest); objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. Nothing is promoted from generation 2 since it is the oldest. This counter was designed as an indicator of very long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize">
      <summary>This counter displays the current number of bytes in generation 2 (Gen 2). Objects are not directly allocated in this generation; they are promoted from Gen 1 during previous Gen 1 GCs. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize">
      <summary>This counter displays the current size of the Large Object Heap in bytes. Objects greater than 20 KBytes are treated as large objects by the Garbage Collector and are directly allocated in a special heap; they are not promoted through the generations. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps">
      <summary>This counter is the sum of four other counters; Gen 0 Heap Size; Gen 1 Heap Size; Gen 2 Heap Size and the Large Object Heap Size. This counter indicates the current memory allocated in bytes on the GC Heaps. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles">
      <summary>This counter displays the current number of GC Handles in use. GCHandles are handles to resources external to the CLR and the managed environment. Handles occupy small amounts of memory in the GCHeap but potentially expensive unmanaged resources. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections">
      <summary>This counter displays the number of times the generation 0 objects (youngest; most recently allocated) are garbage collected (Gen 0 GC) since the start of the application. Gen 0 GC occurs when the available memory in generation 0 is not sufficient to satisfy an allocation request. This counter is incremented at the end of a Gen 0 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 1 or Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections">
      <summary>This counter displays the number of times the generation 1 objects are garbage collected since the start of the application. The counter is incremented at the end of a Gen 1 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections">
      <summary>This counter displays the number of times the generation 2 objects (older) are garbage collected since the start of the application. The counter is incremented at the end of a Gen 2 GC (also called full GC). _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc">
      <summary>This counter displays the peak number of times a garbage collection was performed because of an explicit call to GC.Collect. Its a good practice to let the GC tune the frequency of its collections. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects">
      <summary>This counter displays the number of pinned objects encountered in the last GC. This counter tracks the pinned objects only in the heaps that were garbage collected e.g. a Gen 0 GC would cause enumeration of pinned objects in the generation 0 heap only. A pinned object is one that the Garbage Collector cannot move in memory. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse">
      <summary>This counter displays the current number of sync blocks in use. Sync blocks are per-object data structures allocated for storing synchronization information. Sync blocks hold weak references to managed objects and need to be scanned by the Garbage Collector. Sync blocks are not limited to storing synchronization information and can also store COM interop metadata. This counter was designed to indicate performance problems with heavy use of synchronization primitives. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes">
      <summary>This counter displays the amount of virtual memory (in bytes) currently committed by the Garbage Collector. (Committed memory is the physical memory for which space has been reserved on the disk paging file). This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes">
      <summary>This counter displays the amount of virtual memory (in bytes) currently reserved by the Garbage Collector. (Reserved memory is the virtual memory space reserved for the application but no disk or main memory pages have been used.) This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed">
      <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0">
      <summary>This counter displays the bytes of memory that are promoted from generation 0 to generation 1 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1">
      <summary>This counter displays the bytes of memory that are promoted from generation 1 to generation 2 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0">
      <summary>This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 0 to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1">
      <summary>This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 1 to generation 2; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc">
      <summary>% Time in GC is the percentage of elapsed time that was spent in performing a garbage collection (GC) since the last GC cycle. This counter is usually an indicator of the work done by the Garbage Collector on behalf of the application to collect and compact memory. This counter is updated only at the end of every GC and the counter value reflects the last observed value; its not an average. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking">
      <summary>Help not available. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived">
      <summary>The cumulative total number of bytes received over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent">
      <summary>The cumulative total number of bytes sent over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished">
      <summary>The cumulative total number of socket connections established for this process since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived">
      <summary>The cumulative total number of datagram packets received since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent">
      <summary>The cumulative total number of datagram packets sent since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting">
      <summary>Stats for CLR Remoting. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels">
      <summary>This counter displays the total number of remoting channels registered across all AppDomains since the start of the application. Channels are used to transport messages to and from remote objects. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded">
      <summary>This counter displays the current number of context-bound classes loaded. Classes that can be bound to a context are called context-bound classes; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec">
      <summary>This counter displays the number of context-bound objects allocated per second. Instances of classes that can be bound to a context are called context-bound objects; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies">
      <summary>This counter displays the total number of remoting proxy objects created in this process since the start of the process. Proxy object acts as a representative of the remote objects and ensures that all calls made on the proxy are forwarded to the correct remote object instance. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts">
      <summary>This counter displays the current number of remoting contexts in the application. A context is a boundary containing a collection of objects with the same usage rules like synchronization; thread affinity; transactions etc. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec">
      <summary>This counter displays the number of remote procedure calls invoked per second. A remote procedure call is a call on any object outside the caller;s AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls">
      <summary>This counter displays the total number of remote procedure calls invoked since the start of this application. A remote procedure call is a call on any object outside the caller;s AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity">
      <summary>Stats for CLR Security. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks">
      <summary>This counter displays the total number of linktime Code Access Security (CAS) checks since the start of the application. Linktime CAS checks are performed when a caller makes a call to a callee demanding a particular permission at JIT compile time; linktime check is performed once per caller. This count is not indicative of serious performance issues; its indicative of the security system activity. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed">
      <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth">
      <summary>This counter displays the depth of the stack during that last runtime Code Access Security check. Runtime Code Access Security check is performed by crawling the stack. This counter is not an average; it just displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks">
      <summary>This counter displays the percentage of elapsed time spent in performing runtime Code Access Security (CAS) checks since the last such check. CAS allows code to be trusted to varying degrees and enforces these varying levels of trust depending on code identity. This counter is updated at the end of a runtime security check; it represents the last observed value; its not an average. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating">
      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks">
      <summary>This counter displays the total number of runtime Code Access Security (CAS) checks performed since the start of the application. Runtime CAS checks are performed when a caller makes a call to a callee demanding a particular permission; the runtime check is made on every call by the caller; the check is done by examining the current thread stack of the caller. This counter used together with "Stack Walk Depth" is indicative of performance penalty for security checks. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle">
      <summary>Counters for System.Data.OracleClient This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond">
      <summary>The number of actual connections per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond">
      <summary>The number of actual disconnects per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups">
      <summary>The number of unique connection strings This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools">
      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections">
      <summary>The number of connections currently in-use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections">
      <summary>The number of connections currently available for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups">
      <summary>The number of unique connection strings waiting for pruning This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools">
      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections">
      <summary>The number of connections that are not using connection pooling This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections">
      <summary>The number of connections that are managed by the connection pooler This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections">
      <summary>The number of connections we reclaim from GCed from external connections This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections">
      <summary>The number of connections currently waiting to be made ready for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond">
      <summary>The number of connections we get from the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond">
      <summary>The number of connections we return to the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer">
      <summary>Counters for System.Data.SqlClient This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond">
      <summary>The number of actual connections per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond">
      <summary>The number of actual disconnects per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups">
      <summary>The number of unique connection strings This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools">
      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections">
      <summary>The number of connections currently in-use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections">
      <summary>The number of connections currently available for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups">
      <summary>The number of unique connection strings waiting for pruning This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools">
      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections">
      <summary>The number of connections that are not using connection pooling This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections">
      <summary>The number of connections that are managed by the connection pooler This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections">
      <summary>The number of connections we reclaim from GCed from external connections This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections">
      <summary>The number of connections currently waiting to be made ready for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond">
      <summary>The number of connections we get from the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond">
      <summary>The number of connections we return to the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond.NextValue">
      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
    </member>
    <member name="T:MbUnit.Framework.ProcessTestFixtureAttribute">
      <summary>Process Test Pattern fixture. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Framework.ProcessTestFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="T:MbUnit.Framework.ProviderAttribute">
      <summary>Tags method that provide new object to be used in the following tests.</summary>
    </member>
    <member name="P:MbUnit.Framework.ProviderAttribute.ProviderType">
      <summary>Gets or sets the provided type</summary>
      <value>Provided type.</value>
    </member>
    <member name="T:MbUnit.Framework.ReadAttribute">
      <summary>Tag use to mark a method that writes data to a device.</summary>
    </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.RepeatAttribute">
      <summary>This tag defines test method that will be repeated the specified number of times. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.RepeatTestAttribute">
      <summary>This tag defines test method that will be repeated the specified number of times. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.ResourceXmlDataProviderAttribute">
      <summary>A resource-based data provider This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.RollBackAttribute">
      <summary>Tags methods to execute database operation in its own database transaction. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.RowAttribute">
      <summary>Provides a row of values using in conjunction with <see cref="T:MbUnit.Framework.RowTestAttribute" /> to bind values to the parameters of a row test method. This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Framework.RowAttribute.ExpectedException">
      <summary>Gets or sets the type of exception that is expected to be thrown when this row is tested, or null if none.</summary>
    </member>
    <member name="M:MbUnit.Framework.RowAttribute.GetRow">
      <summary>Gets the row of values.</summary>
      <returns>The row of values</returns>
    </member>
    <member name="M:MbUnit.Framework.RowAttribute.GetRow(System.Reflection.ParameterInfo[])">
      <summary>Gets the row of values. Each one will be converted (if posible) to the type of the corresponding argument in the test method.</summary>
      <param name="parameters">List of parameters.</param>
      <returns>The row of values.</returns>
    </member>
    <member name="T:MbUnit.Framework.RowTestAttribute">
      <summary>Declares a row test when applied to a test method along with one or more <see cref="T:MbUnit.Framework.RowAttribute" /> attributes. This class cannot be inherited.</summary>
    </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="M:MbUnit.Framework.SerialAssert.IsXmlSerializable(System.Type)">
      <summary>Verifies that the type is serializable with the XmlSerializer object.</summary>
      <param name="t">type to test.</param>
    </member>
    <member name="M:MbUnit.Framework.SerialAssert.TwoWaySerialization(System.Object)">
      <summary>Serializes and deserialies to/from XML and checks that the results are the same.</summary>
      <param name="o">Object to test</param>
    </member>
    <member name="T:MbUnit.Framework.SetUpAttribute">
      <summary>Tag use to mark a method that initiliazes the fixture instance.</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>Tag use to mark a method that cleans up the resource of the fixture instance.</summary>
    </member>
    <member name="T:MbUnit.Framework.TestAttribute">
      <summary>Tag use to mark a mark a unit test method. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.TestCase">
      <summary>A single test case of a <see cref="T:MbUnit.Framework.TestSuite" />.</summary>
    </member>
    <member name="P:MbUnit.Framework.TestCase.Name">
      <summary>Gets the name of the test case</summary>
      <value>The name of the test case</value>
    </member>
    <member name="M:MbUnit.Framework.TestCase.Invoke(System.Object,System.Collections.IList)">
      <summary>Invokes test using the parameters returned by <see cref="M:MbUnit.Framework.TestCase.GetParameters" />.</summary>
    </member>
    <member name="T:MbUnit.Framework.TestFixtureAttribute">
      <summary>Simple Test Pattern fixture. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Framework.TestFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="T:MbUnit.Framework.TestFixtureExtensionAttribute">
      <summary>Contributes additional tests and setup or teardown steps to the lifecycle defined by <see cref="T:MbUnit.Framework.TestFixtureAttribute" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddAfterTearDownRuns(MbUnit.Core.Collections.RunCollection)">
      <summary>Called to add runs to perform after teardown.</summary>
      <param name="runs">The collection to update</param>
    </member>
    <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddBeforeSetupRuns(MbUnit.Core.Collections.RunCollection)">
      <summary>Called to add runs to perform before setup.</summary>
      <param name="runs">The collection to update</param>
    </member>
    <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddTestRuns(MbUnit.Core.Collections.RunCollection)">
      <summary>Called to add runs to perform during the test execution cycle.</summary>
      <param name="runs">The collection to update</param>
    </member>
    <member name="T:MbUnit.Framework.TestSequenceAttribute">
      <summary>Creates an order of execution in the fixture. This class cannot be inherited.</summary>
    </member>
    <member name="P:MbUnit.Framework.TestSequenceAttribute.Order">
      <summary>Gets or sets the order execution</summary>
      <value>The order of execution</value>
    </member>
    <member name="M:MbUnit.Framework.TestSequenceAttribute.ToString">
      <summary>Returns a string that represents the instance.</summary>
      <returns>String representing the object.</returns>
    </member>
    <member name="T:MbUnit.Framework.TestSuite">
      <summary>A named collection of uniquely named <see cref="T:MbUnit.Framework.TestCase" />.</summary>
    </member>
    <member name="P:MbUnit.Framework.TestSuite.Name">
      <summary>Gets the <see cref="T:MbUnit.Framework.TestSuite" /> name.</summary>
      <value>The <see cref="T:MbUnit.Framework.TestSuite" /> name.</value>
    </member>
    <member name="P:MbUnit.Framework.TestSuite.TestCases">
      <summary>Gets a collection of <see cref="T:MbUnit.Framework.TestCase" />.</summary>
      <value>A collection of <see cref="T:MbUnit.Framework.TestCase" />.</value>
    </member>
    <member name="M:MbUnit.Framework.TestSuite.Add(MbUnit.Framework.ITestCase)">
      <summary>Adds the test case to the suite</summary>
      <param name="testCase">
        <see cref="T:MbUnit.Framework.TestCase" /> instance to add.</param>
      <exception cref="T:System.InvalidOperationException"> The suite already contains a test case named <paramref name="name" />. </exception>
    </member>
    <member name="M:MbUnit.Framework.TestSuite.Add(System.String,System.Delegate,System.Object[])">
      <summary>Adds a new <see cref="T:MbUnit.Framework.TestCase" /> to the suite.</summary>
      <param name="name">Name of the new test case</param>
      <param name="test">
        <see cref="T:System.Delegate" /> invoked by the test case</param>
      <param name="parameters">parameters sent to <paramref name="test" /> when invoked</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="name" /> is a null reference (Nothing in Visual Basic) </exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="name" /> is empty. </exception>
      <exception cref="T:System.InvalidOperationException"> The suite already contains a test case named <paramref name="name" />. </exception>
    </member>
    <member name="M:MbUnit.Framework.TestSuite.Remove(MbUnit.Framework.TestCase)">
      <summary>Removes the test case from the suite</summary>
      <param name="testCase">Test case to remove</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="testCase" /> is a null reference (Nothing in Visual Basic) </exception>
    </member>
    <member name="T:MbUnit.Framework.TestSuiteFixtureAttribute">
      <summary>Test Suite fixture. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Framework.TestSuiteFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="T:MbUnit.Framework.TestSuiteSetUpAttribute">
      <summary>Tag used to mark a method that needs to be run before TestSuite generation.</summary>
    </member>
    <member name="T:MbUnit.Framework.ThreadedRepeatAttribute">
      <summary>This tag defines test method that will invoke the method in the specified number of concurrent threads. This class cannot be inherited.</summary>
    </member>
    <member name="T:MbUnit.Framework.TypeFixtureAttribute">
      <summary>Type fixture pattern implementation. This class cannot be inherited.</summary>
    </member>
    <member name="M:MbUnit.Framework.TypeFixtureAttribute.GetRun">
      <summary>Creates the execution logic</summary>
      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
    </member>
    <member name="P:MbUnit.Framework.UsingFactoriesAttribute.MemberNames">
      <summary>Gets a list of member names separated by ;</summary>
    </member>
    <member name="P:MbUnit.Framework.UsingLiteralsAttribute.Values">
      <summary>Gets a list of values separated by ;</summary>
    </member>
    <member name="T:MbUnit.Framework.VerifiedTestCase">
      <summary>A <see cref="T:MbUnit.Framework.TestCase" /> with verified result.</summary>
    </member>
    <member name="T:MbUnit.Framework.WebAssert">
      <summary>Web related assertions. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.AreClientTargetEqual(System.String,System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.ClientTarget" /> property of <paramref name="page" /> is equal to <paramref name="expected" />.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.AreErrorPageEqual(System.String,System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.ErrorPage" /> property of <paramref name="page" /> is equal to <paramref name="expected" />.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.Web.UI.Control,System.Web.UI.Control)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" /> property of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.String,System.Web.UI.Control)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" /> property of <paramref name="actual" /> is equal to <paramref name="expected" /> are equal.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.HasControls(System.Web.UI.Control)">
      <summary>Verifies that <paramref name="ctrl" /> has child controls.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.HasNoControls(System.Web.UI.Control)">
      <summary>Verifies that <paramref name="ctrl" /> has no child controls.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.Web.UI.Control)">
      <summary>Verifies that <paramref name="child" /> is a child control of <paramref name="parent" /></summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.String)">
      <summary>Verifies that <paramref name="childID" /> is the ID of a child control of <paramref name="parent" /></summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsEnableViewState(System.Web.UI.Control)">
      <summary>Verifies that <paramref name="ctrl" /> has ViewState enabled.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsIDEqual(System.Web.UI.Control,System.String)">
      <summary>Verifies that <paramref name="ctrl" /> ID is equal to <paramref name="id" />.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.Web.UI.Control)">
      <summary>Verifies that <paramref name="child" /> is a not child control of <paramref name="parent" /></summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.String)">
      <summary>Verifies that <paramref name="childID" /> is the not ID of a child control of <paramref name="parent" /></summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotEnableViewState(System.Web.UI.Control)">
      <summary>Verifies that <paramref name="ctrl" /> has <strong>not</strong> ViewState enabled.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotPostBack(System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack" /> property of <paramref name="page" /> is false.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotSmartNavigation(System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation" /> property of <paramref name="page" /> is false.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotValid(System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsValid" /> property of <paramref name="page" /> is false.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsNotVisible(System.Web.UI.Control)">
      <summary>Verifies that <paramref name="ctrl" /> is not visible.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsPostBack(System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack" /> property of <paramref name="page" /> is true.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsSmartNavigation(System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation" /> property of <paramref name="page" /> is true.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsValid(System.Web.UI.Page)">
      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsValid" /> property of <paramref name="page" /> is true.</summary>
    </member>
    <member name="M:MbUnit.Framework.WebAssert.IsVisible(System.Web.UI.Control)">
      <summary>Verifies that <paramref name="ctrl" /> is visible.</summary>
    </member>
    <member name="T:MbUnit.Framework.WriteAttribute">
      <summary>Tag use to mark a method that writes data to a device.</summary>
    </member>
    <member name="T:MbUnit.Framework.XmlDataProviderAttribute">
      <summary>A file-based data provider</summary>
    </member>
    <member name="T:MbUnit.Framework.CollectionOrderTest">
      <summary>Different collection order</summary>
    </member>
    <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedAscending">
      <summary>Tests ascending order collection</summary>
    </member>
    <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedDescending">
      <summary>Tests ascending order collection</summary>
    </member>
    <member name="T:MbUnit.Framework.ResourceCleanup">
      <summary>Used to specify whether or not the test should delete the extracted resource when the test is complete.</summary>
    </member>
    <member name="F:MbUnit.Framework.ResourceCleanup.NoCleanup">
      <summary>Do not delete the extracted resource</summary>
    </member>
    <member name="F:MbUnit.Framework.ResourceCleanup.DeleteAfterTest">
      <summary>Delete the extracted resource after the test.</summary>
    </member>
    <member name="F:MbUnit.Framework.SpecialValue.Null">
      <summary>When used as parameter in a row test, it will be replaced by null (Nothing in VB).</summary>
    </member>
    <member name="T:MbUnit.Framework.Exceptions.MissingDbInfoException">
      <summary>Could not find <see cref="T:MbUnit.Framework.DbRestoreInfoAttribute" />.</summary>
    </member>
    <member name="T:MbUnit.Framework.Testers.CollectionIndexingTester">
      <summary>Collection indexing test class</summary>
    </member>
    <member name="T:MbUnit.Framework.Testers.CollectionOrderTester">
      <summary>Collection order tester class.</summary>
    </member>
    <member name="T:MbUnit.Framework.Testers.EnumerationTester">
      <summary>Tests for the <seealso cref="T:System.Collections.IEnumerable" /> and <seealso cref="T:System.Collections.IEnumerator" />.</summary>
    </member>
    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValueExplicitlySpecified" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeNameNotFound" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValue">
      <summary>Comparing 2 attributes with the same name but different values</summary>
    </member>
    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeSequence">
      <summary>Comparing 2 attribute lists with the same attributes in different sequence</summary>
    </member>
    <member name="F:MbUnit.Framework.Xml.DifferenceType.CDATAValue" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.CommentValue" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.DOCTYPE_NAME_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypePublicID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypeSystemID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.ElementTagName" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.ELEMENT_NUM_ATTRIBUTES_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_TARGET_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_DATA_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.TEXT_VALUE_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_PREFIX_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_URI_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.NODE_TYPE_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_CHILD_NODES_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_LENGTH_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_SEQUENCE_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_DOCTYPE_DECLARATION_ID" />
    <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_XML_DECLARATION_PREFIX_ID" />
  </members>
</doc>