master
1<?xml version="1.0"?>
2<doc>
3 <assembly>
4 <name>MbUnit.Framework</name>
5 </assembly>
6 <members>
7 <member name="T:MbUnit.Framework.ArrayAssert">
8 <summary>
9 Array Assertion class
10 </summary>
11 </member>
12 <member name="M:MbUnit.Framework.ArrayAssert.#ctor">
13 <summary>
14 A private constructor disallows any instances of this object.
15 </summary>
16 </member>
17 <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Boolean[],System.Boolean[])">
18 <summary>
19 Verifies that both array have the same dimension and elements.
20 </summary>
21 <param name="expected"></param>
22 <param name="actual"></param>
23 </member>
24 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.ArrayAssert.IsArrayType(System.Object)" -->
25 <member name="T:MbUnit.Framework.Assert">
26 <summary>
27 Class containing generic assert methods for the comparison of values and object references, the existence of objects within a collection type and
28 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
29 straight away.
30 </summary>
31 </member>
32 <member name="M:MbUnit.Framework.Assert.Equals(System.Object,System.Object)">
33 <summary>
34 The Equals method throws an AssertionException. This is done
35 to make sure there is no mistake by calling this function. Use
36 <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">AreEqual</see> instead or one of its overloads.
37 </summary>
38 <param name="a">The first <see cref="T:System.Object"/> to compare</param>
39 <param name="b">The second <see cref="T:System.Object"/> to compare</param>
40 </member>
41 <member name="M:MbUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
42 <summary>
43 Overrides the default ReferenceEquals method inherited from <see cref="T:System.Object"/>
44 to throw an AssertionException instead. This is to ensure that there is no mistake in
45 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>
46 instead or one of its overloads.
47 </summary>
48 <param name="a">The first <see cref="T:System.Object"/> to compare</param>
49 <param name="b">The second <see cref="T:System.Object"/> to compare</param>
50 </member>
51 <member name="M:MbUnit.Framework.Assert.IsNumericType(System.Object)">
52 <summary>
53 Checks the type of the object, returning true if the object is a numeric type.
54 </summary>
55 <param name="obj">The object to check</param>
56 <returns>true if the object is a numeric type</returns>
57 </member>
58 <member name="M:MbUnit.Framework.Assert.ObjectsEqual(System.Object,System.Object)">
59 <summary>
60 Used to compare numeric types. Comparisons between
61 same types are fine (Int32 to Int32, or Int64 to Int64),
62 but the Equals method fails across different types.
63 This method was added to allow any numeric type to
64 be handled correctly, by using <c>ToString</c> and
65 comparing the result
66 </summary>
67 <param name="expected">The first <see cref="T:System.Object"/> to compare</param>
68 <param name="actual">The first <see cref="T:System.Object"/> to compare</param>
69 <returns><c>True</c> or <c>False</c></returns>
70 </member>
71 <member name="M:MbUnit.Framework.Assert.#ctor">
72 <summary>
73 A private constructor disallows any instances of this object.
74 </summary>
75 </member>
76 <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
77 <summary>
78 Asserts that a <paramref name="condition"/> is true. If false, the method throws
79 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with a message defined via <paramref name="format"/> and <paramref name="args"/>
80 through <see cref="!:http://msdn2.microsoft.com/en-gb/library/b1csw23d.aspx">String.Format()</see>.
81 </summary>
82 <param name="condition">The evaluated condition</param>
83 <param name="format">A <see cref="!:http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format String</see></param>
84 <param name="args">An <see cref="T:System.Object"/> array containing zero or more objects to format.</param>
85 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"><paramref name="condition"/> is not true. Exception message is generated through
86 <paramref name="format"/> and <paramref name="args"/>.
87 </exception>
88 <example>
89 The following code example demonstrates a success (IsTrue_True) and a failed test (IsTrue_False) together with the exception's formatted message
90 <code>
91 using MbUnit.Framework;
92 using System;
93
94 namespace AssertDocTests
95 {
96 [TestFixture]
97 public class Asserts
98 {
99 // This test succeeds
100 [Test]
101 public void IsTrue_True()
102 {
103 Assert.IsTrue(true, "This test failed at {0}", DateTime.Now.ToShortDateString());
104 }
105
106 //This test fails
107 [Test]
108 public void IsTrue_False()
109 {
110 Assert.IsTrue(false, "This test failed at {0}", DateTime.Now.ToShortDateString());
111 }
112 }
113 }
114 </code>
115 </example>
116 <seealso cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)"/>
117 <seealso cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String)"/>
118 </member>
119 <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
120 <summary>
121 Asserts that a <paramref name="condition"/> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with the given <see cref="!:message"/>.
122 </summary>
123 <param name="condition">The evaluated condition</param>
124 <param name="message">The message printed out upon failure</param>
125 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"><paramref name="condition"/> is not true.
126 </exception>
127 <example>
128 The following code example demonstrates a success (IsTrue_True) and a failed test (IsTrue_False) together with the exception's message
129 <code>
130 using MbUnit.Framework;
131
132 namespace AssertDocTests
133 {
134 [TestFixture]
135 public class Asserts
136 {
137 // This test succeeds
138 [Test]
139 public void IsTrue_True()
140 {
141 Assert.IsTrue(true, "This test failed. Please get it working");
142 }
143
144 //This test fails
145 [Test]
146 public void IsTrue_False()
147 {
148 Assert.IsTrue(false, "This test failed. Please get it working");
149 }
150 }
151 }
152 </code>
153 </example>
154 <seealso cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)"/>
155 <seealso cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])"/>
156 </member>
157 <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)">
158 <summary>
159 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.
160 Use <see cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String)"/> or <see cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])"/> instead to specify a message for the exception
161 </summary>
162 <param name="condition">The evaluated condition</param>
163 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"><paramref name="condition"/> is not true.
164 </exception>
165 <example>
166 The following code example demonstrates a success (IsTrue_True) and a failed test (IsTrue_False) together with the exception's message
167 <code>
168 using MbUnit.Framework;
169
170 namespace AssertDocTests
171 {
172 [TestFixture]
173 public class Asserts
174 {
175 // This test succeeds
176 [Test]
177 public void IsTrue_True()
178 {
179 Assert.IsTrue(true);
180 }
181
182 //This test fails
183 [Test]
184 public void IsTrue_False()
185 {
186 Assert.IsTrue(false);
187 }
188 }
189 }
190 </code>
191 </example>
192 <seealso cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)"/>
193 <seealso cref="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])"/>
194 </member>
195 <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
196 <summary>
197 Asserts that a <paramref name="condition"/> is false. If true, the method throws
198 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with a message defined via <paramref name="format"/> and <paramref name="args"/>
199 through <see cref="!:http://msdn2.microsoft.com/en-gb/library/b1csw23d.aspx">String.Format()</see>.
200 </summary>
201 <param name="condition">The evaluated condition</param>
202 <param name="format">A <see cref="!:http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format String</see></param>
203 <param name="args">An <see cref="T:System.Object"/> array containing zero or more objects to format.</param>
204 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"><paramref name="condition"/> is not false. Exception message is generated through
205 <paramref name="format"/> and <paramref name="args"/>.
206 </exception>
207 <example>
208 The following code example demonstrates a success (IsFalse_False) and a failed test (IsFalse_True) together with the exception's formatted message
209 <code>
210 using System;
211 using MbUnit.Framework;
212
213 namespace AssertDocTests
214 {
215 [TestFixture]
216 public class Asserts
217 {
218 // This test succeeds
219 [Test]
220 public void IsFalse_False()
221 {
222 Assert.IsFalse(false, "This test failed at {0}", DateTime.Now.ToShortDateString());
223 }
224
225 //This test fails
226 [Test]
227 public void IsFalse_True()
228 {
229 Assert.IsFalse(true, "This test failed at {0}", DateTime.Now.ToShortDateString());
230 }
231 }
232 }
233 </code>
234 </example>
235 <seealso cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)"/>
236 <seealso cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String)"/>
237 </member>
238 <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
239 <summary>
240 Asserts that a <paramref name="condition"/> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with the given <see cref="!:message"/>.
241 </summary>
242 <param name="condition">The evaluated condition</param>
243 <param name="message">The message printed out upon failure</param>
244 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"><paramref name="condition"/> is not false.
245 </exception>
246 <example>
247 The following code example demonstrates a success (IsFalse_False) and a failed test (IsFalse_True) together with the exception's message
248 <code>
249 using MbUnit.Framework;
250
251 namespace AssertDocTests
252 {
253 [TestFixture]
254 public class Asserts
255 {
256 // This test succeeds
257 [Test]
258 public void IsFalse_False()
259 {
260 Assert.IsFalse(false, "This test failed. Please get it working");
261 }
262
263 //This test fails
264 [Test]
265 public void IsFalse_True()
266 {
267 Assert.IsFalse(true, "This test failed. Please get it working");
268 }
269 }
270 }
271 </code>
272 </example>
273 <seealso cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)"/>
274 <seealso cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])"/>
275 </member>
276 <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)">
277 <summary>
278 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.
279 Use <see cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String)"/> or <see cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])"/> instead to specify a message for the exception
280 </summary>
281 <param name="condition">The evaluated condition</param>
282 <exception cref="T:MbUnit.Core.Exceptions.AssertionException"><paramref name="condition"/> is not false.
283 </exception>
284 <example>
285 The following code example demonstrates a success (IsFalse_False) and a failed test (IsFalse_True) together with the exception's message
286 <code>
287 using MbUnit.Framework;
288
289 namespace AssertDocTests
290 {
291 [TestFixture]
292 public class Asserts
293 {
294 // This test succeeds
295 [Test]
296 public void IsFalse_False()
297 {
298 Assert.IsFalse(true);
299 }
300
301 //This test fails
302 [Test]
303 public void IsFalse_True()
304 {
305 Assert.IsFalse(false);
306 }
307 }
308 }
309 </code>
310 </example>
311 <seealso cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)"/>
312 <seealso cref="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])"/>
313 </member>
314 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
315 <summary>
316 Verifies that two doubles, <paramref name="expected"/> and <paramref name="actual"/>,
317 are equal considering a <paramref name="delta"/>. If the
318 expected value is infinity then the delta value is ignored. If
319 they are not equals then an <see cref="!:NotEqualsAssertionException"/> is
320 thrown with the given <paramref name="message"/>.
321 </summary>
322 <param name="expected">The expected value</param>
323 <param name="actual">The actual value</param>
324 <param name="delta">The maximum acceptable difference between <paramref name="expected"/> and <paramref name="actual"/></param>
325 <param name="message">The message printed out upon failure</param>
326 <exception cref="T:System.ArgumentException"><paramref name="delta"/> has been given a negative value.</exception>
327 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"><paramref name="expected"/> and <paramref name="actual"/>
328 are not values within the given <paramref name="delta"/>.</exception>
329 <example>
330 The following example demonstrates Assert.AreEquals using a different variety of finite and infinite values
331 <code>
332 using MbUnit.Framework;
333 namespace AssertDocTests
334 {
335 [TestFixture]
336 public class AreEqualTests
337 {
338 // This test passes
339 [Test]
340 public void AreEqual_SameValues()
341 {
342 Assert.AreEqual(1.0d, 1.0d, 0.0d, "These values are not equal");
343 }
344
345 //This test passes
346 [Test]
347 public void AreEqual_ValuesWithinDelta()
348 {
349 Assert.AreEqual(1.0d, 1.1d, 0.2d, "These values are not equal");
350 }
351
352 //This test fails with a NotEqualAssertionException
353 [Test]
354 public void AreEqual_ValuesNotWithinDelta()
355 {
356 Assert.AreEqual(1.0d, 2.0d, 0.2d, "These values are not equal");
357 }
358
359 //This test fails with a NotEqualAssertionException
360 [Test]
361 public void AreEqual_OneValueIsInfinity()
362 {
363 Assert.AreEqual(double.PositiveInfinity, double.MaxValue, 1.0d, "These values are not equal");
364 }
365
366 //This test passes
367 [Test]
368 public void AreEqual_BothValuesSameInfinity()
369 {
370 Assert.AreEqual(double.PositiveInfinity, double.PositiveInfinity, 1.0d, "These values are not equal");
371 }
372
373 //This test fails with a NotEqualAssertionException
374 [Test]
375 public void AreEqual_DifferentValuesOfInfinity()
376 {
377 Assert.AreEqual(double.PositiveInfinity, double.NegativeInfinity, 0.0d, "These values are not equal");
378 }
379
380 //This test fails with a ArgumentException
381 [Test]
382 public void AreEqual_NegativeDelta()
383 {
384 Assert.AreEqual(1.0d, 1.0d, -0.1d, "These values are not equal");
385 }
386 }
387 }
388 </code>
389 </example>
390 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)"/>
391 <seealso cref="!:AreEqual(double,double,double,string,object[]"/>
392 </member>
393 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
394 <summary>
395 Verifies that two doubles, <paramref name="expected"/> and <paramref name="actual"/>, are equal considering a <paramref name="delta"/>. If the
396 expected value is infinity then the delta value is ignored. If
397 they are not equals then an <see cref="!:NotEqualsAssertionException"/> is
398 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.
399 </summary>
400 <param name="expected">The expected value</param>
401 <param name="actual">The actual value</param>
402 <param name="delta">The maximum acceptable difference between <paramref name="expected"/> and <paramref name="actual"/></param>
403 <exception cref="T:System.ArgumentException"><paramref name="delta"/> has been given a negative value.</exception>
404 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"><paramref name="expected"/> and <paramref name="actual"/> are not values within the given <paramref name="delta"/>.</exception>
405 <example>
406 The following example demonstrates Assert.AreEquals using a different variety of finite and infinite values
407 <code>
408 using MbUnit.Framework;
409 namespace AssertDocTests
410 {
411 [TestFixture]
412 public class AreEqualTests
413 {
414 // This test passes
415 [Test]
416 public void AreEqual_SameValues()
417 {
418 Assert.AreEqual(1.0d, 1.0d, 0.0d);
419 }
420
421 //This test passes
422 [Test]
423 public void AreEqual_ValuesWithinDelta()
424 {
425 Assert.AreEqual(1.0d, 1.1d, 0.2d);
426 }
427
428 //This test fails with a NotEqualAssertionException
429 [Test]
430 public void AreEqual_ValuesNotWithinDelta()
431 {
432 Assert.AreEqual(1.0d, 2.0d, 0.2d);
433 }
434
435 //This test fails with a NotEqualAssertionException
436 [Test]
437 public void AreEqual_OneValueIsInfinity()
438 {
439 Assert.AreEqual(double.PositiveInfinity, double.MaxValue, 1.0d);
440 }
441
442 //This test passes
443 [Test]
444 public void AreEqual_BothValuesSameInfinity()
445 {
446 Assert.AreEqual(double.PositiveInfinity, double.PositiveInfinity, 1.0d);
447 }
448
449 //This test fails with a NotEqualAssertionException
450 [Test]
451 public void AreEqual_DifferentValuesOfInfinity()
452 {
453 Assert.AreEqual(double.PositiveInfinity, double.NegativeInfinity, 0.0d);
454 }
455
456 //This test fails with an ArgumentException
457 [Test]
458 public void AreEqual_NegativeDelta()
459 {
460 Assert.AreEqual(1.0d, 1.0d, -0.1d);
461 }
462 }
463 }
464 </code>
465 </example>
466 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)"/>
467 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])"/>
468 </member>
469 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
470 <summary>
471 Verifies that two doubles, <paramref name="expected"/> and <paramref name="actual"/>, are equal considering a <paramref name="delta"/>. If the
472 expected value is infinity then the delta value is ignored. If
473 they are not equals then an <see cref="!:NotEqualsAssertionException"/> is thrown
474 with a message defined via <paramref name="format"/> and <paramref name="args"/>
475 through <see cref="!:http://msdn2.microsoft.com/en-gb/library/b1csw23d.aspx">String.Format()</see>.
476 </summary>
477 <param name="expected">The expected value</param>
478 <param name="actual">The actual value</param>
479 <param name="delta">The maximum acceptable difference between <paramref name="expected"/> and <paramref name="actual"/></param>
480 <param name="format">A <see cref="!:http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format String</see></param>
481 <param name="args">An <see cref="T:System.Object"/> array containing zero or more objects to format.</param>
482 <exception cref="T:System.ArgumentException"><paramref name="delta"/> has been given a negative value.</exception>
483 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"><paramref name="expected"/> and <paramref name="actual"/> are not values within the given <paramref name="delta"/>.Exception message is generated through
484 <paramref name="format"/> and <paramref name="args"/>.</exception>
485 <example>
486 The following example demonstrates Assert.AreEquals using a different variety of finite and infinite values
487 <code>
488 using MbUnit.Framework;
489 namespace AssertDocTests
490 {
491 [TestFixture]
492 public class AreEqualTests
493 {
494 // This test passes
495 [Test]
496 public void AreEqual_SameValues()
497 {
498 Assert.AreEqual(1.0d, 1.0d, 0.0d, "Test failed at {0}", DateTime.Now.ToString());
499 }
500
501 //This test passes
502 [Test]
503 public void AreEqual_ValuesWithinDelta()
504 {
505 Assert.AreEqual(1.0d, 1.1d, 0.2d, "Test failed at {0}", DateTime.Now.ToString());
506 }
507
508 //This test fails with a NotEqualAssertionException
509 [Test]
510 public void AreEqual_ValuesNotWithinDelta()
511 {
512 Assert.AreEqual(1.0d, 2.0d, 0.2d, "Test failed at {0}", DateTime.Now.ToString());
513 }
514
515 //This test fails with a NotEqualAssertionException
516 [Test]
517 public void AreEqual_OneValueIsInfinity()
518 {
519 Assert.AreEqual(double.PositiveInfinity, double.MaxValue, 1.0d, "Test failed at {0}", DateTime.Now.ToString());
520 }
521
522 //This test passes
523 [Test]
524 public void AreEqual_BothValuesSameInfinity()
525 {
526 Assert.AreEqual(double.PositiveInfinity, double.PositiveInfinity, 1.0d, "Test failed at {0}", DateTime.Now.ToString());
527 }
528
529 //This test fails with a NotEqualAssertionException
530 [Test]
531 public void AreEqual_DifferentValuesOfInfinity()
532 {
533 Assert.AreEqual(double.PositiveInfinity, double.NegativeInfinity, 0.0d, "Test failed at {0}", DateTime.Now.ToString());
534 }
535
536 //This test fails with an ArgumentException
537 [Test]
538 public void AreEqual_NegativeDelta()
539 {
540 Assert.AreEqual(1.0d, 1.0d, -0.1d, "Test failed at {0}", DateTime.Now.ToString());
541 }
542 }
543 }
544 </code>
545 </example>
546 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)"/>
547 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)"/>
548 </member>
549 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)" -->
550 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
551 <summary>
552 Verifies that two floats, <paramref name="expected"/> and <paramref name="actual"/>, are equal considering a <paramref name="delta"/>. If the
553 <paramref name="expected"/> value is infinity then the <paramref name="delta"/> value is ignored. If
554 they are not equals then an <see cref="!:NotEqualsAssertionException"/> is thrown
555 with a message defined via <paramref name="format"/> and <paramref name="args"/>
556 through <see cref="!:http://msdn2.microsoft.com/en-gb/library/b1csw23d.aspx">String.Format()</see>.
557 </summary>
558 <param name="expected">The expected value</param>
559 <param name="actual">The actual value</param>
560 <param name="delta">The maximum acceptable difference between <paramref name="expected"/> and <paramref name="actual"/></param>
561 <param name="format">A <see cref="!:http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format String</see></param>
562 <param name="args">An <see cref="T:System.Object"/> array containing zero or more objects to format.</param>
563 <exception cref="T:System.ArgumentException"><paramref name="delta"/> has been given a negative value.</exception>
564 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"><paramref name="expected"/> and <paramref name="actual"/> are not values within the given <paramref name="delta"/>.
565 Exception message is generated through <paramref name="format"/> and <paramref name="args"/>.</exception>
566 <example>
567 The following example demonstrates Assert.AreEquals using a different variety of finite and infinite values
568 <code>
569 using MbUnit.Framework;
570
571 namespace AssertDocTests
572 {
573 [TestFixture]
574 public class AreEqualTests
575 {
576 // This test passes
577 [Test]
578 public void AreEqual_SameValues()
579 {
580 Assert.AreEqual(1.0f, 1.0f, 0.0f, "Test failed at {0}", DateTime.Now.ToString());
581 }
582
583 //This test passes
584 [Test]
585 public void AreEqual_ValuesWithinDelta()
586 {
587 Assert.AreEqual(1.0f, 1.1f, 0.2f, "Test failed at {0}", DateTime.Now.ToString());
588 }
589
590 //This test fails with a NotEqualAssertionException
591 [Test]
592 public void AreEqual_ValuesNotWithinDelta()
593 {
594 Assert.AreEqual(1.0f, 2.0f, 0.2f, "Test failed at {0}", DateTime.Now.ToString());
595 }
596
597 //This test fails with a NotEqualAssertionException
598 [Test]
599 public void AreEqual_OneValueIsInfinity()
600 {
601 Assert.AreEqual(float.PositiveInfinity, float.MaxValue, 1.0d, "Test failed at {0}", DateTime.Now.ToString());
602 }
603
604 //This test passes
605 [Test]
606 public void AreEqual_BothValuesSameInfinity()
607 {
608 Assert.AreEqual(float.PositiveInfinity, float.PositiveInfinity, 1.0d, "Test failed at {0}", DateTime.Now.ToString());
609 }
610
611 //This test fails with a NotEqualAssertionException
612 [Test]
613 public void AreEqual_DifferentValuesOfInfinity()
614 {
615 Assert.AreEqual(float.PositiveInfinity, float.NegativeInfinity, 0.0d, "Test failed at {0}", DateTime.Now.ToString());
616 }
617
618 //This test fails with a ArgumentException
619 [Test]
620 public void AreEqual_NegativeDelta()
621 {
622 Assert.AreEqual(1.0f, 1.0f, -0.1f, "Test failed at {0}", DateTime.Now.ToString());
623 }
624 }
625 }
626 </code>
627 </example>
628 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)"/>
629 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)"/>
630 </member>
631 <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
632 <summary>
633 Verifies that two floats, <paramref name="expected"/> and <paramref name="actual"/>,
634 are equal considering a <paramref name="delta"/>. If the
635 <paramref name="expected"/> value is infinity then the <paramref name="delta"/> value is ignored. If
636 they are not equals then an <see cref="!:NotEqualsAssertionException"/> is thrown.
637 </summary>
638 <param name="expected">The expected value</param>
639 <param name="actual">The actual value</param>
640 <param name="delta">The maximum acceptable difference between <paramref name="expected"/> and <paramref name="actual"/></param>
641 <exception cref="T:System.ArgumentException"><paramref name="delta"/> has been given a negative value.</exception>
642 <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"><paramref name="expected"/> and <paramref name="actual"/>
643 are not values within the given <paramref name="delta"/>.</exception>
644 <example>
645 The following example demonstrates Assert.AreEquals using a different variety of finite and infinite values
646 <code>
647 using MbUnit.Framework;
648
649 namespace AssertDocTests
650 {
651 [TestFixture]
652 public class AreEqualTests
653 {
654 // This test passes
655 [Test]
656 public void AreEqual_SameValues()
657 {
658 Assert.AreEqual(1.0f, 1.0f, 0.0f);
659 }
660
661 //This test passes
662 [Test]
663 public void AreEqual_ValuesWithinDelta()
664 {
665 Assert.AreEqual(1.0f, 1.1f, 0.2f);
666 }
667
668 //This test fails with a NotEqualAssertionException
669 [Test]
670 public void AreEqual_ValuesNotWithinDelta()
671 {
672 Assert.AreEqual(1.0f, 2.0f, 0.2f);
673 }
674
675 //This test fails with a NotEqualAssertionException
676 [Test]
677 public void AreEqual_OneValueIsInfinity()
678 {
679 Assert.AreEqual(float.PositiveInfinity, float.MaxValue, 1.0d);
680 }
681
682 //This test passes
683 [Test]
684 public void AreEqual_BothValuesSameInfinity()
685 {
686 Assert.AreEqual(float.PositiveInfinity, float.PositiveInfinity, 1.0d);
687 }
688
689 //This test fails with a NotEqualAssertionException
690 [Test]
691 public void AreEqual_DifferentValuesOfInfinity()
692 {
693 Assert.AreEqual(float.PositiveInfinity, float.NegativeInfinity, 0.0d);
694 }
695
696 //This test fails with a ArgumentException
697 [Test]
698 public void AreEqual_NegativeDelta()
699 {
700 Assert.AreEqual(1.0f, 1.0f, -0.1f);
701 }
702 }
703 }
704 </code>
705 </example>
706 <seealso cref="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)"/>
707 <seealso cref="!:AreEqual(float,float,float,string,object[]"/>
708 </member>
709 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)" -->
710 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])" -->
711 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)" -->
712 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)" -->
713 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])" -->
714 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)" -->
715 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])" -->
716 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)" -->
717 <!-- Badly formed XML comment ignored for member "M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)" -->
718 <member name="M:MbUnit.Framework.Assert.AreValueEqual(System.Reflection.PropertyInfo,System.Object,System.Object,System.Object[])">
719 <summary>
720 Verifies that the value of the property described by <paramref name="pi"/> is the same
721 in both ojects.
722 </summary>
723 <param name="pi">
724 Property describing the value to test
725 </param>
726 <param name="expected">
727 Reference object
728 </param>
729 <param name="actual">
730 Actual object
731 </param>
732 <param name="indices">
733 Index of the property.
734 </param>
735 </member>
736 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
737 <summary>
738 Asserts that two objects are not equal. If they are equal
739 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
740 </summary>
741 <param name="expected">The expected object</param>
742 <param name="actual">The actual object</param>
743 <param name="message">The message to be displayed when the two objects are the same object.</param>
744 <param name="args">Arguments to be used in formatting the message</param>
745 </member>
746 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
747 <summary>
748 Asserts that two objects are not equal. If they are equal
749 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
750 </summary>
751 <param name="expected">The expected object</param>
752 <param name="actual">The actual object</param>
753 <param name="message">The message to be displayed when the objects are the same</param>
754 </member>
755 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
756 <summary>
757 Asserts that two objects are not equal. If they are equal
758 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
759 </summary>
760 <param name="expected">The expected object</param>
761 <param name="actual">The actual object</param>
762 </member>
763 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
764 <summary>
765 Asserts that two ints are not equal. If they are equal
766 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
767 </summary>
768 <param name="expected">The expected object</param>
769 <param name="actual">The actual object</param>
770 <param name="message">The message to be displayed when the two objects are the same object.</param>
771 <param name="args">Arguments to be used in formatting the message</param>
772 </member>
773 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
774 <summary>
775 Asserts that two ints are not equal. If they are equal
776 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
777 </summary>
778 <param name="expected">The expected object</param>
779 <param name="actual">The actual object</param>
780 <param name="message">The message to be displayed when the objects are the same</param>
781 </member>
782 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
783 <summary>
784 Asserts that two ints are not equal. If they are equal
785 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
786 </summary>
787 <param name="expected">The expected object</param>
788 <param name="actual">The actual object</param>
789 </member>
790 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
791 <summary>
792 Asserts that two uints are not equal. If they are equal
793 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
794 </summary>
795 <param name="expected">The expected object</param>
796 <param name="actual">The actual object</param>
797 <param name="message">The message to be displayed when the two objects are the same object.</param>
798 <param name="args">Arguments to be used in formatting the message</param>
799 </member>
800 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
801 <summary>
802 Asserts that two uints are not equal. If they are equal
803 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
804 </summary>
805 <param name="expected">The expected object</param>
806 <param name="actual">The actual object</param>
807 <param name="message">The message to be displayed when the objects are the same</param>
808 </member>
809 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
810 <summary>
811 Asserts that two uints are not equal. If they are equal
812 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
813 </summary>
814 <param name="expected">The expected object</param>
815 <param name="actual">The actual object</param>
816 </member>
817 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
818 <summary>
819 Asserts that two decimals are not equal. If they are equal
820 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
821 </summary>
822 <param name="expected">The expected object</param>
823 <param name="actual">The actual object</param>
824 <param name="message">The message to be displayed when the two objects are the same object.</param>
825 <param name="args">Arguments to be used in formatting the message</param>
826 </member>
827 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
828 <summary>
829 Asserts that two decimals are not equal. If they are equal
830 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
831 </summary>
832 <param name="expected">The expected object</param>
833 <param name="actual">The actual object</param>
834 <param name="message">The message to be displayed when the objects are the same</param>
835 </member>
836 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
837 <summary>
838 Asserts that two decimals are not equal. If they are equal
839 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
840 </summary>
841 <param name="expected">The expected object</param>
842 <param name="actual">The actual object</param>
843 </member>
844 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
845 <summary>
846 Asserts that two floats are not equal. If they are equal
847 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
848 </summary>
849 <param name="expected">The expected object</param>
850 <param name="actual">The actual object</param>
851 <param name="message">The message to be displayed when the two objects are the same object.</param>
852 <param name="args">Arguments to be used in formatting the message</param>
853 </member>
854 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
855 <summary>
856 Asserts that two floats are not equal. If they are equal
857 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
858 </summary>
859 <param name="expected">The expected object</param>
860 <param name="actual">The actual object</param>
861 <param name="message">The message to be displayed when the objects are the same</param>
862 </member>
863 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
864 <summary>
865 Asserts that two floats are not equal. If they are equal
866 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
867 </summary>
868 <param name="expected">The expected object</param>
869 <param name="actual">The actual object</param>
870 </member>
871 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
872 <summary>
873 Asserts that two doubles are not equal. If they are equal
874 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
875 </summary>
876 <param name="expected">The expected object</param>
877 <param name="actual">The actual object</param>
878 <param name="message">The message to be displayed when the two objects are the same object.</param>
879 <param name="args">Arguments to be used in formatting the message</param>
880 </member>
881 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
882 <summary>
883 Asserts that two doubles are not equal. If they are equal
884 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
885 </summary>
886 <param name="expected">The expected object</param>
887 <param name="actual">The actual object</param>
888 <param name="message">The message to be displayed when the objects are the same</param>
889 </member>
890 <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
891 <summary>
892 Asserts that two doubles are not equal. If they are equal
893 an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
894 </summary>
895 <param name="expected">The expected object</param>
896 <param name="actual">The actual object</param>
897 </member>
898 <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
899 <summary>
900 Verifies that the object that is passed in is not equal to <code>null</code>
901 If the object is not <code>null</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
902 is thrown.
903 </summary>
904 <param name="anObject">The object that is to be tested</param>
905 <param name="format">
906 The format of the message to display if the assertion fails,
907 containing zero or more format items.
908 </param>
909 <param name="args">
910 An <see cref="T:System.Object"/> array containing zero or more objects to format.
911 </param>
912 <remarks>
913 <para>
914 The error message is formatted using <see cref="M:System.String.Format(System.String,System.Object[])"/>.
915 </para>
916 </remarks>
917 </member>
918 <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
919 <summary>
920 Verifies that the object that is passed in is not equal to <code>null</code>
921 If the object is <code>null</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
922 is thrown with the message that is passed in.
923 </summary>
924 <param name="anObject">The object that is to be tested</param>
925 <param name="message">The message to initialize the <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with.</param>
926 </member>
927 <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object)">
928 <summary>
929 Verifies that the object that is passed in is not equal to <code>null</code>
930 If the object is not <code>null</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
931 is thrown.
932 </summary>
933 <param name="anObject">The object that is to be tested</param>
934 </member>
935 <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
936 <summary>
937 Verifies that the object that is passed in is equal to <code>null</code>
938 If the object is <code>null</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
939 is thrown.
940 </summary>
941 <param name="anObject">The object that is to be tested</param>
942 <param name="format">
943 The format of the message to display if the assertion fails,
944 containing zero or more format items.
945 </param>
946 <param name="args">
947 An <see cref="T:System.Object"/> array containing zero or more objects to format.
948 </param>
949 <remarks>
950 <para>
951 The error message is formatted using <see cref="M:System.String.Format(System.String,System.Object[])"/>.
952 </para>
953 </remarks>
954 </member>
955 <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String)">
956 <summary>
957 Verifies that the object that is passed in is equal to <code>null</code>
958 If the object is <code>null</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
959 is thrown with the message that is passed in.
960 </summary>
961 <param name="anObject">The object that is to be tested</param>
962 <param name="message">The message to initialize the <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with.</param>
963 </member>
964 <member name="M:MbUnit.Framework.Assert.IsNull(System.Object)">
965 <summary>
966 Verifies that the object that is passed in is equal to <code>null</code>
967 If the object is <code>null</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
968 is thrown.
969 </summary>
970 <param name="anObject">The object that is to be tested</param>
971 </member>
972 <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
973 <summary>
974 Asserts that two objects refer to the same object. If they
975 are not the same an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
976 </summary>
977 <param name="message">The message to be printed when the two objects are not the same object.</param>
978 <param name="expected">The expected object</param>
979 <param name="actual">The actual object</param>
980 </member>
981 <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
982 <summary>
983 Asserts that two objects refer to the same object. If they
984 are not the same an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
985 </summary>
986 <param name="expected">The expected object</param>
987 <param name="actual">The actual object</param>
988 <param name="format">
989 The format of the message to display if the assertion fails,
990 containing zero or more format items.
991 </param>
992 <param name="args">
993 An <see cref="T:System.Object"/> array containing zero or more objects to format.
994 </param>
995 <remarks>
996 <para>
997 The error message is formatted using <see cref="M:System.String.Format(System.String,System.Object[])"/>.
998 </para>
999 </remarks>
1000 </member>
1001 <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object)">
1002 <summary>
1003 Asserts that two objects refer to the same object. If they
1004 are not the same an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1005 </summary>
1006 <param name="expected">The expected object</param>
1007 <param name="actual">The actual object</param>
1008 </member>
1009 <member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
1010 <summary>
1011 Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with the message that is
1012 passed in. This is used by the other Assert functions.
1013 </summary>
1014 <param name="format">
1015 The format of the message to initialize the <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with.
1016 </param>
1017 <param name="args">
1018 An <see cref="T:System.Object"/> array containing zero or more objects to format.
1019 </param>
1020 <remarks>
1021 <para>
1022 The error message is formatted using <see cref="M:System.String.Format(System.String,System.Object[])"/>.
1023 </para>
1024 </remarks>
1025 </member>
1026 <member name="M:MbUnit.Framework.Assert.Fail(System.String)">
1027 <summary>
1028 Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with the message that is
1029 passed in. This is used by the other Assert functions.
1030 </summary>
1031 <param name="message">The message to initialize the <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with.</param>
1032 </member>
1033 <member name="M:MbUnit.Framework.Assert.Fail">
1034 <summary>
1035 Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> with the message that is
1036 passed in. This is used by the other Assert functions.
1037 </summary>
1038 </member>
1039 <member name="M:MbUnit.Framework.Assert.Ignore(System.String,System.Object[])">
1040 <summary>
1041 Makes the current test ignored using <see cref="M:System.String.Format(System.String,System.Object[])"/> like
1042 formatting
1043 </summary>
1044 <param name="format"></param>
1045 <param name="args"></param>
1046 </member>
1047 <member name="M:MbUnit.Framework.Assert.Ignore(System.String)">
1048 <summary>
1049 Makes the current test ignored using <see cref="M:System.String.Format(System.String,System.Object[])"/> like
1050 formatting
1051 </summary>
1052 <param name="message"></param>
1053 </member>
1054 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32)">
1055 <summary>
1056 Verifies that <paramref name="left"/> is strictly lower than
1057 <paramref name="right"/>.
1058 </summary>
1059 </member>
1060 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String)">
1061 <summary>
1062 Verifies that <paramref name="left"/> is strictly lower than
1063 <paramref name="right"/>.
1064 </summary>
1065 </member>
1066 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String,System.Object[])">
1067 <summary>
1068 Verifies that <paramref name="left"/> is strictly lower than
1069 <paramref name="right"/>.
1070 </summary>
1071 </member>
1072 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16)">
1073 <summary>
1074 Verifies that <paramref name="left"/> is strictly lower than
1075 <paramref name="right"/>.
1076 </summary>
1077 </member>
1078 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String)">
1079 <summary>
1080 Verifies that <paramref name="left"/> is strictly lower than
1081 <paramref name="right"/>.
1082 </summary>
1083 </member>
1084 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String,System.Object[])">
1085 <summary>
1086 Verifies that <paramref name="left"/> is strictly lower than
1087 <paramref name="right"/>.
1088 </summary>
1089 </member>
1090 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte)">
1091 <summary>
1092 Verifies that <paramref name="left"/> is strictly lower than
1093 <paramref name="right"/>.
1094 </summary>
1095 </member>
1096 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String)">
1097 <summary>
1098 Verifies that <paramref name="left"/> is strictly lower than
1099 <paramref name="right"/>.
1100 </summary>
1101 </member>
1102 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String,System.Object[])">
1103 <summary>
1104 Verifies that <paramref name="left"/> is strictly lower than
1105 <paramref name="right"/>.
1106 </summary>
1107 </member>
1108 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64)">
1109 <summary>
1110 Verifies that <paramref name="left"/> is strictly lower than
1111 <paramref name="right"/>.
1112 </summary>
1113 </member>
1114 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String)">
1115 <summary>
1116 Verifies that <paramref name="left"/> is strictly lower than
1117 <paramref name="right"/>.
1118 </summary>
1119 </member>
1120 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String,System.Object[])">
1121 <summary>
1122 Verifies that <paramref name="left"/> is strictly lower than
1123 <paramref name="right"/>.
1124 </summary>
1125 </member>
1126 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double)">
1127 <summary>
1128 Verifies that <paramref name="left"/> is strictly lower than
1129 <paramref name="right"/>.
1130 </summary>
1131 </member>
1132 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String)">
1133 <summary>
1134 Verifies that <paramref name="left"/> is strictly lower than
1135 <paramref name="right"/>.
1136 </summary>
1137 </member>
1138 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String,System.Object[])">
1139 <summary>
1140 Verifies that <paramref name="left"/> is strictly lower than
1141 <paramref name="right"/>.
1142 </summary>
1143 </member>
1144 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single)">
1145 <summary>
1146 Verifies that <paramref name="left"/> is strictly lower than
1147 <paramref name="right"/>.
1148 </summary>
1149 </member>
1150 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String)">
1151 <summary>
1152 Verifies that <paramref name="left"/> is strictly lower than
1153 <paramref name="right"/>.
1154 </summary>
1155 </member>
1156 <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String,System.Object[])">
1157 <summary>
1158 Verifies that <paramref name="left"/> is strictly lower than
1159 <paramref name="right"/>.
1160 </summary>
1161 </member>
1162 <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable)">
1163 <summary>
1164 Verifies that <paramref name="left"/> is strictly lower than
1165 <paramref name="right"/>.
1166 </summary>
1167 </member>
1168 <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String)">
1169 <summary>
1170 Verifies that <paramref name="left"/> is strictly lower than
1171 <paramref name="right"/>.
1172 </summary>
1173 </member>
1174 <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1175 <summary>
1176 Verifies that <paramref name="left"/> is strictly lower than
1177 <paramref name="right"/>.
1178 </summary>
1179 </member>
1180 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32)">
1181 <summary>
1182 Verifies that <paramref name="left"/> is strictly lower than
1183 <paramref name="right"/>.
1184 </summary>
1185 </member>
1186 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String)">
1187 <summary>
1188 Verifies that <paramref name="left"/> is strictly lower than
1189 <paramref name="right"/>.
1190 </summary>
1191 </member>
1192 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
1193 <summary>
1194 Verifies that <paramref name="left"/> is strictly lower than
1195 <paramref name="right"/>.
1196 </summary>
1197 </member>
1198 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16)">
1199 <summary>
1200 Verifies that <paramref name="left"/> is strictly lower than
1201 <paramref name="right"/>.
1202 </summary>
1203 </member>
1204 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String)">
1205 <summary>
1206 Verifies that <paramref name="left"/> is strictly lower than
1207 <paramref name="right"/>.
1208 </summary>
1209 </member>
1210 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
1211 <summary>
1212 Verifies that <paramref name="left"/> is strictly lower than
1213 <paramref name="right"/>.
1214 </summary>
1215 </member>
1216 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte)">
1217 <summary>
1218 Verifies that <paramref name="left"/> is strictly lower than
1219 <paramref name="right"/>.
1220 </summary>
1221 </member>
1222 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String)">
1223 <summary>
1224 Verifies that <paramref name="left"/> is strictly lower than
1225 <paramref name="right"/>.
1226 </summary>
1227 </member>
1228 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
1229 <summary>
1230 Verifies that <paramref name="left"/> is strictly lower than
1231 <paramref name="right"/>.
1232 </summary>
1233 </member>
1234 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64)">
1235 <summary>
1236 Verifies that <paramref name="left"/> is strictly lower than
1237 <paramref name="right"/>.
1238 </summary>
1239 </member>
1240 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String)">
1241 <summary>
1242 Verifies that <paramref name="left"/> is strictly lower than
1243 <paramref name="right"/>.
1244 </summary>
1245 </member>
1246 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
1247 <summary>
1248 Verifies that <paramref name="left"/> is strictly lower than
1249 <paramref name="right"/>.
1250 </summary>
1251 </member>
1252 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double)">
1253 <summary>
1254 Verifies that <paramref name="left"/> is strictly lower than
1255 <paramref name="right"/>.
1256 </summary>
1257 </member>
1258 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String)">
1259 <summary>
1260 Verifies that <paramref name="left"/> is strictly lower than
1261 <paramref name="right"/>.
1262 </summary>
1263 </member>
1264 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String,System.Object[])">
1265 <summary>
1266 Verifies that <paramref name="left"/> is strictly lower than
1267 <paramref name="right"/>.
1268 </summary>
1269 </member>
1270 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single)">
1271 <summary>
1272 Verifies that <paramref name="left"/> is strictly lower than
1273 <paramref name="right"/>.
1274 </summary>
1275 </member>
1276 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String)">
1277 <summary>
1278 Verifies that <paramref name="left"/> is strictly lower than
1279 <paramref name="right"/>.
1280 </summary>
1281 </member>
1282 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String,System.Object[])">
1283 <summary>
1284 Verifies that <paramref name="left"/> is strictly lower than
1285 <paramref name="right"/>.
1286 </summary>
1287 </member>
1288 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable)">
1289 <summary>
1290 Verifies that <paramref name="left"/> is lower equal than
1291 <paramref name="right"/>.
1292 </summary>
1293 </member>
1294 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String)">
1295 <summary>
1296 Verifies that <paramref name="left"/> is lower equal than
1297 <paramref name="right"/>.
1298 </summary>
1299 </member>
1300 <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1301 <summary>
1302 Verifies that <paramref name="left"/> is lower equal than
1303 <paramref name="right"/>.
1304 </summary>
1305 </member>
1306 <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
1307 <summary>
1308 Verifies that the first value is less than the second
1309 value. If it is not, then an
1310 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1311 </summary>
1312 <param name="arg1">The first value, expected to be less</param>
1313 <param name="arg2">The second value, expected to be greater</param>
1314 <param name="message">The message that will be displayed on failure</param>
1315 <param name="args">Arguments to be used in formatting the message</param>
1316 </member>
1317 <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
1318 <summary>
1319 Verifies that the first value is less than the second
1320 value. If it is not, then an
1321 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1322 </summary>
1323 <param name="arg1">The first value, expected to be less</param>
1324 <param name="arg2">The second value, expected to be greater</param>
1325 <param name="message">The message that will be displayed on failure</param>
1326 </member>
1327 <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32)">
1328 <summary>
1329 Verifies that the first value is less than the second
1330 value. If it is not, then an
1331 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1332 </summary>
1333 <param name="arg1">The first value, expected to be less</param>
1334 <param name="arg2">The second value, expected to be greater</param>
1335 </member>
1336 <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
1337 <summary>
1338 Verifies that the first value is less than the second
1339 value. If it is not, then an
1340 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1341 </summary>
1342 <param name="arg1">The first value, expected to be less</param>
1343 <param name="arg2">The second value, expected to be greater</param>
1344 <param name="message">The message that will be displayed on failure</param>
1345 <param name="args">Arguments to be used in formatting the message</param>
1346 </member>
1347 <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
1348 <summary>
1349 Verifies that the first value is less than the second
1350 value. If it is not, then an
1351 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1352 </summary>
1353 <param name="arg1">The first value, expected to be less</param>
1354 <param name="arg2">The second value, expected to be greater</param>
1355 <param name="message">The message that will be displayed on failure</param>
1356 </member>
1357 <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
1358 <summary>
1359 Verifies that the first value is less than the second
1360 value. If it is not, then an
1361 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1362 </summary>
1363 <param name="arg1">The first value, expected to be less</param>
1364 <param name="arg2">The second value, expected to be greater</param>
1365 </member>
1366 <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
1367 <summary>
1368 Verifies that the first value is less than the second
1369 value. If it is not, then an
1370 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1371 </summary>
1372 <param name="arg1">The first value, expected to be less</param>
1373 <param name="arg2">The second value, expected to be greater</param>
1374 <param name="message">The message that will be displayed on failure</param>
1375 <param name="args">Arguments to be used in formatting the message</param>
1376 </member>
1377 <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
1378 <summary>
1379 Verifies that the first value is less than the second
1380 value. If it is not, then an
1381 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1382 </summary>
1383 <param name="arg1">The first value, expected to be less</param>
1384 <param name="arg2">The second value, expected to be greater</param>
1385 <param name="message">The message that will be displayed on failure</param>
1386 </member>
1387 <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
1388 <summary>
1389 Verifies that the first value is less than the second
1390 value. If it is not, then an
1391 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1392 </summary>
1393 <param name="arg1">The first value, expected to be less</param>
1394 <param name="arg2">The second value, expected to be greater</param>
1395 </member>
1396 <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
1397 <summary>
1398 Verifies that the first value is less than the second
1399 value. If it is not, then an
1400 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1401 </summary>
1402 <param name="arg1">The first value, expected to be less</param>
1403 <param name="arg2">The second value, expected to be greater</param>
1404 <param name="message">The message that will be displayed on failure</param>
1405 <param name="args">Arguments to be used in formatting the message</param>
1406 </member>
1407 <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
1408 <summary>
1409 Verifies that the first value is less than the second
1410 value. If it is not, then an
1411 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1412 </summary>
1413 <param name="arg1">The first value, expected to be less</param>
1414 <param name="arg2">The second value, expected to be greater</param>
1415 <param name="message">The message that will be displayed on failure</param>
1416 </member>
1417 <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64)">
1418 <summary>
1419 Verifies that the first value is less than the second
1420 value. If it is not, then an
1421 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1422 </summary>
1423 <param name="arg1">The first value, expected to be less</param>
1424 <param name="arg2">The second value, expected to be greater</param>
1425 </member>
1426 <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
1427 <summary>
1428 Verifies that the first value is less than the second
1429 value. If it is not, then an
1430 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1431 </summary>
1432 <param name="arg1">The first value, expected to be less</param>
1433 <param name="arg2">The second value, expected to be greater</param>
1434 <param name="message">The message that will be displayed on failure</param>
1435 <param name="args">Arguments to be used in formatting the message</param>
1436 </member>
1437 <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
1438 <summary>
1439 Verifies that the first value is less than the second
1440 value. If it is not, then an
1441 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1442 </summary>
1443 <param name="arg1">The first value, expected to be less</param>
1444 <param name="arg2">The second value, expected to be greater</param>
1445 <param name="message">The message that will be displayed on failure</param>
1446 </member>
1447 <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double)">
1448 <summary>
1449 Verifies that the first value is less than the second
1450 value. If it is not, then an
1451 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1452 </summary>
1453 <param name="arg1">The first value, expected to be less</param>
1454 <param name="arg2">The second value, expected to be greater</param>
1455 </member>
1456 <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
1457 <summary>
1458 Verifies that the first value is less than the second
1459 value. If it is not, then an
1460 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1461 </summary>
1462 <param name="arg1">The first value, expected to be less</param>
1463 <param name="arg2">The second value, expected to be greater</param>
1464 <param name="message">The message that will be displayed on failure</param>
1465 <param name="args">Arguments to be used in formatting the message</param>
1466 </member>
1467 <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
1468 <summary>
1469 Verifies that the first value is less than the second
1470 value. If it is not, then an
1471 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1472 </summary>
1473 <param name="arg1">The first value, expected to be less</param>
1474 <param name="arg2">The second value, expected to be greater</param>
1475 <param name="message">The message that will be displayed on failure</param>
1476 </member>
1477 <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single)">
1478 <summary>
1479 Verifies that the first value is less than the second
1480 value. If it is not, then an
1481 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1482 </summary>
1483 <param name="arg1">The first value, expected to be less</param>
1484 <param name="arg2">The second value, expected to be greater</param>
1485 </member>
1486 <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
1487 <summary>
1488 Verifies that the first value is less than the second
1489 value. If it is not, then an
1490 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1491 </summary>
1492 <param name="arg1">The first value, expected to be less</param>
1493 <param name="arg2">The second value, expected to be greater</param>
1494 <param name="message">The message that will be displayed on failure</param>
1495 <param name="args">Arguments to be used in formatting the message</param>
1496 </member>
1497 <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
1498 <summary>
1499 Verifies that the first value is less than the second
1500 value. If it is not, then an
1501 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1502 </summary>
1503 <param name="arg1">The first value, expected to be less</param>
1504 <param name="arg2">The second value, expected to be greater</param>
1505 <param name="message">The message that will be displayed on failure</param>
1506 </member>
1507 <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
1508 <summary>
1509 Verifies that the first value is less than the second
1510 value. If it is not, then an
1511 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1512 </summary>
1513 <param name="arg1">The first value, expected to be less</param>
1514 <param name="arg2">The second value, expected to be greater</param>
1515 </member>
1516 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32)">
1517 <summary>
1518 Verifies that <paramref name="left"/> is strictly greater than
1519 <paramref name="right"/>.
1520 </summary>
1521 </member>
1522 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String)">
1523 <summary>
1524 Verifies that <paramref name="left"/> is strictly greater than
1525 <paramref name="right"/>.
1526 </summary>
1527 </member>
1528 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String,System.Object[])">
1529 <summary>
1530 Verifies that <paramref name="left"/> is strictly greater than
1531 <paramref name="right"/>.
1532 </summary>
1533 </member>
1534 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16)">
1535 <summary>
1536 Verifies that <paramref name="left"/> is strictly greater than
1537 <paramref name="right"/>.
1538 </summary>
1539 </member>
1540 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String)">
1541 <summary>
1542 Verifies that <paramref name="left"/> is strictly greater than
1543 <paramref name="right"/>.
1544 </summary>
1545 </member>
1546 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String,System.Object[])">
1547 <summary>
1548 Verifies that <paramref name="left"/> is strictly greater than
1549 <paramref name="right"/>.
1550 </summary>
1551 </member>
1552 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte)">
1553 <summary>
1554 Verifies that <paramref name="left"/> is strictly greater than
1555 <paramref name="right"/>.
1556 </summary>
1557 </member>
1558 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String)">
1559 <summary>
1560 Verifies that <paramref name="left"/> is strictly greater than
1561 <paramref name="right"/>.
1562 </summary>
1563 </member>
1564 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String,System.Object[])">
1565 <summary>
1566 Verifies that <paramref name="left"/> is strictly greater than
1567 <paramref name="right"/>.
1568 </summary>
1569 </member>
1570 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64)">
1571 <summary>
1572 Verifies that <paramref name="left"/> is strictly greater than
1573 <paramref name="right"/>.
1574 </summary>
1575 </member>
1576 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String)">
1577 <summary>
1578 Verifies that <paramref name="left"/> is strictly greater than
1579 <paramref name="right"/>.
1580 </summary>
1581 </member>
1582 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String,System.Object[])">
1583 <summary>
1584 Verifies that <paramref name="left"/> is strictly greater than
1585 <paramref name="right"/>.
1586 </summary>
1587 </member>
1588 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double)">
1589 <summary>
1590 Verifies that <paramref name="left"/> is strictly greater than
1591 <paramref name="right"/>.
1592 </summary>
1593 </member>
1594 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String)">
1595 <summary>
1596 Verifies that <paramref name="left"/> is strictly greater than
1597 <paramref name="right"/>.
1598 </summary>
1599 </member>
1600 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String,System.Object[])">
1601 <summary>
1602 Verifies that <paramref name="left"/> is strictly greater than
1603 <paramref name="right"/>.
1604 </summary>
1605 </member>
1606 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single)">
1607 <summary>
1608 Verifies that <paramref name="left"/> is strictly greater than
1609 <paramref name="right"/>.
1610 </summary>
1611 </member>
1612 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String)">
1613 <summary>
1614 Verifies that <paramref name="left"/> is strictly greater than
1615 <paramref name="right"/>.
1616 </summary>
1617 </member>
1618 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String,System.Object[])">
1619 <summary>
1620 Verifies that <paramref name="left"/> is strictly greater than
1621 <paramref name="right"/>.
1622 </summary>
1623 </member>
1624 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable)">
1625 <summary>
1626 Verifies that <paramref name="left"/> is strictly greater than
1627 <paramref name="right"/>.
1628 </summary>
1629 </member>
1630 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String)">
1631 <summary>
1632 Verifies that <paramref name="left"/> is strictly greater than
1633 <paramref name="right"/>.
1634 </summary>
1635 </member>
1636 <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1637 <summary>
1638 Verifies that <paramref name="left"/> is strictly greater than
1639 <paramref name="right"/>.
1640 </summary>
1641 </member>
1642 <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
1643 <summary>
1644 Verifies that the first value is greater than the second
1645 value. If they are not, then an
1646 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1647 </summary>
1648 <param name="arg1">The first value, expected to be greater</param>
1649 <param name="arg2">The second value, expected to be less</param>
1650 <param name="message">The message that will be displayed on failure</param>
1651 <param name="args">Arguments to be used in formatting the message</param>
1652 </member>
1653 <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
1654 <summary>
1655 Verifies that the first value is greater than the second
1656 value. If they are not, then an
1657 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1658 </summary>
1659 <param name="arg1">The first value, expected to be greater</param>
1660 <param name="arg2">The second value, expected to be less</param>
1661 <param name="message">The message that will be displayed on failure</param>
1662 </member>
1663 <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
1664 <summary>
1665 Verifies that the first value is greater than the second
1666 value. If they are not, then an
1667 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1668 </summary>
1669 <param name="arg1">The first value, expected to be greater</param>
1670 <param name="arg2">The second value, expected to be less</param>
1671 </member>
1672 <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
1673 <summary>
1674 Verifies that the first value is greater than the second
1675 value. If they are not, then an
1676 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1677 </summary>
1678 <param name="arg1">The first value, expected to be greater</param>
1679 <param name="arg2">The second value, expected to be less</param>
1680 <param name="message">The message that will be displayed on failure</param>
1681 <param name="args">Arguments to be used in formatting the message</param>
1682 </member>
1683 <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
1684 <summary>
1685 Verifies that the first value is greater than the second
1686 value. If they are not, then an
1687 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1688 </summary>
1689 <param name="arg1">The first value, expected to be greater</param>
1690 <param name="arg2">The second value, expected to be less</param>
1691 <param name="message">The message that will be displayed on failure</param>
1692 </member>
1693 <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
1694 <summary>
1695 Verifies that the first value is greater than the second
1696 value. If they are not, then an
1697 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1698 </summary>
1699 <param name="arg1">The first value, expected to be greater</param>
1700 <param name="arg2">The second value, expected to be less</param>
1701 </member>
1702 <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
1703 <summary>
1704 Verifies that the first value is greater than the second
1705 value. If they are not, then an
1706 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1707 </summary>
1708 <param name="arg1">The first value, expected to be greater</param>
1709 <param name="arg2">The second value, expected to be less</param>
1710 <param name="message">The message that will be displayed on failure</param>
1711 <param name="args">Arguments to be used in formatting the message</param>
1712 </member>
1713 <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
1714 <summary>
1715 Verifies that the first value is greater than the second
1716 value. If they are not, then an
1717 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1718 </summary>
1719 <param name="arg1">The first value, expected to be greater</param>
1720 <param name="arg2">The second value, expected to be less</param>
1721 <param name="message">The message that will be displayed on failure</param>
1722 </member>
1723 <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
1724 <summary>
1725 Verifies that the first value is greater than the second
1726 value. If they are not, then an
1727 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1728 </summary>
1729 <param name="arg1">The first value, expected to be greater</param>
1730 <param name="arg2">The second value, expected to be less</param>
1731 </member>
1732 <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
1733 <summary>
1734 Verifies that the first value is greater than the second
1735 value. If they are not, then an
1736 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1737 </summary>
1738 <param name="arg1">The first value, expected to be greater</param>
1739 <param name="arg2">The second value, expected to be less</param>
1740 <param name="message">The message that will be displayed on failure</param>
1741 <param name="args">Arguments to be used in formatting the message</param>
1742 </member>
1743 <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
1744 <summary>
1745 Verifies that the first value is greater than the second
1746 value. If they are not, then an
1747 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1748 </summary>
1749 <param name="arg1">The first value, expected to be greater</param>
1750 <param name="arg2">The second value, expected to be less</param>
1751 <param name="message">The message that will be displayed on failure</param>
1752 </member>
1753 <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
1754 <summary>
1755 Verifies that the first value is greater than the second
1756 value. If they are not, then an
1757 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1758 </summary>
1759 <param name="arg1">The first value, expected to be greater</param>
1760 <param name="arg2">The second value, expected to be less</param>
1761 </member>
1762 <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
1763 <summary>
1764 Verifies that the first value is greater than the second
1765 value. If they are not, then an
1766 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1767 </summary>
1768 <param name="arg1">The first value, expected to be greater</param>
1769 <param name="arg2">The second value, expected to be less</param>
1770 <param name="message">The message that will be displayed on failure</param>
1771 <param name="args">Arguments to be used in formatting the message</param>
1772 </member>
1773 <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
1774 <summary>
1775 Verifies that the first value is greater than the second
1776 value. If they are not, then an
1777 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1778 </summary>
1779 <param name="arg1">The first value, expected to be greater</param>
1780 <param name="arg2">The second value, expected to be less</param>
1781 <param name="message">The message that will be displayed on failure</param>
1782 </member>
1783 <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double)">
1784 <summary>
1785 Verifies that the first value is greater than the second
1786 value. If they are not, then an
1787 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1788 </summary>
1789 <param name="arg1">The first value, expected to be greater</param>
1790 <param name="arg2">The second value, expected to be less</param>
1791 </member>
1792 <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
1793 <summary>
1794 Verifies that the first value is greater than the second
1795 value. If they are not, then an
1796 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1797 </summary>
1798 <param name="arg1">The first value, expected to be greater</param>
1799 <param name="arg2">The second value, expected to be less</param>
1800 <param name="message">The message that will be displayed on failure</param>
1801 <param name="args">Arguments to be used in formatting the message</param>
1802 </member>
1803 <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
1804 <summary>
1805 Verifies that the first value is greater than the second
1806 value. If they are not, then an
1807 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1808 </summary>
1809 <param name="arg1">The first value, expected to be greater</param>
1810 <param name="arg2">The second value, expected to be less</param>
1811 <param name="message">The message that will be displayed on failure</param>
1812 </member>
1813 <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single)">
1814 <summary>
1815 Verifies that the first value is greater than the second
1816 value. If they are not, then an
1817 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1818 </summary>
1819 <param name="arg1">The first value, expected to be greater</param>
1820 <param name="arg2">The second value, expected to be less</param>
1821 </member>
1822 <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
1823 <summary>
1824 Verifies that the first value is greater than the second
1825 value. If they are not, then an
1826 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1827 </summary>
1828 <param name="arg1">The first value, expected to be greater</param>
1829 <param name="arg2">The second value, expected to be less</param>
1830 <param name="message">The message that will be displayed on failure</param>
1831 <param name="args">Arguments to be used in formatting the message</param>
1832 </member>
1833 <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
1834 <summary>
1835 Verifies that the first value is greater than the second
1836 value. If they are not, then an
1837 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1838 </summary>
1839 <param name="arg1">The first value, expected to be greater</param>
1840 <param name="arg2">The second value, expected to be less</param>
1841 <param name="message">The message that will be displayed on failure</param>
1842 </member>
1843 <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
1844 <summary>
1845 Verifies that the first value is greater than the second
1846 value. If they are not, then an
1847 <see cref="T:MbUnit.Core.Exceptions.AssertionException"/> is thrown.
1848 </summary>
1849 <param name="arg1">The first value, expected to be greater</param>
1850 <param name="arg2">The second value, expected to be less</param>
1851 </member>
1852 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32)">
1853 <summary>
1854 Verifies that <paramref name="left"/> is greater than
1855 <paramref name="right"/>.
1856 </summary>
1857 </member>
1858 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String)">
1859 <summary>
1860 Verifies that <paramref name="left"/> is greater than
1861 <paramref name="right"/>.
1862 </summary>
1863 </member>
1864 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
1865 <summary>
1866 Verifies that <paramref name="left"/> is greater than
1867 <paramref name="right"/>.
1868 </summary>
1869 </member>
1870 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16)">
1871 <summary>
1872 Verifies that <paramref name="left"/> is greater than
1873 <paramref name="right"/>.
1874 </summary>
1875 </member>
1876 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String)">
1877 <summary>
1878 Verifies that <paramref name="left"/> is greater than
1879 <paramref name="right"/>.
1880 </summary>
1881 </member>
1882 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
1883 <summary>
1884 Verifies that <paramref name="left"/> is greater than
1885 <paramref name="right"/>.
1886 </summary>
1887 </member>
1888 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte)">
1889 <summary>
1890 Verifies that <paramref name="left"/> is greater than
1891 <paramref name="right"/>.
1892 </summary>
1893 </member>
1894 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String)">
1895 <summary>
1896 Verifies that <paramref name="left"/> is greater than
1897 <paramref name="right"/>.
1898 </summary>
1899 </member>
1900 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
1901 <summary>
1902 Verifies that <paramref name="left"/> is greater than
1903 <paramref name="right"/>.
1904 </summary>
1905 </member>
1906 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64)">
1907 <summary>
1908 Verifies that <paramref name="left"/> is greater than
1909 <paramref name="right"/>.
1910 </summary>
1911 </member>
1912 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String)">
1913 <summary>
1914 Verifies that <paramref name="left"/> is greater than
1915 <paramref name="right"/>.
1916 </summary>
1917 </member>
1918 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
1919 <summary>
1920 Verifies that <paramref name="left"/> is greater than
1921 <paramref name="right"/>.
1922 </summary>
1923 </member>
1924 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double)">
1925 <summary>
1926 Verifies that <paramref name="left"/> is greater than
1927 <paramref name="right"/>.
1928 </summary>
1929 </member>
1930 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String)">
1931 <summary>
1932 Verifies that <paramref name="left"/> is greater than
1933 <paramref name="right"/>.
1934 </summary>
1935 </member>
1936 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String,System.Object[])">
1937 <summary>
1938 Verifies that <paramref name="left"/> is greater than
1939 <paramref name="right"/>.
1940 </summary>
1941 </member>
1942 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single)">
1943 <summary>
1944 Verifies that <paramref name="left"/> is greater than
1945 <paramref name="right"/>.
1946 </summary>
1947 </member>
1948 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String)">
1949 <summary>
1950 Verifies that <paramref name="left"/> is greater than
1951 <paramref name="right"/>.
1952 </summary>
1953 </member>
1954 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String,System.Object[])">
1955 <summary>
1956 Verifies that <paramref name="left"/> is greater than
1957 <paramref name="right"/>.
1958 </summary>
1959 </member>
1960 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable)">
1961 <summary>
1962 Verifies that <paramref name="left"/> is strictly greater than
1963 <paramref name="right"/>.
1964 </summary>
1965 </member>
1966 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String)">
1967 <summary>
1968 Verifies that <paramref name="left"/> is strictly greater than
1969 <paramref name="right"/>.
1970 </summary>
1971 </member>
1972 <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1973 <summary>
1974 Verifies that <paramref name="left"/> is strictly greater than
1975 <paramref name="right"/>.
1976 </summary>
1977 </member>
1978 <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32)">
1979 <summary>
1980 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
1981 <paramref name="right"/>.
1982 </summary>
1983 </member>
1984 <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String)">
1985 <summary>
1986 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
1987 <paramref name="right"/>.
1988 </summary>
1989 </member>
1990 <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String,System.Object[])">
1991 <summary>
1992 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
1993 <paramref name="right"/>.
1994 </summary>
1995 </member>
1996 <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16)">
1997 <summary>
1998 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
1999 <paramref name="right"/>.
2000 </summary>
2001 </member>
2002 <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String)">
2003 <summary>
2004 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2005 <paramref name="right"/>.
2006 </summary>
2007 </member>
2008 <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String,System.Object[])">
2009 <summary>
2010 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2011 <paramref name="right"/>.
2012 </summary>
2013 </member>
2014 <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte)">
2015 <summary>
2016 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2017 <paramref name="right"/>.
2018 </summary>
2019 </member>
2020 <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String)">
2021 <summary>
2022 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2023 <paramref name="right"/>.
2024 </summary>
2025 </member>
2026 <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String,System.Object[])">
2027 <summary>
2028 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2029 <paramref name="right"/>.
2030 </summary>
2031 </member>
2032 <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64)">
2033 <summary>
2034 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2035 <paramref name="right"/>.
2036 </summary>
2037 </member>
2038 <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String)">
2039 <summary>
2040 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2041 <paramref name="right"/>.
2042 </summary>
2043 </member>
2044 <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String,System.Object[])">
2045 <summary>
2046 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2047 <paramref name="right"/>.
2048 </summary>
2049 </member>
2050 <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double)">
2051 <summary>
2052 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2053 <paramref name="right"/>.
2054 </summary>
2055 </member>
2056 <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String)">
2057 <summary>
2058 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2059 <paramref name="right"/>.
2060 </summary>
2061 </member>
2062 <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String,System.Object[])">
2063 <summary>
2064 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2065 <paramref name="right"/>.
2066 </summary>
2067 </member>
2068 <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single)">
2069 <summary>
2070 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2071 <paramref name="right"/>.
2072 </summary>
2073 </member>
2074 <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String)">
2075 <summary>
2076 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2077 <paramref name="right"/>.
2078 </summary>
2079 </member>
2080 <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String,System.Object[])">
2081 <summary>
2082 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2083 <paramref name="right"/>.
2084 </summary>
2085 </member>
2086 <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable)">
2087 <summary>
2088 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2089 <paramref name="right"/>.
2090 </summary>
2091 </member>
2092 <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String)">
2093 <summary>
2094 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2095 <paramref name="right"/>.
2096 </summary>
2097 </member>
2098 <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String,System.Object[])">
2099 <summary>
2100 Asserts that <paramref name="test"/> is between <paramref name="left"/> and
2101 <paramref name="right"/>.
2102 </summary>
2103 </member>
2104 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int32,System.Int32,System.Int32)">
2105 <summary>
2106 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2107 <paramref name="right"/>.
2108 </summary>
2109 </member>
2110 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int16,System.Int16,System.Int16)">
2111 <summary>
2112 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2113 <paramref name="right"/>.
2114 </summary>
2115 </member>
2116 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Byte,System.Byte,System.Byte)">
2117 <summary>
2118 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2119 <paramref name="right"/>.
2120 </summary>
2121 </member>
2122 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int64,System.Int64,System.Int64)">
2123 <summary>
2124 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2125 <paramref name="right"/>.
2126 </summary>
2127 </member>
2128 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Double,System.Double,System.Double)">
2129 <summary>
2130 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2131 <paramref name="right"/>.
2132 </summary>
2133 </member>
2134 <member name="M:MbUnit.Framework.Assert.NotBetween(System.Single,System.Single,System.Single)">
2135 <summary>
2136 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2137 <paramref name="right"/>.
2138 </summary>
2139 </member>
2140 <member name="M:MbUnit.Framework.Assert.NotBetween(System.IComparable,System.IComparable,System.IComparable)">
2141 <summary>
2142 Asserts that <paramref name="test"/> is <strong>not</strong> between <paramref name="left"/> and
2143 <paramref name="right"/>.
2144 </summary>
2145 </member>
2146 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary)">
2147 <summary>
2148 Asserts that <paramref name="test"/> is in the dic <paramref name="list"/>.
2149 </summary>
2150 </member>
2151 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary,System.String)">
2152 <summary>
2153 Asserts that <paramref name="test"/> is in the dic <paramref name="list"/>.
2154 </summary>
2155 </member>
2156 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList)">
2157 <summary>
2158 Asserts that <paramref name="test"/> is in the list <paramref name="list"/>.
2159 </summary>
2160 </member>
2161 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList,System.String)">
2162 <summary>
2163 Asserts that <paramref name="test"/> is in the list <paramref name="list"/>.
2164 </summary>
2165 </member>
2166 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable,System.String)">
2167 <summary>
2168 Asserts that <paramref name="test"/> is in the enumerable collection <paramref name="enumerable"/>.
2169 </summary>
2170 </member>
2171 <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable)">
2172 <summary>
2173 Asserts that <paramref name="test"/> is in the enumerable collection <paramref name="enumerable"/>.
2174 </summary>
2175 </member>
2176 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary,System.String)">
2177 <summary>
2178 Asserts that <paramref name="test"/> is <strong>not</strong> in the dic <paramref name="list"/>.
2179 </summary>
2180 </member>
2181 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary)">
2182 <summary>
2183 Asserts that <paramref name="test"/> is <strong>not</strong> in the dic <paramref name="list"/>.
2184 </summary>
2185 </member>
2186 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList,System.String)">
2187 <summary>
2188 Asserts that <paramref name="test"/> is <strong>not</strong> in the list <paramref name="list"/>.
2189 </summary>
2190 </member>
2191 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList)">
2192 <summary>
2193 Asserts that <paramref name="test"/> is <strong>not</strong> in the list <paramref name="list"/>.
2194 </summary>
2195 </member>
2196 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable,System.String)">
2197 <summary>
2198 Asserts that <paramref name="test"/> is <strong>not</strong> in the enumerable collection <paramref name="enumerable"/>.
2199 </summary>
2200 </member>
2201 <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable)">
2202 <summary>
2203 Asserts that <paramref name="test"/> is <strong>not</strong> in the enumerable collection <paramref name="enumerable"/>.
2204 </summary>
2205 </member>
2206 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
2207 <summary>
2208 Assert that a string is empty - that is equal to string.Empty
2209 </summary>
2210 <param name="aString">The string to be tested</param>
2211 <param name="message">The message to be displayed on failure</param>
2212 <param name="args">Arguments to be used in formatting the message</param>
2213 </member>
2214 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String)">
2215 <summary>
2216 Assert that a string is empty - that is equal to string.Emtpy
2217 </summary>
2218 <param name="aString">The string to be tested</param>
2219 <param name="message">The message to be displayed on failure</param>
2220 </member>
2221 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String)">
2222 <summary>
2223 Assert that a string is empty - that is equal to string.Emtpy
2224 </summary>
2225 <param name="aString">The string to be tested</param>
2226 </member>
2227 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
2228 <summary>
2229 Assert that an array, list or other collection is empty
2230 </summary>
2231 <param name="collection">An array, list or other collection implementing ICollection</param>
2232 <param name="message">The message to be displayed on failure</param>
2233 <param name="args">Arguments to be used in formatting the message</param>
2234 </member>
2235 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
2236 <summary>
2237 Assert that an array, list or other collection is empty
2238 </summary>
2239 <param name="collection">An array, list or other collection implementing ICollection</param>
2240 <param name="message">The message to be displayed on failure</param>
2241 </member>
2242 <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
2243 <summary>
2244 Assert that an array,list or other collection is empty
2245 </summary>
2246 <param name="collection">An array, list or other collection implementing ICollection</param>
2247 </member>
2248 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
2249 <summary>
2250 Assert that a string is empty - that is equal to string.Emtpy
2251 </summary>
2252 <param name="aString">The string to be tested</param>
2253 <param name="message">The message to be displayed on failure</param>
2254 <param name="args">Arguments to be used in formatting the message</param>
2255 </member>
2256 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
2257 <summary>
2258 Assert that a string is empty - that is equal to string.Emtpy
2259 </summary>
2260 <param name="aString">The string to be tested</param>
2261 <param name="message">The message to be displayed on failure</param>
2262 </member>
2263 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String)">
2264 <summary>
2265 Assert that a string is empty - that is equal to string.Emtpy
2266 </summary>
2267 <param name="aString">The string to be tested</param>
2268 </member>
2269 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
2270 <summary>
2271 Assert that an array, list or other collection is empty
2272 </summary>
2273 <param name="collection">An array, list or other collection implementing ICollection</param>
2274 <param name="message">The message to be displayed on failure</param>
2275 <param name="args">Arguments to be used in formatting the message</param>
2276 </member>
2277 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
2278 <summary>
2279 Assert that an array, list or other collection is empty
2280 </summary>
2281 <param name="collection">An array, list or other collection implementing ICollection</param>
2282 <param name="message">The message to be displayed on failure</param>
2283 </member>
2284 <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
2285 <summary>
2286 Assert that an array,list or other collection is empty
2287 </summary>
2288 <param name="collection">An array, list or other collection implementing ICollection</param>
2289 </member>
2290 <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
2291 <summary>
2292 Verifies that the double is passed is an <code>NaN</code> value.
2293 If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
2294 is thrown.
2295 </summary>
2296 <param name="aDouble">The value that is to be tested</param>
2297 <param name="message">The message to be displayed when the object is not null</param>
2298 <param name="args">Arguments to be used in formatting the message</param>
2299 </member>
2300 <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String)">
2301 <summary>
2302 Verifies that the double is passed is an <code>NaN</code> value.
2303 If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
2304 is thrown.
2305 </summary>
2306 <param name="aDouble">The object that is to be tested</param>
2307 <param name="message">The message to be displayed when the object is not null</param>
2308 </member>
2309 <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double)">
2310 <summary>
2311 Verifies that the double is passed is an <code>NaN</code> value.
2312 If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
2313 is thrown.
2314 </summary>
2315 <param name="aDouble">The object that is to be tested</param>
2316 </member>
2317 <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
2318 <summary>
2319 Asserts that an object may be assigned a value of a given Type.
2320 </summary>
2321 <param name="expected">The expected Type.</param>
2322 <param name="actual">The object under examination</param>
2323 </member>
2324 <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
2325 <summary>
2326 Asserts that an object may be assigned a value of a given Type.
2327 </summary>
2328 <param name="expected">The expected Type.</param>
2329 <param name="actual">The object under examination</param>
2330 <param name="message">The messge to display in case of failure</param>
2331 </member>
2332 <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
2333 <summary>
2334 Asserts that an object may be assigned a value of a given Type.
2335 </summary>
2336 <param name="expected">The expected Type.</param>
2337 <param name="actual">The object under examination</param>
2338 <param name="message">The message to display in case of failure</param>
2339 <param name="args">Array of objects to be used in formatting the message</param>
2340 </member>
2341 <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
2342 <summary>
2343 Asserts that an object may not be assigned a value of a given Type.
2344 </summary>
2345 <param name="expected">The expected Type.</param>
2346 <param name="actual">The object under examination</param>
2347 </member>
2348 <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
2349 <summary>
2350 Asserts that an object may not be assigned a value of a given Type.
2351 </summary>
2352 <param name="expected">The expected Type.</param>
2353 <param name="actual">The object under examination</param>
2354 <param name="message">The messge to display in case of failure</param>
2355 </member>
2356 <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
2357 <summary>
2358 Asserts that an object may not be assigned a value of a given Type.
2359 </summary>
2360 <param name="expected">The expected Type.</param>
2361 <param name="actual">The object under examination</param>
2362 <param name="message">The message to display in case of failure</param>
2363 <param name="args">Array of objects to be used in formatting the message</param>
2364 </member>
2365 <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
2366 <summary>
2367 Asserts that an object is an instance of a given type.
2368 </summary>
2369 <param name="expected">The expected Type</param>
2370 <param name="actual">The object being examined</param>
2371 </member>
2372 <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
2373 <summary>
2374 Asserts that an object is an instance of a given type.
2375 </summary>
2376 <param name="expected">The expected Type</param>
2377 <param name="actual">The object being examined</param>
2378 <param name="message">A message to display in case of failure</param>
2379 </member>
2380 <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
2381 <summary>
2382 Asserts that an object is an instance of a given type.
2383 </summary>
2384 <param name="expected">The expected Type</param>
2385 <param name="actual">The object being examined</param>
2386 <param name="message">A message to display in case of failure</param>
2387 <param name="args">An array of objects to be used in formatting the message</param>
2388 </member>
2389 <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
2390 <summary>
2391 Asserts that an object is not an instance of a given type.
2392 </summary>
2393 <param name="expected">The expected Type</param>
2394 <param name="actual">The object being examined</param>
2395 </member>
2396 <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
2397 <summary>
2398 Asserts that an object is not an instance of a given type.
2399 </summary>
2400 <param name="expected">The expected Type</param>
2401 <param name="actual">The object being examined</param>
2402 <param name="message">A message to display in case of failure</param>
2403 </member>
2404 <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
2405 <summary>
2406 Asserts that an object is not an instance of a given type.
2407 </summary>
2408 <param name="expected">The expected Type</param>
2409 <param name="actual">The object being examined</param>
2410 <param name="message">A message to display in case of failure</param>
2411 <param name="args">An array of objects to be used in formatting the message</param>
2412 </member>
2413 <member name="M:MbUnit.Framework.Assert.FailNotEquals(System.Object,System.Object,System.String,System.Object[])">
2414 <summary>
2415 This method is called when two objects have been compared and found to be
2416 different. This prints a nice message to the screen.
2417 </summary>
2418 <param name="expected">The expected object</param>
2419 <param name="actual">The actual object</param>
2420 <param name="format">
2421 The format of the message to display if the assertion fails,
2422 containing zero or more format items.
2423 </param>
2424 <param name="args">
2425 An <see cref="T:System.Object"/> array containing zero or more objects to format.
2426 </param>
2427 <remarks>
2428 <para>
2429 The error message is formatted using <see cref="M:System.String.Format(System.String,System.Object[])"/>.
2430 </para>
2431 </remarks>
2432 </member>
2433 <member name="M:MbUnit.Framework.Assert.FailNotSame(System.Object,System.Object,System.String,System.Object[])">
2434 <summary>
2435 This method is called when the two objects are not the same.
2436 </summary>
2437 <param name="expected">The expected object</param>
2438 <param name="actual">The actual object</param>
2439 <param name="format">
2440 The format of the message to display if the assertion fails,
2441 containing zero or more format items.
2442 </param>
2443 <param name="args">
2444 An <see cref="T:System.Object"/> array containing zero or more objects to format.
2445 </param>
2446 <remarks>
2447 <para>
2448 The error message is formatted using <see cref="M:System.String.Format(System.String,System.Object[])"/>.
2449 </para>
2450 </remarks>
2451 </member>
2452 <member name="T:MbUnit.Framework.AuthorAttribute">
2453 <summary>
2454 This attribute identifies the author of a test fixture.
2455 </summary>
2456 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='AuthorAttribute']"/>
2457 </member>
2458 <member name="T:MbUnit.Framework.CollectionAssert">
2459 <summary>
2460 Assertion helper for the <see cref="T:System.Collections.ICollection"/> class.
2461 </summary>
2462 <remarks>
2463 <para>
2464 This class contains static helper methods to verify assertions on the
2465 <see cref="T:System.Collections.ICollection"/> class.
2466 </para>
2467 </remarks>
2468 </member>
2469 <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Collections.ICollection,System.Collections.ICollection)">
2470 <summary>
2471 Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot"/>
2472 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
2473 </summary>
2474 <param name="expected">
2475 Instance containing the expected value.
2476 </param>
2477 <param name="actual">
2478 Instance containing the tested value.
2479 </param>
2480 </member>
2481 <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Object,System.Collections.ICollection)">
2482 <summary>
2483 Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot"/>
2484 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
2485 </summary>
2486 <param name="expected">
2487 Expected value.
2488 </param>
2489 <param name="actual">
2490 Instance containing the tested value.
2491 </param>
2492 </member>
2493 <member name="M:MbUnit.Framework.CollectionAssert.IsSynchronized(System.Collections.ICollection)">
2494 <summary>
2495 Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized"/>
2496 is true.
2497 </summary>
2498 <param name="actual">
2499 Instance containing the expected value.
2500 </param>
2501 </member>
2502 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSynchronized(System.Collections.ICollection)">
2503 <summary>
2504 Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized"/>
2505 is false.
2506 </summary>
2507 <param name="actual">
2508 Instance containing the expected value.
2509 </param>
2510 </member>
2511 <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Collections.ICollection,System.Collections.ICollection)">
2512 <summary>
2513 Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized"/>
2514 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
2515 </summary>
2516 <param name="expected">
2517 Instance containing the expected value.
2518 </param>
2519 <param name="actual">
2520 Instance containing the tested value.
2521 </param>
2522 </member>
2523 <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Boolean,System.Collections.ICollection)">
2524 <summary>
2525 Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized"/>
2526 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
2527 </summary>
2528 <param name="expected">
2529 Expected value.
2530 </param>
2531 <param name="actual">
2532 Instance containing the tested value.
2533 </param>
2534 </member>
2535 <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Collections.ICollection,System.Collections.ICollection)">
2536 <summary>
2537 Verifies that the property value <see cref="P:System.Collections.ICollection.Count"/>
2538 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
2539 </summary>
2540 <param name="expected">
2541 Instance containing the expected value.
2542 </param>
2543 <param name="actual">
2544 Instance containing the tested value.
2545 </param>
2546 </member>
2547 <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Int32,System.Collections.ICollection)">
2548 <summary>
2549 Verifies that the property value <see cref="P:System.Collections.ICollection.Count"/>
2550 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
2551 </summary>
2552 <param name="expected">
2553 Expected value.
2554 </param>
2555 <param name="actual">
2556 Instance containing the tested value.
2557 </param>
2558 </member>
2559 <member name="M:MbUnit.Framework.CollectionAssert.IsCountCorrect(System.Collections.ICollection)">
2560 <summary>
2561 Verifies that the <see cref="P:System.Collections.ICollection.Count"/> property
2562 is synchronized with the number of iterated elements.
2563 </summary>
2564 <param name="col">
2565 Collection to test
2566 </param>
2567 <exception cref="T:System.ArgumentNullException">
2568 <paramref name="col"/> is a null reference (Nothing in Visual Basic)
2569 </exception>
2570 </member>
2571 <member name="M:MbUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection)">
2572 <summary>
2573 Verifies that <paramref name="expected"/> and <paramref name="actual"/>
2574 are equal collections. Element count and element wize equality is verified.
2575 </summary>
2576 <param name="expected">
2577 Expected value.
2578 </param>
2579 <param name="actual">
2580 Instance containing the tested value.
2581 </param>
2582 </member>
2583 <member name="M:MbUnit.Framework.CollectionAssert.AreElementsEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
2584 <summary>
2585 Verifies that <paramref name="expected"/> and <paramref name="actual"/>
2586 are equal collections. Element count and element wize equality is verified.
2587 </summary>
2588 <param name="expected">
2589 Expected value.
2590 </param>
2591 <param name="actual">
2592 Instance containing the tested value.
2593 </param>
2594 </member>
2595 <member name="M:MbUnit.Framework.CollectionAssert.ElementsEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String@)">
2596 <summary>
2597 Verifies that <paramref name="expected"/> and <paramref name="actual"/>
2598 are equal collections. Element count and element wize equality is verified.
2599 </summary>
2600 <param name="expected">
2601 Expected value.
2602 </param>
2603 <param name="actual">
2604 Instance containing the tested value.
2605 </param>
2606 <param name="failMessage">
2607 Reason for unequality.
2608 </param>
2609 </member>
2610 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type)">
2611 <summary>
2612 Asserts that all items contained in collection are of the type specified by expectedType.
2613 </summary>
2614 <param name="collection">ICollection of objects to be considered</param>
2615 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2616 </member>
2617 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String)">
2618 <summary>
2619 Asserts that all items contained in collection are of the type specified by expectedType.
2620 </summary>
2621 <param name="collection">ICollection of objects to be considered</param>
2622 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2623 <param name="message">The message that will be displayed on failure</param>
2624 </member>
2625 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String,System.Object[])">
2626 <summary>
2627 Asserts that all items contained in collection are of the type specified by expectedType.
2628 </summary>
2629 <param name="collection">ICollection of objects to be considered</param>
2630 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2631 <param name="message">The message that will be displayed on failure</param>
2632 <param name="args">Arguments to be used in formatting the message</param>
2633 </member>
2634 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection)">
2635 <summary>
2636 Asserts that all items contained in collection are not equal to null.
2637 </summary>
2638 <param name="collection">ICollection of objects to be considered</param>
2639 </member>
2640 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String)">
2641 <summary>
2642 Asserts that all items contained in collection are not equal to null.
2643 </summary>
2644 <param name="collection">ICollection of objects to be considered</param>
2645 <param name="message">The message that will be displayed on failure</param>
2646 </member>
2647 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String,System.Object[])">
2648 <summary>
2649 Asserts that all items contained in collection are not equal to null.
2650 </summary>
2651 <param name="collection">ICollection of objects to be considered</param>
2652 <param name="message">The message that will be displayed on failure</param>
2653 <param name="args">Arguments to be used in formatting the message</param>
2654 </member>
2655 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection)">
2656 <summary>
2657 Ensures that every object contained in collection exists within the collection
2658 once and only once.
2659 </summary>
2660 <param name="collection">ICollection of objects to be considered</param>
2661 </member>
2662 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String)">
2663 <summary>
2664 Ensures that every object contained in collection exists within the collection
2665 once and only once.
2666 </summary>
2667 <param name="collection">ICollection of objects to be considered</param>
2668 <param name="message">The message that will be displayed on failure</param>
2669 </member>
2670 <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String,System.Object[])">
2671 <summary>
2672 Ensures that every object contained in collection exists within the collection
2673 once and only once.
2674 </summary>
2675 <param name="collection">ICollection of objects to be considered</param>
2676 <param name="message">The message that will be displayed on failure</param>
2677 <param name="args">Arguments to be used in formatting the message</param>
2678 </member>
2679 <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
2680 <summary>
2681 Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
2682 </summary>
2683 <param name="expected">The first ICollection of objects to be considered</param>
2684 <param name="actual">The second ICollection of objects to be considered</param>
2685 </member>
2686 <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2687 <summary>
2688 Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
2689 </summary>
2690 <param name="expected">The first ICollection of objects to be considered</param>
2691 <param name="actual">The second ICollection of objects to be considered</param>
2692 <param name="message">The message that will be displayed on failure</param>
2693 </member>
2694 <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2695 <summary>
2696 Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
2697 </summary>
2698 <param name="expected">The first ICollection of objects to be considered</param>
2699 <param name="actual">The second ICollection of objects to be considered</param>
2700 <param name="message">The message that will be displayed on failure</param>
2701 <param name="args">Arguments to be used in formatting the message</param>
2702 </member>
2703 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection)">
2704 <summary>
2705 Asserts that expected and actual are not exactly equal.
2706 </summary>
2707 <param name="expected">The first ICollection of objects to be considered</param>
2708 <param name="actual">The second ICollection of objects to be considered</param>
2709 </member>
2710 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
2711 <summary>
2712 Asserts that expected and actual are not exactly equal.
2713 If comparer is not null then it will be used to compare the objects.
2714 </summary>
2715 <param name="expected">The first ICollection of objects to be considered</param>
2716 <param name="actual">The second ICollection of objects to be considered</param>
2717 <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
2718 </member>
2719 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2720 <summary>
2721 Asserts that expected and actual are not exactly equal.
2722 </summary>
2723 <param name="expected">The first ICollection of objects to be considered</param>
2724 <param name="actual">The second ICollection of objects to be considered</param>
2725 <param name="message">The message that will be displayed on failure</param>
2726 </member>
2727 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
2728 <summary>
2729 Asserts that expected and actual are not exactly equal.
2730 If comparer is not null then it will be used to compare the objects.
2731 </summary>
2732 <param name="expected">The first ICollection of objects to be considered</param>
2733 <param name="actual">The second ICollection of objects to be considered</param>
2734 <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
2735 <param name="message">The message that will be displayed on failure</param>
2736 </member>
2737 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2738 <summary>
2739 Asserts that expected and actual are not exactly equal.
2740 </summary>
2741 <param name="expected">The first ICollection of objects to be considered</param>
2742 <param name="actual">The second ICollection of objects to be considered</param>
2743 <param name="message">The message that will be displayed on failure</param>
2744 <param name="args">Arguments to be used in formatting the message</param>
2745 </member>
2746 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
2747 <summary>
2748 Asserts that expected and actual are not exactly equal.
2749 If comparer is not null then it will be used to compare the objects.
2750 </summary>
2751 <param name="expected">The first ICollection of objects to be considered</param>
2752 <param name="actual">The second ICollection of objects to be considered</param>
2753 <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
2754 <param name="message">The message that will be displayed on failure</param>
2755 <param name="args">Arguments to be used in formatting the message</param>
2756 </member>
2757 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
2758 <summary>
2759 Asserts that expected and actual are not equivalent.
2760 </summary>
2761 <param name="expected">The first ICollection of objects to be considered</param>
2762 <param name="actual">The second ICollection of objects to be considered</param>
2763 </member>
2764 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2765 <summary>
2766 Asserts that expected and actual are not equivalent.
2767 </summary>
2768 <param name="expected">The first ICollection of objects to be considered</param>
2769 <param name="actual">The second ICollection of objects to be considered</param>
2770 <param name="message">The message that will be displayed on failure</param>
2771 </member>
2772 <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2773 <summary>
2774 Asserts that expected and actual are not equivalent.
2775 </summary>
2776 <param name="expected">The first ICollection of objects to be considered</param>
2777 <param name="actual">The second ICollection of objects to be considered</param>
2778 <param name="message">The message that will be displayed on failure</param>
2779 <param name="args">Arguments to be used in formatting the message</param>
2780 </member>
2781 <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object)">
2782 <summary>
2783 Asserts that collection contains actual as an item.
2784 </summary>
2785 <param name="collection">ICollection of objects to be considered</param>
2786 <param name="actual">Object to be found within collection</param>
2787 </member>
2788 <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String)">
2789 <summary>
2790 Asserts that collection contains actual as an item.
2791 </summary>
2792 <param name="collection">ICollection of objects to be considered</param>
2793 <param name="actual">Object to be found within collection</param>
2794 <param name="message">The message that will be displayed on failure</param>
2795 </member>
2796 <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String,System.Object[])">
2797 <summary>
2798 Asserts that collection contains actual as an item.
2799 </summary>
2800 <param name="collection">ICollection of objects to be considered</param>
2801 <param name="actual">Object to be found within collection</param>
2802 <param name="message">The message that will be displayed on failure</param>
2803 <param name="args">Arguments to be used in formatting the message</param>
2804 </member>
2805 <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object)">
2806 <summary>
2807 Asserts that collection does not contain actual as an item.
2808 </summary>
2809 <param name="collection">ICollection of objects to be considered</param>
2810 <param name="actual">Object that cannot exist within collection</param>
2811 </member>
2812 <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String)">
2813 <summary>
2814 Asserts that collection does not contain actual as an item.
2815 </summary>
2816 <param name="collection">ICollection of objects to be considered</param>
2817 <param name="actual">Object that cannot exist within collection</param>
2818 <param name="message">The message that will be displayed on failure</param>
2819 </member>
2820 <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String,System.Object[])">
2821 <summary>
2822 Asserts that collection does not contain actual as an item.
2823 </summary>
2824 <param name="collection">ICollection of objects to be considered</param>
2825 <param name="actual">Object that cannot exist within collection</param>
2826 <param name="message">The message that will be displayed on failure</param>
2827 <param name="args">Arguments to be used in formatting the message</param>
2828 </member>
2829 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
2830 <summary>
2831 Asserts that subset is not a subset of superset.
2832 </summary>
2833 <param name="subset">The ICollection subset to be considered</param>
2834 <param name="superset">The ICollection superset to be considered</param>
2835 </member>
2836 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2837 <summary>
2838 Asserts that subset is not a subset of superset.
2839 </summary>
2840 <param name="subset">The ICollection subset to be considered</param>
2841 <param name="superset">The ICollection superset to be considered</param>
2842 <param name="message">The message that will be displayed on failure</param>
2843 </member>
2844 <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2845 <summary>
2846 Asserts that subset is not a subset of superset.
2847 </summary>
2848 <param name="subset">The ICollection subset to be considered</param>
2849 <param name="superset">The ICollection superset to be considered</param>
2850 <param name="message">The message that will be displayed on failure</param>
2851 <param name="args">Arguments to be used in formatting the message</param>
2852 </member>
2853 <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
2854 <summary>
2855 Asserts that subset is a subset of superset.
2856 </summary>
2857 <param name="subset">The ICollection subset to be considered</param>
2858 <param name="superset">The ICollection superset to be considered</param>
2859 </member>
2860 <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2861 <summary>
2862 Asserts that subset is a subset of superset.
2863 </summary>
2864 <param name="subset">The ICollection subset to be considered</param>
2865 <param name="superset">The ICollection superset to be considered</param>
2866 <param name="message">The message that will be displayed on failure</param>
2867 </member>
2868 <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2869 <summary>
2870 Asserts that subset is a subset of superset.
2871 </summary>
2872 <param name="subset">The ICollection subset to be considered</param>
2873 <param name="superset">The ICollection superset to be considered</param>
2874 <param name="message">The message that will be displayed on failure</param>
2875 <param name="args">Arguments to be used in formatting the message</param>
2876 </member>
2877 <member name="M:MbUnit.Framework.CollectionAssert.CheckItemInCollection(System.Collections.ICollection,System.Object)">
2878 <summary>
2879 Checks an item if included in a given collection.
2880 </summary>
2881 <param name="collection">The collection to check from</param>
2882 <param name="item">The item to be checked</param>
2883 <returns>True if item is included, False otherwise</returns>
2884 </member>
2885 <member name="T:MbUnit.Framework.CollectionIndexingFixtureAttribute">
2886 <summary>
2887 Collection indexing pattern.
2888 </summary>
2889 <remarks name="CollectionIndexingFixtureAttribute">
2890<para>
2891The <see cref="T:MbUnit.Framework.CollectionIndexingFixtureAttribute"/> implements the <b>Collection Indexing Pattern</b>.
2892</para>
2893<para>
2894The user provides filled collection, index type and index range through
2895the <see cref="T:MbUnit.Framework.IndexerProviderAttribute"/> attribute.
2896</para>
2897</remarks>
2898 <example name="Indexing">
2899<para>
2900This example checks the Collection Indexing Pattern for the <see cref="T:System.Collections.ArrayList"/>
2901and <see cref="T:System.Array"/> collections:
2902</para>
2903<code id="ex_indexing" compilable="true"><![CDATA[
2904[CollectionIndexingFixture]
2905public class CollectionIndexingFixtureAttributeTest
2906{
2907 [IntIndexerProvider(typeof(ArrayList),100)]
2908 public ArrayList ProvideArrayList100()
2909 {
2910 ArrayList list = new ArrayList();
2911 for(int i =0;i<100;++i)
2912 list.Add(i);
2913
2914 return list;
2915 }
2916
2917 [IntIndexerProvider(typeof(Array),10)]
2918 public ArrayList ProvideArrayList()
2919 {
2920 ArrayList list = new ArrayList();
2921 for(int i=0;i<10;++i)
2922 list.Add(i);
2923
2924 return list;
2925 }
2926}
2927]]>
2928</code>
2929</example>
2930 </member>
2931 <member name="T:MbUnit.Core.Framework.TestFixturePatternAttribute">
2932 <summary>
2933 Base class for attributes that define test fixtures.
2934 </summary>
2935 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TestFixturePatternAttribute']"/>
2936 </member>
2937 <member name="T:MbUnit.Core.Framework.PatternAttribute">
2938 <summary>
2939 Base class for all attributes that are part of the MbUnit framework.
2940 </summary>
2941 <remarks>
2942 Base class for all attributes of MbUnit.
2943 </remarks>
2944 </member>
2945 <member name="P:MbUnit.Core.Framework.TestFixturePatternAttribute.TimeOut">
2946 <summary>
2947 Gets or sets the fixture timeout in minutes.
2948 </summary>
2949 <remarks>
2950 Default value is 5 minutes.
2951 </remarks>
2952 <value>
2953 Time out minutes.
2954 </value>
2955 </member>
2956 <member name="M:MbUnit.Framework.CollectionIndexingFixtureAttribute.#ctor">
2957 <summary>
2958 Default constructor
2959 </summary>
2960 </member>
2961 <member name="M:MbUnit.Framework.CollectionIndexingFixtureAttribute.#ctor(System.String)">
2962 <summary>
2963 Constructor with fixture description
2964 </summary>
2965 </member>
2966 <member name="M:MbUnit.Framework.CollectionIndexingFixtureAttribute.GetRun">
2967 <summary>
2968 Creates the execution logic
2969 </summary>
2970 <remarks>
2971 See summary.
2972 </remarks>
2973 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
2974 test logic.
2975 </returns>
2976 <example name="Indexing">
2977<para>
2978This example checks the Collection Indexing Pattern for the <see cref="T:System.Collections.ArrayList"/>
2979and <see cref="T:System.Array"/> collections:
2980</para>
2981<code id="ex_indexing" compilable="true"><![CDATA[
2982[CollectionIndexingFixture]
2983public class CollectionIndexingFixtureAttributeTest
2984{
2985 [IntIndexerProvider(typeof(ArrayList),100)]
2986 public ArrayList ProvideArrayList100()
2987 {
2988 ArrayList list = new ArrayList();
2989 for(int i =0;i<100;++i)
2990 list.Add(i);
2991
2992 return list;
2993 }
2994
2995 [IntIndexerProvider(typeof(Array),10)]
2996 public ArrayList ProvideArrayList()
2997 {
2998 ArrayList list = new ArrayList();
2999 for(int i=0;i<10;++i)
3000 list.Add(i);
3001
3002 return list;
3003 }
3004}
3005]]>
3006</code>
3007</example>
3008 </member>
3009 <member name="T:MbUnit.Framework.CollectionOrderTest">
3010 <summary>
3011 Different collection order
3012 </summary>
3013 </member>
3014 <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedAscending">
3015 <summary>Tests ascending order collection</summary>
3016 </member>
3017 <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedDescending">
3018 <summary>Tests ascending order collection</summary>
3019 </member>
3020 <member name="T:MbUnit.Framework.CollectionOrderFixtureAttribute">
3021 <summary>
3022 Collection Order Pattern implementations.
3023 </summary>
3024 <remarks name="CollectionSortFixtureAttribute">
3025<para><em>Implements:</em> Collection Order Pattern</para>
3026<para><em>Logic:</em>
3027<code>
3028{Provider}
3029[SetUp]
3030{Fill}
3031(Order) // internal
3032[TearDown]
3033</code>
3034</para>
3035<para>
3036This fixture tests sorted collections. The user must provider a
3037comparer and the type of desired test based on the <see cref="T:MbUnit.Framework.CollectionOrderTest"/>
3038enumeration: ascending, descending.
3039</para>
3040<para>
3041Tested collections are provided by methods tagged with the <see cref="T:MbUnit.Framework.ProviderAttribute"/>
3042attribute. The collection are then filled using methods tagged by the
3043<see cref="T:MbUnit.Framework.FillAttribute"/> attribute. The rest of the tests is handled by the framework.
3044</para>
3045<para>
3046SetUp and TearDown methods can be added to set up the fixtue object.
3047</para>
3048</remarks>
3049 </member>
3050 <member name="T:MbUnit.Framework.CombinatorialTestAttribute">
3051 <summary>
3052 Tag use to mark a mark a unit test method.
3053 </summary>
3054 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TestAttribute']"/>
3055 </member>
3056 <member name="T:MbUnit.Core.Framework.TestPatternAttribute">
3057 <summary>
3058 Base class for attributes that define unit test.
3059 </summary>
3060 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TestPatternAttribute']"/>
3061 </member>
3062 <member name="T:MbUnit.Framework.CompilerAssert">
3063 <summary>
3064 Assertion helper for compilation.
3065 </summary>
3066 <remarks>
3067 <para>
3068 This class contains static helper methods to verify that snippets are compilable.
3069 </para>
3070 </remarks>
3071 </member>
3072 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
3073 <summary>
3074 Verifies that <paramref name="source"/> compiles using the provided compiler.
3075 </summary>
3076 <param name="compiler">Compiler instance</param>
3077 <param name="source">Source code to compile</param>
3078 </member>
3079 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
3080 <summary>
3081 Verifies that <paramref name="source"/> compiles using the provided compiler.
3082 </summary>
3083 <param name="compiler">Compiler instance</param>
3084 <param name="source">Source code to compile</param>
3085 </member>
3086 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
3087 <summary>
3088 Verifies that <paramref name="source"/> compiles using the provided compiler.
3089 </summary>
3090 <param name="compiler">Compiler instance</param>
3091 <param name="references">Referenced assemblies</param>
3092 <param name="source">Source code to compile</param>
3093 </member>
3094 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
3095 <summary>
3096 Verifies that <paramref name="source"/> compiles using the provided compiler.
3097 </summary>
3098 <param name="compiler">
3099 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3100 <param name="options">Compilation options</param>
3101 <param name="source">source to compile</param>
3102 </member>
3103 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String,System.Boolean)">
3104 <summary>
3105 Verifies that <paramref name="source"/> compiles using the provided compiler.
3106 </summary>
3107 <param name="compiler">
3108 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3109 <param name="options">Compilation options</param>
3110 <param name="source">Source to compile</param>
3111 <param name="throwOnWarning">
3112 true if assertion should throw if any warning.
3113 </param>
3114 </member>
3115 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
3116 <summary>
3117 Verifies that <paramref name="source"/> compiles using the provided compiler.
3118 </summary>
3119 <param name="compiler">
3120 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3121 <param name="options">Compilation options</param>
3122 <param name="source">Stream containing the source to compile</param>
3123 </member>
3124 <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream,System.Boolean)">
3125 <summary>
3126 Verifies that <paramref name="source"/> compiles using the provided compiler.
3127 </summary>
3128 <param name="compiler">
3129 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3130 <param name="options">Compilation options</param>
3131 <param name="source">Stream containing the source to compile</param>
3132 <param name="throwOnWarning">
3133 true if assertion should throw if any warning.
3134 </param>
3135 </member>
3136 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
3137 <summary>
3138 Verifies that <paramref name="source"/> does not compile using the provided compiler.
3139 </summary>
3140 <param name="compiler">
3141 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3142 <param name="source">Source to compile</param>
3143 </member>
3144 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
3145 <summary>
3146 Verifies that <paramref name="source"/> does not compile using the provided compiler.
3147 </summary>
3148 <param name="compiler">
3149 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3150 <param name="source">Source to compile</param>
3151 </member>
3152 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
3153 <summary>
3154 Verifies that <paramref name="source"/> does not compile using the provided compiler.
3155 </summary>
3156 <param name="compiler">
3157 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3158 <param name="referencedAssemblies">Collection of referenced assemblies</param>
3159 <param name="source">Source to compile</param>
3160 </member>
3161 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
3162 <summary>
3163 Verifies that <paramref name="source"/> does not compile using the provided compiler.
3164 </summary>
3165 <param name="compiler">
3166 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3167 <param name="options">Compilation options</param>
3168 <param name="source">Source to compile</param>
3169 </member>
3170 <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
3171 <summary>
3172 Verifies that <paramref name="source"/> does not compile using the provided compiler.
3173 </summary>
3174 <param name="compiler">
3175 <see cref="T:System.CodeDom.Compiler.ICodeCompiler"/> instance.</param>
3176 <param name="options">Compilation options</param>
3177 <param name="source">Source to compile</param>
3178 </member>
3179 <member name="P:MbUnit.Framework.CompilerAssert.CSharpCompiler">
3180 <summary>
3181 Gets the C# compiler from <see cref="T:Microsoft.CSharp.CSharpCodeProvider"/>.
3182 </summary>
3183 <value>
3184 C# compiler.
3185 </value>
3186 </member>
3187 <member name="P:MbUnit.Framework.CompilerAssert.VBCompiler">
3188 <summary>
3189 Gets the VB.NET compiler from <see cref="T:Microsoft.VisualBasic.VBCodeProvider"/>.
3190 </summary>
3191 <value>
3192 VB.NET compiler.
3193 </value>
3194 </member>
3195 <member name="T:MbUnit.Core.Runs.Run">
3196 <summary>
3197 </summary>
3198 </member>
3199 <member name="T:MbUnit.Core.Runs.IRun">
3200 <summary>
3201 This interface defines a type of test/non test run that is used
3202 to define the <see cref="T:MbUnit.Core.Framework.TestFixturePatternAttribute"/> logic.
3203 </summary>
3204 </member>
3205 <member name="M:MbUnit.Core.Runs.IRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
3206 <summary>
3207 Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree"/> invoker graph
3208 with <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> generated by the run.
3209 </summary>
3210 <param name="tree">Invoker tree</param>
3211 <param name="parent">parent vertex</param>
3212 <param name="t">class type that is marked by the run</param>
3213 <remarks>
3214 </remarks>
3215 </member>
3216 <member name="P:MbUnit.Core.Runs.IRun.Name">
3217 <summary>
3218 Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun"/>
3219 </summary>
3220 <value>
3221 A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun"/>
3222 </value>
3223 </member>
3224 <member name="P:MbUnit.Core.Runs.IRun.IsTest">
3225 <summary>
3226 Gets a value indicating the run is considered as a test or not.
3227 </summary>
3228 <value>
3229 true if the <see cref="T:MbUnit.Core.Runs.IRun"/> instance is a test
3230 </value>
3231 </member>
3232 <member name="M:MbUnit.Core.Runs.Run.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
3233 <summary>
3234 Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree"/> invoker graph
3235 with <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> generated by the run.
3236 </summary>
3237 <param name="tree">Invoker tree</param>
3238 <param name="parent">parent vertex</param>
3239 <param name="t">class type that is marked by the run</param>
3240 <remarks>
3241 TODO
3242 </remarks>
3243 </member>
3244 <member name="P:MbUnit.Core.Runs.Run.Name">
3245 <summary>
3246 Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun"/>
3247 </summary>
3248 <value>
3249 A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun"/>
3250 </value>
3251 </member>
3252 <member name="P:MbUnit.Core.Runs.Run.IsTest">
3253 <summary>
3254 Gets a value indicating the run is considered as a test or not.
3255 </summary>
3256 <value>
3257 true if the <see cref="T:MbUnit.Core.Runs.IRun"/> instance is a test
3258 </value>
3259 </member>
3260 <member name="T:MbUnit.Framework.CompositeFixtureAttribute">
3261 <summary>
3262 Composite fixture pattern implementation.
3263 </summary>
3264 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.doc.xml" path="doc/remarkss/remarks[@name='CompositeFixtureAttribute']"/>
3265 </member>
3266 <member name="M:MbUnit.Framework.CompositeFixtureAttribute.#ctor(System.Type)">
3267 <summary>
3268 Creates a fixture for the <paramref name="fixtureType"/> type.
3269 </summary>
3270 <remarks>
3271 Initializes the attribute with <paramref name="fixtureType"/>.
3272 </remarks>
3273 <param name="fixtureType">type to apply the fixture to</param>
3274 <exception cref="T:System.ArgumentNullException">
3275 <paramref name="fixtureType"/>
3276 is a null reference</exception>
3277 </member>
3278 <member name="M:MbUnit.Framework.CompositeFixtureAttribute.#ctor(System.Type,System.String)">
3279 <summary>
3280 Creates a fixture for the <paramref name="fixtureType"/> type
3281 and a description
3282 </summary>
3283 <remarks>
3284 Initializes the attribute with <paramref name="fixtureType"/>.
3285 </remarks>
3286 <param name="fixtureType">type to apply the fixture to</param>
3287 <param name="description">description of the fixture</param>
3288 <exception cref="T:System.ArgumentNullException">fixtureType is a null reference</exception>
3289 </member>
3290 <member name="M:MbUnit.Framework.CompositeFixtureAttribute.GetRun">
3291 <summary>
3292 Creates the execution logic
3293 </summary>
3294 <remarks>
3295 See summary.
3296 </remarks>
3297 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
3298 test logic.
3299 </returns>
3300 </member>
3301 <member name="P:MbUnit.Framework.CompositeFixtureAttribute.FixtureType">
3302 <summary>
3303 Gets or sets the fixture type.
3304 </summary>
3305 <value>
3306 Fixture instance type.
3307 </value>
3308 </member>
3309 <member name="T:MbUnit.Core.Invokers.IRunInvoker">
3310 <summary>
3311 This interface defines a method invoker object.
3312 </summary>
3313 <remarks name="IRunInvoker">
3314<para>
3315When processing the test fixture, the tests are splitted down to a
3316tree <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> instance where each <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> denotes
3317the invokation of a fixture method, or a special processing of the fixture methods.
3318</para>
3319<para>
3320The <see cref="T:MbUnit.Framework.TestFixtureAttribute"/> derived fixture define their logic by returning
3321an <see cref="T:MbUnit.Core.Runs.IRun"/> instance. This <see cref="T:MbUnit.Core.Runs.IRun"/> instance is the generator
3322for <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> instances.
3323</para>
3324</remarks>
3325 </member>
3326 <member name="M:MbUnit.Core.Invokers.IRunInvoker.Execute(System.Object,System.Collections.IList)">
3327 <summary>
3328 Executes the wrapped method
3329 </summary>
3330 <param name="o">
3331 Test fixture instance
3332 </param>
3333 <param name="args">
3334 Method arguments
3335 </param>
3336 <returns>
3337 Return value of the invoked method. If the method returns void, null
3338 is returned.
3339 </returns>
3340 </member>
3341 <member name="M:MbUnit.Core.Invokers.IRunInvoker.ContainsMemberInfo(System.Reflection.MemberInfo)">
3342 <summary>
3343 Gets a value indicating if the instance is related to
3344 <paramref name="memberInfo"/>
3345 </summary>
3346 <param name="memberInfo">
3347 A <see cref="T:System.Reflection.MethodInfo"/> instance
3348 </param>
3349 <returns>
3350 true if the instance is related to the member info;
3351 otherwize false</returns>
3352 </member>
3353 <member name="P:MbUnit.Core.Invokers.IRunInvoker.Name">
3354 <summary>
3355 Gets a descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>
3356 </summary>
3357 <value>
3358 A descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>.
3359 </value>
3360 </member>
3361 <member name="P:MbUnit.Core.Invokers.IRunInvoker.Generator">
3362 <summary>
3363 Gets a reference to the <see cref="T:MbUnit.Core.Runs.IRun"/> instance that generated
3364 the invoker.
3365 </summary>
3366 <value>
3367 Reference to the <see cref="T:MbUnit.Core.Runs.IRun"/> instance that generated
3368 the invoker.
3369 </value>
3370 </member>
3371 <member name="T:MbUnit.Framework.TestSuiteSetUpAttribute">
3372 <summary>
3373 Tag used to mark a method that needs to be run before TestSuite generation.
3374 </summary>
3375 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TestSuiteSetUpAttribute']"/>
3376 </member>
3377 <member name="T:MbUnit.Core.Invokers.MethodRunInvoker">
3378 <summary>
3379 An invoker that wraps up the call to a fixture method.
3380 </summary>
3381 </member>
3382 <member name="M:MbUnit.Core.Invokers.MethodRunInvoker.#ctor(MbUnit.Core.Runs.IRun,System.Reflection.MethodInfo)">
3383 <summary>
3384 Default constructor - initializes all fields to default values
3385 </summary>
3386 </member>
3387 <member name="T:MbUnit.Framework.RepeatTestAttribute">
3388 <summary>
3389 This tag defines test method that will be repeated the specified number
3390 of times.
3391 </summary>
3392 </member>
3393 <member name="T:MbUnit.Core.Exceptions.AssertionException">
3394 <summary>
3395 Base class for MbUnit exceptions
3396 </summary>
3397 </member>
3398 <member name="M:MbUnit.Core.Exceptions.AssertionException.#ctor">
3399 <summary>
3400 Initializes an empty <see cref="T:MbUnit.Core.Exceptions.AssertionException"/>
3401 instance.
3402 </summary>
3403 </member>
3404 <member name="T:MbUnit.Core.Invokers.ExplicitRunInvoker">
3405 <summary>
3406 Invoker for tests decorated with the ExplicitAttribute.
3407 </summary>
3408 </member>
3409 <member name="T:MbUnit.Core.Invokers.DecoratorRunInvoker">
3410 <summary>
3411 Decorator invorkers are used to modify the way a fixute method is executed.
3412 Popular examples of such is the <see cref="T:MbUnit.Core.Invokers.ExpectedExceptionRunInvoker"/>
3413 or the <see cref="T:MbUnit.Core.Invokers.RepeatRunInvoker"/>.
3414 </summary>
3415 </member>
3416 <member name="M:MbUnit.Core.Invokers.ExplicitRunInvoker.#ctor(MbUnit.Core.Invokers.IRunInvoker)">
3417 <summary>
3418 Constructor.
3419 </summary>
3420 <param name="invoker"></param>
3421 </member>
3422 <member name="M:MbUnit.Core.Invokers.ExplicitRunInvoker.Execute(System.Object,System.Collections.IList)">
3423 <summary>
3424 Execute method for the invoker.
3425 </summary>
3426 <param name="o"></param>
3427 <param name="args"></param>
3428 <returns></returns>
3429 </member>
3430 <member name="T:MbUnit.Framework.ConditionalExceptionAttribute">
3431 <summary>
3432 Tags method that should throw an exception if a predicate is true.
3433 </summary>
3434 </member>
3435 <member name="T:MbUnit.Framework.ExpectedExceptionAttribute">
3436 <summary>
3437 Tags method that should throw an exception.
3438 </summary>
3439 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='ExpectedExceptionAttribute']"/>
3440 </member>
3441 <member name="T:MbUnit.Core.Framework.DecoratorPatternAttribute">
3442 <summary>
3443 This is the base class for attributes that can decorate tests.
3444 </summary>
3445 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='DecoratorPatternAttribute']"/>
3446 </member>
3447 <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
3448 <summary>
3449 The expected exception.
3450 </summary>
3451 </member>
3452 <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
3453 <summary>
3454 The expected message text.
3455 </summary>
3456 </member>
3457 <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.InnerExceptionType">
3458 <summary>
3459 The expected inner exception.
3460 </summary>
3461 </member>
3462 <member name="T:MbUnit.Framework.ControlAssert">
3463 <summary>
3464 Assertion helper for the <see cref="T:System.Windows.Forms.Control"/> class.
3465 </summary>
3466 <remarks>
3467 <para>
3468 This class contains static helper methods to verify assertions on the
3469 <see cref="T:System.Windows.Forms.Control"/> class.
3470 </para>
3471 <para>
3472 This class was automatically generated. Do not edit (or edit the template).
3473 </para>
3474 </remarks>
3475 </member>
3476 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3477 <summary>
3478 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription"/>
3479 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3480 </summary>
3481 <param name="expected">
3482 Instance containing the expected value.
3483 </param>
3484 <param name="actual">
3485 Instance containing the tested value.
3486 </param>
3487 </member>
3488 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.String,System.Windows.Forms.Control)">
3489 <summary>
3490 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription"/>
3491 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3492 </summary>
3493 <param name="expected">
3494 Expected value.
3495 </param>
3496 <param name="actual">
3497 Instance containing the tested value.
3498 </param>
3499 </member>
3500 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3501 <summary>
3502 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription"/>
3503 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3504 </summary>
3505 <param name="expected">
3506 Instance containing the expected value.
3507 </param>
3508 <param name="actual">
3509 Instance containing the tested value.
3510 </param>
3511 </member>
3512 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDescriptionEqual(System.String,System.Windows.Forms.Control)">
3513 <summary>
3514 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription"/>
3515 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3516 </summary>
3517 <param name="expected">
3518 Expected value.
3519 </param>
3520 <param name="actual">
3521 Instance containing the tested value.
3522 </param>
3523 </member>
3524 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3525 <summary>
3526 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName"/>
3527 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3528 </summary>
3529 <param name="expected">
3530 Instance containing the expected value.
3531 </param>
3532 <param name="actual">
3533 Instance containing the tested value.
3534 </param>
3535 </member>
3536 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleNameEqual(System.String,System.Windows.Forms.Control)">
3537 <summary>
3538 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName"/>
3539 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3540 </summary>
3541 <param name="expected">
3542 Expected value.
3543 </param>
3544 <param name="actual">
3545 Instance containing the tested value.
3546 </param>
3547 </member>
3548 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3549 <summary>
3550 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole"/>
3551 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3552 </summary>
3553 <param name="expected">
3554 Instance containing the expected value.
3555 </param>
3556 <param name="actual">
3557 Instance containing the tested value.
3558 </param>
3559 </member>
3560 <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.AccessibleRole,System.Windows.Forms.Control)">
3561 <summary>
3562 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole"/>
3563 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3564 </summary>
3565 <param name="expected">
3566 Expected value.
3567 </param>
3568 <param name="actual">
3569 Instance containing the tested value.
3570 </param>
3571 </member>
3572 <member name="M:MbUnit.Framework.ControlAssert.AllowDrop(System.Windows.Forms.Control)">
3573 <summary>
3574 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop"/>
3575 is true.
3576 </summary>
3577 <param name="actual">
3578 Instance containing the expected value.
3579 </param>
3580 </member>
3581 <member name="M:MbUnit.Framework.ControlAssert.NotAllowDrop(System.Windows.Forms.Control)">
3582 <summary>
3583 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop"/>
3584 is false.
3585 </summary>
3586 <param name="actual">
3587 Instance containing the expected value.
3588 </param>
3589 </member>
3590 <member name="M:MbUnit.Framework.ControlAssert.AreAllowDropEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3591 <summary>
3592 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop"/>
3593 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3594 </summary>
3595 <param name="expected">
3596 Instance containing the expected value.
3597 </param>
3598 <param name="actual">
3599 Instance containing the tested value.
3600 </param>
3601 </member>
3602 <member name="M:MbUnit.Framework.ControlAssert.AreAllowDropEqual(System.Boolean,System.Windows.Forms.Control)">
3603 <summary>
3604 Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop"/>
3605 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3606 </summary>
3607 <param name="expected">
3608 Expected value.
3609 </param>
3610 <param name="actual">
3611 Instance containing the tested value.
3612 </param>
3613 </member>
3614 <member name="M:MbUnit.Framework.ControlAssert.AreAnchorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3615 <summary>
3616 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor"/>
3617 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3618 </summary>
3619 <param name="expected">
3620 Instance containing the expected value.
3621 </param>
3622 <param name="actual">
3623 Instance containing the tested value.
3624 </param>
3625 </member>
3626 <member name="M:MbUnit.Framework.ControlAssert.AreAnchorEqual(System.Windows.Forms.AnchorStyles,System.Windows.Forms.Control)">
3627 <summary>
3628 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor"/>
3629 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3630 </summary>
3631 <param name="expected">
3632 Expected value.
3633 </param>
3634 <param name="actual">
3635 Instance containing the tested value.
3636 </param>
3637 </member>
3638 <member name="M:MbUnit.Framework.ControlAssert.AreBackColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3639 <summary>
3640 Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor"/>
3641 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3642 </summary>
3643 <param name="expected">
3644 Instance containing the expected value.
3645 </param>
3646 <param name="actual">
3647 Instance containing the tested value.
3648 </param>
3649 </member>
3650 <member name="M:MbUnit.Framework.ControlAssert.AreBackColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
3651 <summary>
3652 Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor"/>
3653 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3654 </summary>
3655 <param name="expected">
3656 Expected value.
3657 </param>
3658 <param name="actual">
3659 Instance containing the tested value.
3660 </param>
3661 </member>
3662 <member name="M:MbUnit.Framework.ControlAssert.AreBackgroundImageEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3663 <summary>
3664 Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage"/>
3665 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3666 </summary>
3667 <param name="expected">
3668 Instance containing the expected value.
3669 </param>
3670 <param name="actual">
3671 Instance containing the tested value.
3672 </param>
3673 </member>
3674 <member name="M:MbUnit.Framework.ControlAssert.AreBackgroundImageEqual(System.Drawing.Image,System.Windows.Forms.Control)">
3675 <summary>
3676 Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage"/>
3677 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3678 </summary>
3679 <param name="expected">
3680 Expected value.
3681 </param>
3682 <param name="actual">
3683 Instance containing the tested value.
3684 </param>
3685 </member>
3686 <member name="M:MbUnit.Framework.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3687 <summary>
3688 Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings"/>
3689 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3690 </summary>
3691 <param name="expected">
3692 Instance containing the expected value.
3693 </param>
3694 <param name="actual">
3695 Instance containing the tested value.
3696 </param>
3697 </member>
3698 <member name="M:MbUnit.Framework.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.ControlBindingsCollection,System.Windows.Forms.Control)">
3699 <summary>
3700 Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings"/>
3701 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3702 </summary>
3703 <param name="expected">
3704 Expected value.
3705 </param>
3706 <param name="actual">
3707 Instance containing the tested value.
3708 </param>
3709 </member>
3710 <member name="M:MbUnit.Framework.ControlAssert.AreBindingContextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3711 <summary>
3712 Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext"/>
3713 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3714 </summary>
3715 <param name="expected">
3716 Instance containing the expected value.
3717 </param>
3718 <param name="actual">
3719 Instance containing the tested value.
3720 </param>
3721 </member>
3722 <member name="M:MbUnit.Framework.ControlAssert.AreBindingContextEqual(System.Windows.Forms.BindingContext,System.Windows.Forms.Control)">
3723 <summary>
3724 Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext"/>
3725 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3726 </summary>
3727 <param name="expected">
3728 Expected value.
3729 </param>
3730 <param name="actual">
3731 Instance containing the tested value.
3732 </param>
3733 </member>
3734 <member name="M:MbUnit.Framework.ControlAssert.AreBottomEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3735 <summary>
3736 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom"/>
3737 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3738 </summary>
3739 <param name="expected">
3740 Instance containing the expected value.
3741 </param>
3742 <param name="actual">
3743 Instance containing the tested value.
3744 </param>
3745 </member>
3746 <member name="M:MbUnit.Framework.ControlAssert.AreBottomEqual(System.Int32,System.Windows.Forms.Control)">
3747 <summary>
3748 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom"/>
3749 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3750 </summary>
3751 <param name="expected">
3752 Expected value.
3753 </param>
3754 <param name="actual">
3755 Instance containing the tested value.
3756 </param>
3757 </member>
3758 <member name="M:MbUnit.Framework.ControlAssert.AreBoundsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3759 <summary>
3760 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds"/>
3761 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3762 </summary>
3763 <param name="expected">
3764 Instance containing the expected value.
3765 </param>
3766 <param name="actual">
3767 Instance containing the tested value.
3768 </param>
3769 </member>
3770 <member name="M:MbUnit.Framework.ControlAssert.AreBoundsEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
3771 <summary>
3772 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds"/>
3773 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3774 </summary>
3775 <param name="expected">
3776 Expected value.
3777 </param>
3778 <param name="actual">
3779 Instance containing the tested value.
3780 </param>
3781 </member>
3782 <member name="M:MbUnit.Framework.ControlAssert.CanFocus(System.Windows.Forms.Control)">
3783 <summary>
3784 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus"/>
3785 is true.
3786 </summary>
3787 <param name="actual">
3788 Instance containing the expected value.
3789 </param>
3790 </member>
3791 <member name="M:MbUnit.Framework.ControlAssert.NotCanFocus(System.Windows.Forms.Control)">
3792 <summary>
3793 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus"/>
3794 is false.
3795 </summary>
3796 <param name="actual">
3797 Instance containing the expected value.
3798 </param>
3799 </member>
3800 <member name="M:MbUnit.Framework.ControlAssert.AreCanFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3801 <summary>
3802 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus"/>
3803 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3804 </summary>
3805 <param name="expected">
3806 Instance containing the expected value.
3807 </param>
3808 <param name="actual">
3809 Instance containing the tested value.
3810 </param>
3811 </member>
3812 <member name="M:MbUnit.Framework.ControlAssert.AreCanFocusEqual(System.Boolean,System.Windows.Forms.Control)">
3813 <summary>
3814 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus"/>
3815 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3816 </summary>
3817 <param name="expected">
3818 Expected value.
3819 </param>
3820 <param name="actual">
3821 Instance containing the tested value.
3822 </param>
3823 </member>
3824 <member name="M:MbUnit.Framework.ControlAssert.CanSelect(System.Windows.Forms.Control)">
3825 <summary>
3826 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect"/>
3827 is true.
3828 </summary>
3829 <param name="actual">
3830 Instance containing the expected value.
3831 </param>
3832 </member>
3833 <member name="M:MbUnit.Framework.ControlAssert.NotCanSelect(System.Windows.Forms.Control)">
3834 <summary>
3835 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect"/>
3836 is false.
3837 </summary>
3838 <param name="actual">
3839 Instance containing the expected value.
3840 </param>
3841 </member>
3842 <member name="M:MbUnit.Framework.ControlAssert.AreCanSelectEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3843 <summary>
3844 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect"/>
3845 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3846 </summary>
3847 <param name="expected">
3848 Instance containing the expected value.
3849 </param>
3850 <param name="actual">
3851 Instance containing the tested value.
3852 </param>
3853 </member>
3854 <member name="M:MbUnit.Framework.ControlAssert.AreCanSelectEqual(System.Boolean,System.Windows.Forms.Control)">
3855 <summary>
3856 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect"/>
3857 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3858 </summary>
3859 <param name="expected">
3860 Expected value.
3861 </param>
3862 <param name="actual">
3863 Instance containing the tested value.
3864 </param>
3865 </member>
3866 <member name="M:MbUnit.Framework.ControlAssert.Capture(System.Windows.Forms.Control)">
3867 <summary>
3868 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture"/>
3869 is true.
3870 </summary>
3871 <param name="actual">
3872 Instance containing the expected value.
3873 </param>
3874 </member>
3875 <member name="M:MbUnit.Framework.ControlAssert.NotCapture(System.Windows.Forms.Control)">
3876 <summary>
3877 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture"/>
3878 is false.
3879 </summary>
3880 <param name="actual">
3881 Instance containing the expected value.
3882 </param>
3883 </member>
3884 <member name="M:MbUnit.Framework.ControlAssert.AreCaptureEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3885 <summary>
3886 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture"/>
3887 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3888 </summary>
3889 <param name="expected">
3890 Instance containing the expected value.
3891 </param>
3892 <param name="actual">
3893 Instance containing the tested value.
3894 </param>
3895 </member>
3896 <member name="M:MbUnit.Framework.ControlAssert.AreCaptureEqual(System.Boolean,System.Windows.Forms.Control)">
3897 <summary>
3898 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture"/>
3899 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3900 </summary>
3901 <param name="expected">
3902 Expected value.
3903 </param>
3904 <param name="actual">
3905 Instance containing the tested value.
3906 </param>
3907 </member>
3908 <member name="M:MbUnit.Framework.ControlAssert.CausesValidation(System.Windows.Forms.Control)">
3909 <summary>
3910 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation"/>
3911 is true.
3912 </summary>
3913 <param name="actual">
3914 Instance containing the expected value.
3915 </param>
3916 </member>
3917 <member name="M:MbUnit.Framework.ControlAssert.NotCausesValidation(System.Windows.Forms.Control)">
3918 <summary>
3919 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation"/>
3920 is false.
3921 </summary>
3922 <param name="actual">
3923 Instance containing the expected value.
3924 </param>
3925 </member>
3926 <member name="M:MbUnit.Framework.ControlAssert.AreCausesValidationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3927 <summary>
3928 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation"/>
3929 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3930 </summary>
3931 <param name="expected">
3932 Instance containing the expected value.
3933 </param>
3934 <param name="actual">
3935 Instance containing the tested value.
3936 </param>
3937 </member>
3938 <member name="M:MbUnit.Framework.ControlAssert.AreCausesValidationEqual(System.Boolean,System.Windows.Forms.Control)">
3939 <summary>
3940 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation"/>
3941 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3942 </summary>
3943 <param name="expected">
3944 Expected value.
3945 </param>
3946 <param name="actual">
3947 Instance containing the tested value.
3948 </param>
3949 </member>
3950 <member name="M:MbUnit.Framework.ControlAssert.AreClientRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3951 <summary>
3952 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle"/>
3953 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3954 </summary>
3955 <param name="expected">
3956 Instance containing the expected value.
3957 </param>
3958 <param name="actual">
3959 Instance containing the tested value.
3960 </param>
3961 </member>
3962 <member name="M:MbUnit.Framework.ControlAssert.AreClientRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
3963 <summary>
3964 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle"/>
3965 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3966 </summary>
3967 <param name="expected">
3968 Expected value.
3969 </param>
3970 <param name="actual">
3971 Instance containing the tested value.
3972 </param>
3973 </member>
3974 <member name="M:MbUnit.Framework.ControlAssert.AreClientSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3975 <summary>
3976 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize"/>
3977 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
3978 </summary>
3979 <param name="expected">
3980 Instance containing the expected value.
3981 </param>
3982 <param name="actual">
3983 Instance containing the tested value.
3984 </param>
3985 </member>
3986 <member name="M:MbUnit.Framework.ControlAssert.AreClientSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
3987 <summary>
3988 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize"/>
3989 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
3990 </summary>
3991 <param name="expected">
3992 Expected value.
3993 </param>
3994 <param name="actual">
3995 Instance containing the tested value.
3996 </param>
3997 </member>
3998 <member name="M:MbUnit.Framework.ControlAssert.AreCompanyNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3999 <summary>
4000 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName"/>
4001 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4002 </summary>
4003 <param name="expected">
4004 Instance containing the expected value.
4005 </param>
4006 <param name="actual">
4007 Instance containing the tested value.
4008 </param>
4009 </member>
4010 <member name="M:MbUnit.Framework.ControlAssert.AreCompanyNameEqual(System.String,System.Windows.Forms.Control)">
4011 <summary>
4012 Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName"/>
4013 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4014 </summary>
4015 <param name="expected">
4016 Expected value.
4017 </param>
4018 <param name="actual">
4019 Instance containing the tested value.
4020 </param>
4021 </member>
4022 <member name="M:MbUnit.Framework.ControlAssert.ContainsFocus(System.Windows.Forms.Control)">
4023 <summary>
4024 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus"/>
4025 is true.
4026 </summary>
4027 <param name="actual">
4028 Instance containing the expected value.
4029 </param>
4030 </member>
4031 <member name="M:MbUnit.Framework.ControlAssert.NotContainsFocus(System.Windows.Forms.Control)">
4032 <summary>
4033 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus"/>
4034 is false.
4035 </summary>
4036 <param name="actual">
4037 Instance containing the expected value.
4038 </param>
4039 </member>
4040 <member name="M:MbUnit.Framework.ControlAssert.AreContainsFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4041 <summary>
4042 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus"/>
4043 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4044 </summary>
4045 <param name="expected">
4046 Instance containing the expected value.
4047 </param>
4048 <param name="actual">
4049 Instance containing the tested value.
4050 </param>
4051 </member>
4052 <member name="M:MbUnit.Framework.ControlAssert.AreContainsFocusEqual(System.Boolean,System.Windows.Forms.Control)">
4053 <summary>
4054 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus"/>
4055 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4056 </summary>
4057 <param name="expected">
4058 Expected value.
4059 </param>
4060 <param name="actual">
4061 Instance containing the tested value.
4062 </param>
4063 </member>
4064 <member name="M:MbUnit.Framework.ControlAssert.AreContextMenuEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4065 <summary>
4066 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu"/>
4067 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4068 </summary>
4069 <param name="expected">
4070 Instance containing the expected value.
4071 </param>
4072 <param name="actual">
4073 Instance containing the tested value.
4074 </param>
4075 </member>
4076 <member name="M:MbUnit.Framework.ControlAssert.AreContextMenuEqual(System.Windows.Forms.ContextMenu,System.Windows.Forms.Control)">
4077 <summary>
4078 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu"/>
4079 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4080 </summary>
4081 <param name="expected">
4082 Expected value.
4083 </param>
4084 <param name="actual">
4085 Instance containing the tested value.
4086 </param>
4087 </member>
4088 <member name="M:MbUnit.Framework.ControlAssert.AreControlsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4089 <summary>
4090 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls"/>
4091 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4092 </summary>
4093 <param name="expected">
4094 Instance containing the expected value.
4095 </param>
4096 <param name="actual">
4097 Instance containing the tested value.
4098 </param>
4099 </member>
4100 <member name="M:MbUnit.Framework.ControlAssert.AreControlsEqual(System.Windows.Forms.Control.ControlCollection,System.Windows.Forms.Control)">
4101 <summary>
4102 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls"/>
4103 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4104 </summary>
4105 <param name="expected">
4106 Expected value.
4107 </param>
4108 <param name="actual">
4109 Instance containing the tested value.
4110 </param>
4111 </member>
4112 <member name="M:MbUnit.Framework.ControlAssert.Created(System.Windows.Forms.Control)">
4113 <summary>
4114 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created"/>
4115 is true.
4116 </summary>
4117 <param name="actual">
4118 Instance containing the expected value.
4119 </param>
4120 </member>
4121 <member name="M:MbUnit.Framework.ControlAssert.NotCreated(System.Windows.Forms.Control)">
4122 <summary>
4123 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created"/>
4124 is false.
4125 </summary>
4126 <param name="actual">
4127 Instance containing the expected value.
4128 </param>
4129 </member>
4130 <member name="M:MbUnit.Framework.ControlAssert.AreCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4131 <summary>
4132 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created"/>
4133 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4134 </summary>
4135 <param name="expected">
4136 Instance containing the expected value.
4137 </param>
4138 <param name="actual">
4139 Instance containing the tested value.
4140 </param>
4141 </member>
4142 <member name="M:MbUnit.Framework.ControlAssert.AreCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
4143 <summary>
4144 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created"/>
4145 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4146 </summary>
4147 <param name="expected">
4148 Expected value.
4149 </param>
4150 <param name="actual">
4151 Instance containing the tested value.
4152 </param>
4153 </member>
4154 <member name="M:MbUnit.Framework.ControlAssert.AreCursorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4155 <summary>
4156 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor"/>
4157 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4158 </summary>
4159 <param name="expected">
4160 Instance containing the expected value.
4161 </param>
4162 <param name="actual">
4163 Instance containing the tested value.
4164 </param>
4165 </member>
4166 <member name="M:MbUnit.Framework.ControlAssert.AreCursorEqual(System.Windows.Forms.Cursor,System.Windows.Forms.Control)">
4167 <summary>
4168 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor"/>
4169 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4170 </summary>
4171 <param name="expected">
4172 Expected value.
4173 </param>
4174 <param name="actual">
4175 Instance containing the tested value.
4176 </param>
4177 </member>
4178 <member name="M:MbUnit.Framework.ControlAssert.AreDisplayRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4179 <summary>
4180 Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle"/>
4181 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4182 </summary>
4183 <param name="expected">
4184 Instance containing the expected value.
4185 </param>
4186 <param name="actual">
4187 Instance containing the tested value.
4188 </param>
4189 </member>
4190 <member name="M:MbUnit.Framework.ControlAssert.AreDisplayRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
4191 <summary>
4192 Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle"/>
4193 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4194 </summary>
4195 <param name="expected">
4196 Expected value.
4197 </param>
4198 <param name="actual">
4199 Instance containing the tested value.
4200 </param>
4201 </member>
4202 <member name="M:MbUnit.Framework.ControlAssert.IsDisposed(System.Windows.Forms.Control)">
4203 <summary>
4204 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed"/>
4205 is true.
4206 </summary>
4207 <param name="actual">
4208 Instance containing the expected value.
4209 </param>
4210 </member>
4211 <member name="M:MbUnit.Framework.ControlAssert.IsNotisposed(System.Windows.Forms.Control)">
4212 <summary>
4213 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed"/>
4214 is false.
4215 </summary>
4216 <param name="actual">
4217 Instance containing the expected value.
4218 </param>
4219 </member>
4220 <member name="M:MbUnit.Framework.ControlAssert.AreIsDisposedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4221 <summary>
4222 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed"/>
4223 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4224 </summary>
4225 <param name="expected">
4226 Instance containing the expected value.
4227 </param>
4228 <param name="actual">
4229 Instance containing the tested value.
4230 </param>
4231 </member>
4232 <member name="M:MbUnit.Framework.ControlAssert.AreIsDisposedEqual(System.Boolean,System.Windows.Forms.Control)">
4233 <summary>
4234 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed"/>
4235 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4236 </summary>
4237 <param name="expected">
4238 Expected value.
4239 </param>
4240 <param name="actual">
4241 Instance containing the tested value.
4242 </param>
4243 </member>
4244 <member name="M:MbUnit.Framework.ControlAssert.Disposing(System.Windows.Forms.Control)">
4245 <summary>
4246 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing"/>
4247 is true.
4248 </summary>
4249 <param name="actual">
4250 Instance containing the expected value.
4251 </param>
4252 </member>
4253 <member name="M:MbUnit.Framework.ControlAssert.NotDisposing(System.Windows.Forms.Control)">
4254 <summary>
4255 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing"/>
4256 is false.
4257 </summary>
4258 <param name="actual">
4259 Instance containing the expected value.
4260 </param>
4261 </member>
4262 <member name="M:MbUnit.Framework.ControlAssert.AreDisposingEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4263 <summary>
4264 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing"/>
4265 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4266 </summary>
4267 <param name="expected">
4268 Instance containing the expected value.
4269 </param>
4270 <param name="actual">
4271 Instance containing the tested value.
4272 </param>
4273 </member>
4274 <member name="M:MbUnit.Framework.ControlAssert.AreDisposingEqual(System.Boolean,System.Windows.Forms.Control)">
4275 <summary>
4276 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing"/>
4277 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4278 </summary>
4279 <param name="expected">
4280 Expected value.
4281 </param>
4282 <param name="actual">
4283 Instance containing the tested value.
4284 </param>
4285 </member>
4286 <member name="M:MbUnit.Framework.ControlAssert.AreDockEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4287 <summary>
4288 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock"/>
4289 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4290 </summary>
4291 <param name="expected">
4292 Instance containing the expected value.
4293 </param>
4294 <param name="actual">
4295 Instance containing the tested value.
4296 </param>
4297 </member>
4298 <member name="M:MbUnit.Framework.ControlAssert.AreDockEqual(System.Windows.Forms.DockStyle,System.Windows.Forms.Control)">
4299 <summary>
4300 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock"/>
4301 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4302 </summary>
4303 <param name="expected">
4304 Expected value.
4305 </param>
4306 <param name="actual">
4307 Instance containing the tested value.
4308 </param>
4309 </member>
4310 <member name="M:MbUnit.Framework.ControlAssert.Enabled(System.Windows.Forms.Control)">
4311 <summary>
4312 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled"/>
4313 is true.
4314 </summary>
4315 <param name="actual">
4316 Instance containing the expected value.
4317 </param>
4318 </member>
4319 <member name="M:MbUnit.Framework.ControlAssert.NotEnabled(System.Windows.Forms.Control)">
4320 <summary>
4321 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled"/>
4322 is false.
4323 </summary>
4324 <param name="actual">
4325 Instance containing the expected value.
4326 </param>
4327 </member>
4328 <member name="M:MbUnit.Framework.ControlAssert.AreEnabledEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4329 <summary>
4330 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled"/>
4331 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4332 </summary>
4333 <param name="expected">
4334 Instance containing the expected value.
4335 </param>
4336 <param name="actual">
4337 Instance containing the tested value.
4338 </param>
4339 </member>
4340 <member name="M:MbUnit.Framework.ControlAssert.AreEnabledEqual(System.Boolean,System.Windows.Forms.Control)">
4341 <summary>
4342 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled"/>
4343 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4344 </summary>
4345 <param name="expected">
4346 Expected value.
4347 </param>
4348 <param name="actual">
4349 Instance containing the tested value.
4350 </param>
4351 </member>
4352 <member name="M:MbUnit.Framework.ControlAssert.Focused(System.Windows.Forms.Control)">
4353 <summary>
4354 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused"/>
4355 is true.
4356 </summary>
4357 <param name="actual">
4358 Instance containing the expected value.
4359 </param>
4360 </member>
4361 <member name="M:MbUnit.Framework.ControlAssert.NotFocused(System.Windows.Forms.Control)">
4362 <summary>
4363 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused"/>
4364 is false.
4365 </summary>
4366 <param name="actual">
4367 Instance containing the expected value.
4368 </param>
4369 </member>
4370 <member name="M:MbUnit.Framework.ControlAssert.AreFocusedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4371 <summary>
4372 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused"/>
4373 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4374 </summary>
4375 <param name="expected">
4376 Instance containing the expected value.
4377 </param>
4378 <param name="actual">
4379 Instance containing the tested value.
4380 </param>
4381 </member>
4382 <member name="M:MbUnit.Framework.ControlAssert.AreFocusedEqual(System.Boolean,System.Windows.Forms.Control)">
4383 <summary>
4384 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused"/>
4385 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4386 </summary>
4387 <param name="expected">
4388 Expected value.
4389 </param>
4390 <param name="actual">
4391 Instance containing the tested value.
4392 </param>
4393 </member>
4394 <member name="M:MbUnit.Framework.ControlAssert.AreFontEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4395 <summary>
4396 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font"/>
4397 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4398 </summary>
4399 <param name="expected">
4400 Instance containing the expected value.
4401 </param>
4402 <param name="actual">
4403 Instance containing the tested value.
4404 </param>
4405 </member>
4406 <member name="M:MbUnit.Framework.ControlAssert.AreFontEqual(System.Drawing.Font,System.Windows.Forms.Control)">
4407 <summary>
4408 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font"/>
4409 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4410 </summary>
4411 <param name="expected">
4412 Expected value.
4413 </param>
4414 <param name="actual">
4415 Instance containing the tested value.
4416 </param>
4417 </member>
4418 <member name="M:MbUnit.Framework.ControlAssert.AreForeColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4419 <summary>
4420 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor"/>
4421 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4422 </summary>
4423 <param name="expected">
4424 Instance containing the expected value.
4425 </param>
4426 <param name="actual">
4427 Instance containing the tested value.
4428 </param>
4429 </member>
4430 <member name="M:MbUnit.Framework.ControlAssert.AreForeColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
4431 <summary>
4432 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor"/>
4433 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4434 </summary>
4435 <param name="expected">
4436 Expected value.
4437 </param>
4438 <param name="actual">
4439 Instance containing the tested value.
4440 </param>
4441 </member>
4442 <member name="M:MbUnit.Framework.ControlAssert.AreHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4443 <summary>
4444 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle"/>
4445 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4446 </summary>
4447 <param name="expected">
4448 Instance containing the expected value.
4449 </param>
4450 <param name="actual">
4451 Instance containing the tested value.
4452 </param>
4453 </member>
4454 <member name="M:MbUnit.Framework.ControlAssert.AreHandleEqual(System.IntPtr,System.Windows.Forms.Control)">
4455 <summary>
4456 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle"/>
4457 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4458 </summary>
4459 <param name="expected">
4460 Expected value.
4461 </param>
4462 <param name="actual">
4463 Instance containing the tested value.
4464 </param>
4465 </member>
4466 <member name="M:MbUnit.Framework.ControlAssert.HasChildren(System.Windows.Forms.Control)">
4467 <summary>
4468 Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren"/>
4469 is true.
4470 </summary>
4471 <param name="actual">
4472 Instance containing the expected value.
4473 </param>
4474 </member>
4475 <member name="M:MbUnit.Framework.ControlAssert.NotHasChildren(System.Windows.Forms.Control)">
4476 <summary>
4477 Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren"/>
4478 is false.
4479 </summary>
4480 <param name="actual">
4481 Instance containing the expected value.
4482 </param>
4483 </member>
4484 <member name="M:MbUnit.Framework.ControlAssert.AreHasChildrenEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4485 <summary>
4486 Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren"/>
4487 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4488 </summary>
4489 <param name="expected">
4490 Instance containing the expected value.
4491 </param>
4492 <param name="actual">
4493 Instance containing the tested value.
4494 </param>
4495 </member>
4496 <member name="M:MbUnit.Framework.ControlAssert.AreHasChildrenEqual(System.Boolean,System.Windows.Forms.Control)">
4497 <summary>
4498 Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren"/>
4499 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4500 </summary>
4501 <param name="expected">
4502 Expected value.
4503 </param>
4504 <param name="actual">
4505 Instance containing the tested value.
4506 </param>
4507 </member>
4508 <member name="M:MbUnit.Framework.ControlAssert.AreHeightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4509 <summary>
4510 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height"/>
4511 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4512 </summary>
4513 <param name="expected">
4514 Instance containing the expected value.
4515 </param>
4516 <param name="actual">
4517 Instance containing the tested value.
4518 </param>
4519 </member>
4520 <member name="M:MbUnit.Framework.ControlAssert.AreHeightEqual(System.Int32,System.Windows.Forms.Control)">
4521 <summary>
4522 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height"/>
4523 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4524 </summary>
4525 <param name="expected">
4526 Expected value.
4527 </param>
4528 <param name="actual">
4529 Instance containing the tested value.
4530 </param>
4531 </member>
4532 <member name="M:MbUnit.Framework.ControlAssert.IsHandleCreated(System.Windows.Forms.Control)">
4533 <summary>
4534 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated"/>
4535 is true.
4536 </summary>
4537 <param name="actual">
4538 Instance containing the expected value.
4539 </param>
4540 </member>
4541 <member name="M:MbUnit.Framework.ControlAssert.IsNotandleCreated(System.Windows.Forms.Control)">
4542 <summary>
4543 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated"/>
4544 is false.
4545 </summary>
4546 <param name="actual">
4547 Instance containing the expected value.
4548 </param>
4549 </member>
4550 <member name="M:MbUnit.Framework.ControlAssert.AreIsHandleCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4551 <summary>
4552 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated"/>
4553 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4554 </summary>
4555 <param name="expected">
4556 Instance containing the expected value.
4557 </param>
4558 <param name="actual">
4559 Instance containing the tested value.
4560 </param>
4561 </member>
4562 <member name="M:MbUnit.Framework.ControlAssert.AreIsHandleCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
4563 <summary>
4564 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated"/>
4565 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4566 </summary>
4567 <param name="expected">
4568 Expected value.
4569 </param>
4570 <param name="actual">
4571 Instance containing the tested value.
4572 </param>
4573 </member>
4574 <member name="M:MbUnit.Framework.ControlAssert.AreImeModeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4575 <summary>
4576 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode"/>
4577 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4578 </summary>
4579 <param name="expected">
4580 Instance containing the expected value.
4581 </param>
4582 <param name="actual">
4583 Instance containing the tested value.
4584 </param>
4585 </member>
4586 <member name="M:MbUnit.Framework.ControlAssert.AreImeModeEqual(System.Windows.Forms.ImeMode,System.Windows.Forms.Control)">
4587 <summary>
4588 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode"/>
4589 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4590 </summary>
4591 <param name="expected">
4592 Expected value.
4593 </param>
4594 <param name="actual">
4595 Instance containing the tested value.
4596 </param>
4597 </member>
4598 <member name="M:MbUnit.Framework.ControlAssert.InvokeRequired(System.Windows.Forms.Control)">
4599 <summary>
4600 Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired"/>
4601 is true.
4602 </summary>
4603 <param name="actual">
4604 Instance containing the expected value.
4605 </param>
4606 </member>
4607 <member name="M:MbUnit.Framework.ControlAssert.NotInvokeRequired(System.Windows.Forms.Control)">
4608 <summary>
4609 Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired"/>
4610 is false.
4611 </summary>
4612 <param name="actual">
4613 Instance containing the expected value.
4614 </param>
4615 </member>
4616 <member name="M:MbUnit.Framework.ControlAssert.AreInvokeRequiredEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4617 <summary>
4618 Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired"/>
4619 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4620 </summary>
4621 <param name="expected">
4622 Instance containing the expected value.
4623 </param>
4624 <param name="actual">
4625 Instance containing the tested value.
4626 </param>
4627 </member>
4628 <member name="M:MbUnit.Framework.ControlAssert.AreInvokeRequiredEqual(System.Boolean,System.Windows.Forms.Control)">
4629 <summary>
4630 Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired"/>
4631 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4632 </summary>
4633 <param name="expected">
4634 Expected value.
4635 </param>
4636 <param name="actual">
4637 Instance containing the tested value.
4638 </param>
4639 </member>
4640 <member name="M:MbUnit.Framework.ControlAssert.IsAccessible(System.Windows.Forms.Control)">
4641 <summary>
4642 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible"/>
4643 is true.
4644 </summary>
4645 <param name="actual">
4646 Instance containing the expected value.
4647 </param>
4648 </member>
4649 <member name="M:MbUnit.Framework.ControlAssert.IsNotccessible(System.Windows.Forms.Control)">
4650 <summary>
4651 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible"/>
4652 is false.
4653 </summary>
4654 <param name="actual">
4655 Instance containing the expected value.
4656 </param>
4657 </member>
4658 <member name="M:MbUnit.Framework.ControlAssert.AreIsAccessibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4659 <summary>
4660 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible"/>
4661 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4662 </summary>
4663 <param name="expected">
4664 Instance containing the expected value.
4665 </param>
4666 <param name="actual">
4667 Instance containing the tested value.
4668 </param>
4669 </member>
4670 <member name="M:MbUnit.Framework.ControlAssert.AreIsAccessibleEqual(System.Boolean,System.Windows.Forms.Control)">
4671 <summary>
4672 Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible"/>
4673 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4674 </summary>
4675 <param name="expected">
4676 Expected value.
4677 </param>
4678 <param name="actual">
4679 Instance containing the tested value.
4680 </param>
4681 </member>
4682 <member name="M:MbUnit.Framework.ControlAssert.AreLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4683 <summary>
4684 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left"/>
4685 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4686 </summary>
4687 <param name="expected">
4688 Instance containing the expected value.
4689 </param>
4690 <param name="actual">
4691 Instance containing the tested value.
4692 </param>
4693 </member>
4694 <member name="M:MbUnit.Framework.ControlAssert.AreLeftEqual(System.Int32,System.Windows.Forms.Control)">
4695 <summary>
4696 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left"/>
4697 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4698 </summary>
4699 <param name="expected">
4700 Expected value.
4701 </param>
4702 <param name="actual">
4703 Instance containing the tested value.
4704 </param>
4705 </member>
4706 <member name="M:MbUnit.Framework.ControlAssert.AreLocationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4707 <summary>
4708 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location"/>
4709 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4710 </summary>
4711 <param name="expected">
4712 Instance containing the expected value.
4713 </param>
4714 <param name="actual">
4715 Instance containing the tested value.
4716 </param>
4717 </member>
4718 <member name="M:MbUnit.Framework.ControlAssert.AreLocationEqual(System.Drawing.Point,System.Windows.Forms.Control)">
4719 <summary>
4720 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location"/>
4721 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4722 </summary>
4723 <param name="expected">
4724 Expected value.
4725 </param>
4726 <param name="actual">
4727 Instance containing the tested value.
4728 </param>
4729 </member>
4730 <member name="M:MbUnit.Framework.ControlAssert.AreNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4731 <summary>
4732 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name"/>
4733 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4734 </summary>
4735 <param name="expected">
4736 Instance containing the expected value.
4737 </param>
4738 <param name="actual">
4739 Instance containing the tested value.
4740 </param>
4741 </member>
4742 <member name="M:MbUnit.Framework.ControlAssert.AreNameEqual(System.String,System.Windows.Forms.Control)">
4743 <summary>
4744 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name"/>
4745 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4746 </summary>
4747 <param name="expected">
4748 Expected value.
4749 </param>
4750 <param name="actual">
4751 Instance containing the tested value.
4752 </param>
4753 </member>
4754 <member name="M:MbUnit.Framework.ControlAssert.AreParentEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4755 <summary>
4756 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Parent"/>
4757 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4758 </summary>
4759 <param name="expected">
4760 Instance containing the expected value.
4761 </param>
4762 <param name="actual">
4763 Instance containing the tested value.
4764 </param>
4765 </member>
4766 <member name="M:MbUnit.Framework.ControlAssert.AreProductNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4767 <summary>
4768 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName"/>
4769 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4770 </summary>
4771 <param name="expected">
4772 Instance containing the expected value.
4773 </param>
4774 <param name="actual">
4775 Instance containing the tested value.
4776 </param>
4777 </member>
4778 <member name="M:MbUnit.Framework.ControlAssert.AreProductNameEqual(System.String,System.Windows.Forms.Control)">
4779 <summary>
4780 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName"/>
4781 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4782 </summary>
4783 <param name="expected">
4784 Expected value.
4785 </param>
4786 <param name="actual">
4787 Instance containing the tested value.
4788 </param>
4789 </member>
4790 <member name="M:MbUnit.Framework.ControlAssert.AreProductVersionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4791 <summary>
4792 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion"/>
4793 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4794 </summary>
4795 <param name="expected">
4796 Instance containing the expected value.
4797 </param>
4798 <param name="actual">
4799 Instance containing the tested value.
4800 </param>
4801 </member>
4802 <member name="M:MbUnit.Framework.ControlAssert.AreProductVersionEqual(System.String,System.Windows.Forms.Control)">
4803 <summary>
4804 Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion"/>
4805 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4806 </summary>
4807 <param name="expected">
4808 Expected value.
4809 </param>
4810 <param name="actual">
4811 Instance containing the tested value.
4812 </param>
4813 </member>
4814 <member name="M:MbUnit.Framework.ControlAssert.RecreatingHandle(System.Windows.Forms.Control)">
4815 <summary>
4816 Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle"/>
4817 is true.
4818 </summary>
4819 <param name="actual">
4820 Instance containing the expected value.
4821 </param>
4822 </member>
4823 <member name="M:MbUnit.Framework.ControlAssert.NotRecreatingHandle(System.Windows.Forms.Control)">
4824 <summary>
4825 Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle"/>
4826 is false.
4827 </summary>
4828 <param name="actual">
4829 Instance containing the expected value.
4830 </param>
4831 </member>
4832 <member name="M:MbUnit.Framework.ControlAssert.AreRecreatingHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4833 <summary>
4834 Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle"/>
4835 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4836 </summary>
4837 <param name="expected">
4838 Instance containing the expected value.
4839 </param>
4840 <param name="actual">
4841 Instance containing the tested value.
4842 </param>
4843 </member>
4844 <member name="M:MbUnit.Framework.ControlAssert.AreRecreatingHandleEqual(System.Boolean,System.Windows.Forms.Control)">
4845 <summary>
4846 Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle"/>
4847 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4848 </summary>
4849 <param name="expected">
4850 Expected value.
4851 </param>
4852 <param name="actual">
4853 Instance containing the tested value.
4854 </param>
4855 </member>
4856 <member name="M:MbUnit.Framework.ControlAssert.AreRegionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4857 <summary>
4858 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region"/>
4859 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4860 </summary>
4861 <param name="expected">
4862 Instance containing the expected value.
4863 </param>
4864 <param name="actual">
4865 Instance containing the tested value.
4866 </param>
4867 </member>
4868 <member name="M:MbUnit.Framework.ControlAssert.AreRegionEqual(System.Drawing.Region,System.Windows.Forms.Control)">
4869 <summary>
4870 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region"/>
4871 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4872 </summary>
4873 <param name="expected">
4874 Expected value.
4875 </param>
4876 <param name="actual">
4877 Instance containing the tested value.
4878 </param>
4879 </member>
4880 <member name="M:MbUnit.Framework.ControlAssert.AreRightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4881 <summary>
4882 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right"/>
4883 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4884 </summary>
4885 <param name="expected">
4886 Instance containing the expected value.
4887 </param>
4888 <param name="actual">
4889 Instance containing the tested value.
4890 </param>
4891 </member>
4892 <member name="M:MbUnit.Framework.ControlAssert.AreRightEqual(System.Int32,System.Windows.Forms.Control)">
4893 <summary>
4894 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right"/>
4895 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4896 </summary>
4897 <param name="expected">
4898 Expected value.
4899 </param>
4900 <param name="actual">
4901 Instance containing the tested value.
4902 </param>
4903 </member>
4904 <member name="M:MbUnit.Framework.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4905 <summary>
4906 Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft"/>
4907 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4908 </summary>
4909 <param name="expected">
4910 Instance containing the expected value.
4911 </param>
4912 <param name="actual">
4913 Instance containing the tested value.
4914 </param>
4915 </member>
4916 <member name="M:MbUnit.Framework.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.RightToLeft,System.Windows.Forms.Control)">
4917 <summary>
4918 Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft"/>
4919 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4920 </summary>
4921 <param name="expected">
4922 Expected value.
4923 </param>
4924 <param name="actual">
4925 Instance containing the tested value.
4926 </param>
4927 </member>
4928 <member name="M:MbUnit.Framework.ControlAssert.AreSiteEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4929 <summary>
4930 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site"/>
4931 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4932 </summary>
4933 <param name="expected">
4934 Instance containing the expected value.
4935 </param>
4936 <param name="actual">
4937 Instance containing the tested value.
4938 </param>
4939 </member>
4940 <member name="M:MbUnit.Framework.ControlAssert.AreSiteEqual(System.ComponentModel.ISite,System.Windows.Forms.Control)">
4941 <summary>
4942 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site"/>
4943 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4944 </summary>
4945 <param name="expected">
4946 Expected value.
4947 </param>
4948 <param name="actual">
4949 Instance containing the tested value.
4950 </param>
4951 </member>
4952 <member name="M:MbUnit.Framework.ControlAssert.AreSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4953 <summary>
4954 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size"/>
4955 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4956 </summary>
4957 <param name="expected">
4958 Instance containing the expected value.
4959 </param>
4960 <param name="actual">
4961 Instance containing the tested value.
4962 </param>
4963 </member>
4964 <member name="M:MbUnit.Framework.ControlAssert.AreSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
4965 <summary>
4966 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size"/>
4967 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4968 </summary>
4969 <param name="expected">
4970 Expected value.
4971 </param>
4972 <param name="actual">
4973 Instance containing the tested value.
4974 </param>
4975 </member>
4976 <member name="M:MbUnit.Framework.ControlAssert.AreTabIndexEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
4977 <summary>
4978 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex"/>
4979 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
4980 </summary>
4981 <param name="expected">
4982 Instance containing the expected value.
4983 </param>
4984 <param name="actual">
4985 Instance containing the tested value.
4986 </param>
4987 </member>
4988 <member name="M:MbUnit.Framework.ControlAssert.AreTabIndexEqual(System.Int32,System.Windows.Forms.Control)">
4989 <summary>
4990 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex"/>
4991 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
4992 </summary>
4993 <param name="expected">
4994 Expected value.
4995 </param>
4996 <param name="actual">
4997 Instance containing the tested value.
4998 </param>
4999 </member>
5000 <member name="M:MbUnit.Framework.ControlAssert.TabStop(System.Windows.Forms.Control)">
5001 <summary>
5002 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop"/>
5003 is true.
5004 </summary>
5005 <param name="actual">
5006 Instance containing the expected value.
5007 </param>
5008 </member>
5009 <member name="M:MbUnit.Framework.ControlAssert.NotTabStop(System.Windows.Forms.Control)">
5010 <summary>
5011 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop"/>
5012 is false.
5013 </summary>
5014 <param name="actual">
5015 Instance containing the expected value.
5016 </param>
5017 </member>
5018 <member name="M:MbUnit.Framework.ControlAssert.AreTabStopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5019 <summary>
5020 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop"/>
5021 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5022 </summary>
5023 <param name="expected">
5024 Instance containing the expected value.
5025 </param>
5026 <param name="actual">
5027 Instance containing the tested value.
5028 </param>
5029 </member>
5030 <member name="M:MbUnit.Framework.ControlAssert.AreTabStopEqual(System.Boolean,System.Windows.Forms.Control)">
5031 <summary>
5032 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop"/>
5033 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5034 </summary>
5035 <param name="expected">
5036 Expected value.
5037 </param>
5038 <param name="actual">
5039 Instance containing the tested value.
5040 </param>
5041 </member>
5042 <member name="M:MbUnit.Framework.ControlAssert.AreTagEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5043 <summary>
5044 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag"/>
5045 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5046 </summary>
5047 <param name="expected">
5048 Instance containing the expected value.
5049 </param>
5050 <param name="actual">
5051 Instance containing the tested value.
5052 </param>
5053 </member>
5054 <member name="M:MbUnit.Framework.ControlAssert.AreTagEqual(System.Object,System.Windows.Forms.Control)">
5055 <summary>
5056 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag"/>
5057 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5058 </summary>
5059 <param name="expected">
5060 Expected value.
5061 </param>
5062 <param name="actual">
5063 Instance containing the tested value.
5064 </param>
5065 </member>
5066 <member name="M:MbUnit.Framework.ControlAssert.AreTextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5067 <summary>
5068 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text"/>
5069 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5070 </summary>
5071 <param name="expected">
5072 Instance containing the expected value.
5073 </param>
5074 <param name="actual">
5075 Instance containing the tested value.
5076 </param>
5077 </member>
5078 <member name="M:MbUnit.Framework.ControlAssert.AreTextEqual(System.String,System.Windows.Forms.Control)">
5079 <summary>
5080 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text"/>
5081 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5082 </summary>
5083 <param name="expected">
5084 Expected value.
5085 </param>
5086 <param name="actual">
5087 Instance containing the tested value.
5088 </param>
5089 </member>
5090 <member name="M:MbUnit.Framework.ControlAssert.AreTopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5091 <summary>
5092 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top"/>
5093 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5094 </summary>
5095 <param name="expected">
5096 Instance containing the expected value.
5097 </param>
5098 <param name="actual">
5099 Instance containing the tested value.
5100 </param>
5101 </member>
5102 <member name="M:MbUnit.Framework.ControlAssert.AreTopEqual(System.Int32,System.Windows.Forms.Control)">
5103 <summary>
5104 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top"/>
5105 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5106 </summary>
5107 <param name="expected">
5108 Expected value.
5109 </param>
5110 <param name="actual">
5111 Instance containing the tested value.
5112 </param>
5113 </member>
5114 <member name="M:MbUnit.Framework.ControlAssert.AreTopLevelControlEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5115 <summary>
5116 Verifies that the property value <see cref="P:System.Windows.Forms.Control.TopLevelControl"/>
5117 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5118 </summary>
5119 <param name="expected">
5120 Instance containing the expected value.
5121 </param>
5122 <param name="actual">
5123 Instance containing the tested value.
5124 </param>
5125 </member>
5126 <member name="M:MbUnit.Framework.ControlAssert.Visible(System.Windows.Forms.Control)">
5127 <summary>
5128 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible"/>
5129 is true.
5130 </summary>
5131 <param name="actual">
5132 Instance containing the expected value.
5133 </param>
5134 </member>
5135 <member name="M:MbUnit.Framework.ControlAssert.NotVisible(System.Windows.Forms.Control)">
5136 <summary>
5137 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible"/>
5138 is false.
5139 </summary>
5140 <param name="actual">
5141 Instance containing the expected value.
5142 </param>
5143 </member>
5144 <member name="M:MbUnit.Framework.ControlAssert.AreVisibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5145 <summary>
5146 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible"/>
5147 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5148 </summary>
5149 <param name="expected">
5150 Instance containing the expected value.
5151 </param>
5152 <param name="actual">
5153 Instance containing the tested value.
5154 </param>
5155 </member>
5156 <member name="M:MbUnit.Framework.ControlAssert.AreVisibleEqual(System.Boolean,System.Windows.Forms.Control)">
5157 <summary>
5158 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible"/>
5159 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5160 </summary>
5161 <param name="expected">
5162 Expected value.
5163 </param>
5164 <param name="actual">
5165 Instance containing the tested value.
5166 </param>
5167 </member>
5168 <member name="M:MbUnit.Framework.ControlAssert.AreWidthEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5169 <summary>
5170 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width"/>
5171 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5172 </summary>
5173 <param name="expected">
5174 Instance containing the expected value.
5175 </param>
5176 <param name="actual">
5177 Instance containing the tested value.
5178 </param>
5179 </member>
5180 <member name="M:MbUnit.Framework.ControlAssert.AreWidthEqual(System.Int32,System.Windows.Forms.Control)">
5181 <summary>
5182 Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width"/>
5183 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5184 </summary>
5185 <param name="expected">
5186 Expected value.
5187 </param>
5188 <param name="actual">
5189 Instance containing the tested value.
5190 </param>
5191 </member>
5192 <member name="M:MbUnit.Framework.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5193 <summary>
5194 Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget"/>
5195 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5196 </summary>
5197 <param name="expected">
5198 Instance containing the expected value.
5199 </param>
5200 <param name="actual">
5201 Instance containing the tested value.
5202 </param>
5203 </member>
5204 <member name="M:MbUnit.Framework.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.IWindowTarget,System.Windows.Forms.Control)">
5205 <summary>
5206 Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget"/>
5207 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5208 </summary>
5209 <param name="expected">
5210 Expected value.
5211 </param>
5212 <param name="actual">
5213 Instance containing the tested value.
5214 </param>
5215 </member>
5216 <member name="M:MbUnit.Framework.ControlAssert.AreContainerEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
5217 <summary>
5218 Verifies that the property value <see cref="P:System.ComponentModel.Component.Container"/>
5219 of <paramref name="expected"/> and <paramref name="actual"/> are equal.
5220 </summary>
5221 <param name="expected">
5222 Instance containing the expected value.
5223 </param>
5224 <param name="actual">
5225 Instance containing the tested value.
5226 </param>
5227 </member>
5228 <member name="M:MbUnit.Framework.ControlAssert.AreContainerEqual(System.ComponentModel.IContainer,System.Windows.Forms.Control)">
5229 <summary>
5230 Verifies that the property value <see cref="P:System.ComponentModel.Component.Container"/>
5231 of <paramref name="actual"/> is equal to <paramref name="expected"/>.
5232 </summary>
5233 <param name="expected">
5234 Expected value.
5235 </param>
5236 <param name="actual">
5237 Instance containing the tested value.
5238 </param>
5239 </member>
5240 <member name="T:MbUnit.Framework.CopyToProviderAttribute">
5241 <summary>
5242 Tags method that provider a new object and copy the content of the arguments
5243 into the object
5244 </summary>
5245 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='CopyToProviderAttribute']"/>
5246 </member>
5247 <member name="T:MbUnit.Framework.ProviderAttribute">
5248 <summary>
5249 Tags method that provide new object to be used in the following tests.
5250 </summary>
5251 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='ProviderAttribute']"/>
5252 </member>
5253 <member name="M:MbUnit.Framework.ProviderAttribute.#ctor(System.Type)">
5254 <summary>
5255 Constructs a provider attribute for the <paramref name="providerType"/>
5256 type.
5257 </summary>
5258 <param name="providerType">provider type</param>
5259 </member>
5260 <member name="M:MbUnit.Framework.ProviderAttribute.#ctor(System.Type,System.String)">
5261 <summary>
5262 Constructs a provider attribute for the <paramref name="providerType"/>
5263 type.
5264 </summary>
5265 <param name="providerType">provider type</param>
5266 <param name="description">description of the provider</param>
5267 </member>
5268 <member name="P:MbUnit.Framework.ProviderAttribute.ProviderType">
5269 <summary>
5270 Gets or sets the provided type
5271 </summary>
5272 <value>
5273 Provided type.
5274 </value>
5275 </member>
5276 <member name="T:MbUnit.Core.AssemblyEventArgs">
5277 <summary>
5278 Event argument that contains an assembly.
5279 </summary>
5280 </member>
5281 <member name="M:MbUnit.Core.AssemblyEventArgs.#ctor(System.Reflection.Assembly)">
5282 <summary>
5283 Creates a new <see cref="T:MbUnit.Core.AssemblyEventArgs"/> event argument.
5284 </summary>
5285 </member>
5286 <member name="T:MbUnit.Core.AssemblyEventHandler">
5287 <summary>Assembly event delegate</summary>
5288 </member>
5289 <member name="T:MbUnit.Core.Collections.AssemblyCollection">
5290 <summary>
5291 A collection of elements of type Assembly
5292 </summary>
5293 </member>
5294 <member name="M:MbUnit.Core.Collections.AssemblyCollection.#ctor">
5295 <summary>
5296 Initializes a new empty instance of the AssemblyCollection class.
5297 </summary>
5298 </member>
5299 <member name="M:MbUnit.Core.Collections.AssemblyCollection.Add(System.Reflection.Assembly)">
5300 <summary>
5301 Adds an instance of type Assembly to the end of this AssemblyCollection.
5302 </summary>
5303 <param name="value">
5304 The Assembly to be added to the end of this AssemblyCollection.
5305 </param>
5306 </member>
5307 <member name="M:MbUnit.Core.Collections.AssemblyCollection.Contains(System.Reflection.Assembly)">
5308 <summary>
5309 Determines whether a specfic Assembly value is in this AssemblyCollection.
5310 </summary>
5311 <param name="value">
5312 The Assembly value to locate in this AssemblyCollection.
5313 </param>
5314 <returns>
5315 true if value is found in this AssemblyCollection;
5316 false otherwise.
5317 </returns>
5318 </member>
5319 <member name="M:MbUnit.Core.Collections.AssemblyCollection.Remove(System.Reflection.Assembly)">
5320 <summary>
5321 Removes the first occurrence of a specific Assembly from this AssemblyCollection.
5322 </summary>
5323 <param name="value">
5324 The Assembly value to remove from this AssemblyCollection.
5325 </param>
5326 </member>
5327 <member name="M:MbUnit.Core.Collections.AssemblyCollection.GetEnumerator">
5328 <summary>
5329 Returns an enumerator that can iterate through the elements of this AssemblyCollection.
5330 </summary>
5331 <returns>
5332 An object that implements System.Collections.IEnumerator.
5333 </returns>
5334 </member>
5335 <member name="P:MbUnit.Core.Collections.AssemblyCollection.Item(System.Int32)">
5336 <summary>
5337 Gets or sets the Assembly at the given index in this AssemblyCollection.
5338 </summary>
5339 </member>
5340 <member name="T:MbUnit.Core.Collections.AssemblyCollection.Enumerator">
5341 <summary>
5342 Type-specific enumeration class, used by AssemblyCollection.GetEnumerator.
5343 </summary>
5344 </member>
5345 <member name="T:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary">
5346 <summary>
5347 A dictionary with keys of type Assembly and values of type TypeCollection
5348 </summary>
5349 </member>
5350 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.#ctor">
5351 <summary>
5352 Initializes a new empty instance of the AssemblyTypeCollectionDictionary class
5353 </summary>
5354 </member>
5355 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Add(System.Reflection.Assembly)">
5356 <summary>
5357 Adds an element with the specified key and value to this AssemblyTypeCollectionDictionary.
5358 </summary>
5359 <param name="key">
5360 The Assembly key of the element to add.
5361 </param>
5362 </member>
5363 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Contains(System.Reflection.Assembly)">
5364 <summary>
5365 Determines whether this AssemblyTypeCollectionDictionary contains a specific key.
5366 </summary>
5367 <param name="key">
5368 The Assembly key to locate in this AssemblyTypeCollectionDictionary.
5369 </param>
5370 <returns>
5371 true if this AssemblyTypeCollectionDictionary contains an element with the specified key;
5372 otherwise, false.
5373 </returns>
5374 </member>
5375 <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Remove(System.Reflection.Assembly)">
5376 <summary>
5377 Removes the element with the specified key from this AssemblyTypeCollectionDictionary.
5378 </summary>
5379 <param name="key">
5380 The Assembly key of the element to remove.
5381 </param>
5382 </member>
5383 <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Item(System.Reflection.Assembly)">
5384 <summary>
5385 Gets or sets the TypeCollection associated with the given Assembly
5386 </summary>
5387 <param name="key">
5388 The Assembly whose value to get or set.
5389 </param>
5390 </member>
5391 <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Keys">
5392 <summary>
5393 Gets a collection containing the keys in this AssemblyTypeCollectionDictionary.
5394 </summary>
5395 </member>
5396 <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Values">
5397 <summary>
5398 Gets a collection containing the values in this AssemblyTypeCollectionDictionary.
5399 </summary>
5400 </member>
5401 <member name="T:MbUnit.Core.Collections.AttributedMethodCollection">
5402 <summary>
5403 Summary description for AttributedMethodCollection.
5404 </summary>
5405 </member>
5406 <member name="T:MbUnit.Core.Collections.AttributedMethodEnumerator">
5407 <summary>
5408 Summary description for AttributedMethodEnumerator.
5409 </summary>
5410 </member>
5411 <member name="T:MbUnit.Core.Collections.AttributedPropertyCollection">
5412 <summary>
5413 Summary description for AttributedMethodCollection.
5414 </summary>
5415 </member>
5416 <member name="T:MbUnit.Core.Collections.AttributedPropertyEnumerator">
5417 <summary>
5418 Summary description for AttributedPropertyEnumerator.
5419 </summary>
5420 </member>
5421 <member name="M:MbUnit.Core.Collections.FixtureCollection.#ctor">
5422 <summary>
5423 Initializes a new empty instance of the FixtureCollection class.
5424 </summary>
5425 </member>
5426 <member name="M:MbUnit.Core.Collections.FixtureCollection.Add(MbUnit.Core.Fixture)">
5427 <summary>
5428 Adds an instance of type Fixture to the end of this FixtureCollection.
5429 </summary>
5430 <param name="value">
5431 The Fixture to be added to the end of this FixtureCollection.
5432 </param>
5433 </member>
5434 <member name="M:MbUnit.Core.Collections.FixtureCollection.Contains(MbUnit.Core.Fixture)">
5435 <summary>
5436 Determines whether a specfic Fixture value is in this FixtureCollection.
5437 </summary>
5438 <param name="value">
5439 The Fixture value to locate in this FixtureCollection.
5440 </param>
5441 <returns>
5442 true if value is found in this FixtureCollection;
5443 false otherwise.
5444 </returns>
5445 </member>
5446 <member name="M:MbUnit.Core.Collections.FixtureCollection.Remove(MbUnit.Core.Fixture)">
5447 <summary>
5448 Removes the first occurrence of a specific Fixture from this FixtureCollection.
5449 </summary>
5450 <param name="value">
5451 The Fixture value to remove from this FixtureCollection.
5452 </param>
5453 </member>
5454 <member name="M:MbUnit.Core.Collections.FixtureCollection.GetEnumerator">
5455 <summary>
5456 Returns an enumerator that can iterate through the elements of this FixtureCollection.
5457 </summary>
5458 <returns>
5459 An object that implements System.Collections.IEnumerator.
5460 </returns>
5461 </member>
5462 <member name="T:MbUnit.Core.Collections.FixtureCollection.Enumerator">
5463 <summary>
5464 Type-specific enumeration class, used by FixtureCollection.GetEnumerator.
5465 </summary>
5466 </member>
5467 <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection">
5468 <summary>
5469 A collection of elements of type IFixtureFactory
5470 </summary>
5471 </member>
5472 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.#ctor">
5473 <summary>
5474 Initializes a new empty instance of the FixtureFactoryCollection class.
5475 </summary>
5476 </member>
5477 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Add(MbUnit.Core.IFixtureFactory)">
5478 <summary>
5479 Adds an instance of type IFixtureFactory to the end of this FixtureFactoryCollection.
5480 </summary>
5481 <param name="value">
5482 The IFixtureFactory to be added to the end of this FixtureFactoryCollection.
5483 </param>
5484 </member>
5485 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Contains(MbUnit.Core.IFixtureFactory)">
5486 <summary>
5487 Determines whether a specfic IFixtureFactory value is in this FixtureFactoryCollection.
5488 </summary>
5489 <param name="value">
5490 The IFixtureFactory value to locate in this FixtureFactoryCollection.
5491 </param>
5492 <returns>
5493 true if value is found in this FixtureFactoryCollection;
5494 false otherwise.
5495 </returns>
5496 </member>
5497 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Remove(MbUnit.Core.IFixtureFactory)">
5498 <summary>
5499 Removes the first occurrence of a specific IFixtureFactory from this FixtureFactoryCollection.
5500 </summary>
5501 <param name="value">
5502 The IFixtureFactory value to remove from this FixtureFactoryCollection.
5503 </param>
5504 </member>
5505 <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.GetEnumerator">
5506 <summary>
5507 Returns an enumerator that can iterate through the elements of this FixtureFactoryCollection.
5508 </summary>
5509 <returns>
5510 An object that implements System.Collections.IEnumerator.
5511 </returns>
5512 </member>
5513 <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection.Enumerator">
5514 <summary>
5515 Type-specific enumeration class, used by FixtureFactoryCollection.GetEnumerator.
5516 </summary>
5517 </member>
5518 <member name="T:MbUnit.Core.Collections.RunCollection">
5519 <summary>
5520 A collection of elements of type IRun
5521 </summary>
5522 </member>
5523 <member name="M:MbUnit.Core.Collections.RunCollection.#ctor">
5524 <summary>
5525 Initializes a new empty instance of the RunCollection class.
5526 </summary>
5527 </member>
5528 <member name="M:MbUnit.Core.Collections.RunCollection.Add(MbUnit.Core.Runs.IRun)">
5529 <summary>
5530 Adds an instance of type IRun to the end of this RunCollection.
5531 </summary>
5532 <param name="value">
5533 The IRun to be added to the end of this RunCollection.
5534 </param>
5535 </member>
5536 <member name="M:MbUnit.Core.Collections.RunCollection.Contains(MbUnit.Core.Runs.IRun)">
5537 <summary>
5538 Determines whether a specfic IRun value is in this RunCollection.
5539 </summary>
5540 <param name="value">
5541 The IRun value to locate in this RunCollection.
5542 </param>
5543 <returns>
5544 true if value is found in this RunCollection;
5545 false otherwise.
5546 </returns>
5547 </member>
5548 <member name="M:MbUnit.Core.Collections.RunCollection.Remove(MbUnit.Core.Runs.IRun)">
5549 <summary>
5550 Removes the first occurrence of a specific IRun from this RunCollection.
5551 </summary>
5552 <param name="value">
5553 The IRun value to remove from this RunCollection.
5554 </param>
5555 </member>
5556 <member name="M:MbUnit.Core.Collections.RunCollection.GetEnumerator">
5557 <summary>
5558 Returns an enumerator that can iterate through the elements of this RunCollection.
5559 </summary>
5560 <returns>
5561 An object that implements System.Collections.IEnumerator.
5562 </returns>
5563 </member>
5564 <member name="P:MbUnit.Core.Collections.RunCollection.Item(System.Int32)">
5565 <summary>
5566 Gets or sets the IRun at the given index in this RunCollection.
5567 </summary>
5568 </member>
5569 <member name="T:MbUnit.Core.Collections.RunCollection.Enumerator">
5570 <summary>
5571 Type-specific enumeration class, used by RunCollection.GetEnumerator.
5572 </summary>
5573 </member>
5574 <member name="T:MbUnit.Core.Collections.RunInvokerCollection">
5575 <summary>
5576 A collection of elements of type IRunInvoker
5577 </summary>
5578 </member>
5579 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.#ctor">
5580 <summary>
5581 Initializes a new empty instance of the IRunInvokerCollection class.
5582 </summary>
5583 </member>
5584 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Add(MbUnit.Core.Invokers.IRunInvoker)">
5585 <summary>
5586 Adds an instance of type IRunInvoker to the end of this IRunInvokerCollection.
5587 </summary>
5588 <param name="value">
5589 The IRunInvoker to be added to the end of this IRunInvokerCollection.
5590 </param>
5591 </member>
5592 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Contains(MbUnit.Core.Invokers.IRunInvoker)">
5593 <summary>
5594 Determines whether a specfic IRunInvoker value is in this IRunInvokerCollection.
5595 </summary>
5596 <param name="value">
5597 The IRunInvoker value to locate in this IRunInvokerCollection.
5598 </param>
5599 <returns>
5600 true if value is found in this IRunInvokerCollection;
5601 false otherwise.
5602 </returns>
5603 </member>
5604 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Remove(MbUnit.Core.Invokers.IRunInvoker)">
5605 <summary>
5606 Removes the first occurrence of a specific IRunInvoker from this IRunInvokerCollection.
5607 </summary>
5608 <param name="value">
5609 The IRunInvoker value to remove from this IRunInvokerCollection.
5610 </param>
5611 </member>
5612 <member name="M:MbUnit.Core.Collections.RunInvokerCollection.GetEnumerator">
5613 <summary>
5614 Returns an enumerator that can iterate through the elements of this IRunInvokerCollection.
5615 </summary>
5616 <returns>
5617 An object that implements System.Collections.IEnumerator.
5618 </returns>
5619 </member>
5620 <member name="P:MbUnit.Core.Collections.RunInvokerCollection.Item(System.Int32)">
5621 <summary>
5622 Gets or sets the IRunInvoker at the given index in this IRunInvokerCollection.
5623 </summary>
5624 </member>
5625 <member name="T:MbUnit.Core.Collections.RunInvokerCollection.Enumerator">
5626 <summary>
5627 Type-specific enumeration class, used by IRunInvokerCollection.GetEnumerator.
5628 </summary>
5629 </member>
5630 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection">
5631 <summary>
5632 A collection of elements of type RunInvokerVertex
5633 </summary>
5634 </member>
5635 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.#ctor">
5636 <summary>
5637 Initializes a new empty instance of the RunInvokerVertexCollection class.
5638 </summary>
5639 </member>
5640 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Add(MbUnit.Core.Invokers.RunInvokerVertex)">
5641 <summary>
5642 Adds an instance of type RunInvokerVertex to the end of this RunInvokerVertexCollection.
5643 </summary>
5644 <param name="value">
5645 The RunInvokerVertex to be added to the end of this RunInvokerVertexCollection.
5646 </param>
5647 </member>
5648 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Contains(MbUnit.Core.Invokers.RunInvokerVertex)">
5649 <summary>
5650 Determines whether a specfic RunInvokerVertex value is in this RunInvokerVertexCollection.
5651 </summary>
5652 <param name="value">
5653 The RunInvokerVertex value to locate in this RunInvokerVertexCollection.
5654 </param>
5655 <returns>
5656 true if value is found in this RunInvokerVertexCollection;
5657 false otherwise.
5658 </returns>
5659 </member>
5660 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Remove(MbUnit.Core.Invokers.RunInvokerVertex)">
5661 <summary>
5662 Removes the first occurrence of a specific RunInvokerVertex from this RunInvokerVertexCollection.
5663 </summary>
5664 <param name="value">
5665 The RunInvokerVertex value to remove from this RunInvokerVertexCollection.
5666 </param>
5667 </member>
5668 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.GetEnumerator">
5669 <summary>
5670 Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollection.
5671 </summary>
5672 <returns>
5673 An object that implements System.Collections.IEnumerator.
5674 </returns>
5675 </member>
5676 <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollection.Item(System.Int32)">
5677 <summary>
5678 Gets or sets the RunInvokerVertex at the given index in this RunInvokerVertexCollection.
5679 </summary>
5680 </member>
5681 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection.Enumerator">
5682 <summary>
5683 Type-specific enumeration class, used by RunInvokerVertexCollection.GetEnumerator.
5684 </summary>
5685 </member>
5686 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection">
5687 <summary>
5688 A collection of elements of type RunInvokerVertexCollection
5689 </summary>
5690 </member>
5691 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.#ctor">
5692 <summary>
5693 Initializes a new empty instance of the RunInvokerVertexCollectionCollection class.
5694 </summary>
5695 </member>
5696 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Add(MbUnit.Core.Collections.RunInvokerVertexCollection)">
5697 <summary>
5698 Adds an instance of type RunInvokerVertexCollection to the end of this RunInvokerVertexCollectionCollection.
5699 </summary>
5700 <param name="value">
5701 The RunInvokerVertexCollection to be added to the end of this RunInvokerVertexCollectionCollection.
5702 </param>
5703 </member>
5704 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Contains(MbUnit.Core.Collections.RunInvokerVertexCollection)">
5705 <summary>
5706 Determines whether a specfic RunInvokerVertexCollection value is in this RunInvokerVertexCollectionCollection.
5707 </summary>
5708 <param name="value">
5709 The RunInvokerVertexCollection value to locate in this RunInvokerVertexCollectionCollection.
5710 </param>
5711 <returns>
5712 true if value is found in this RunInvokerVertexCollectionCollection;
5713 false otherwise.
5714 </returns>
5715 </member>
5716 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Remove(MbUnit.Core.Collections.RunInvokerVertexCollection)">
5717 <summary>
5718 Removes the first occurrence of a specific RunInvokerVertexCollection from this RunInvokerVertexCollectionCollection.
5719 </summary>
5720 <param name="value">
5721 The RunInvokerVertexCollection value to remove from this RunInvokerVertexCollectionCollection.
5722 </param>
5723 </member>
5724 <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.GetEnumerator">
5725 <summary>
5726 Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollectionCollection.
5727 </summary>
5728 <returns>
5729 An object that implements System.Collections.IEnumerator.
5730 </returns>
5731 </member>
5732 <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Item(System.Int32)">
5733 <summary>
5734 Gets or sets the RunInvokerVertexCollection at the given index in this RunInvokerVertexCollectionCollection.
5735 </summary>
5736 </member>
5737 <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Enumerator">
5738 <summary>
5739 Type-specific enumeration class, used by RunInvokerVertexCollectionCollection.GetEnumerator.
5740 </summary>
5741 </member>
5742 <member name="T:MbUnit.Core.Collections.RunPipeCollection">
5743 <summary>
5744 A collection of elements of type RunPipe
5745 </summary>
5746 </member>
5747 <member name="M:MbUnit.Core.Collections.RunPipeCollection.#ctor">
5748 <summary>
5749 Initializes a new empty instance of the RunPipeCollection class.
5750 </summary>
5751 </member>
5752 <member name="M:MbUnit.Core.Collections.RunPipeCollection.Add(MbUnit.Core.RunPipe)">
5753 <summary>
5754 Adds an instance of type RunPipe to the end of this RunPipeCollection.
5755 </summary>
5756 <param name="value">
5757 The RunPipe to be added to the end of this RunPipeCollection.
5758 </param>
5759 </member>
5760 <member name="M:MbUnit.Core.Collections.RunPipeCollection.Contains(MbUnit.Core.RunPipe)">
5761 <summary>
5762 Determines whether a specfic RunPipe value is in this RunPipeCollection.
5763 </summary>
5764 <param name="value">
5765 The RunPipe value to locate in this RunPipeCollection.
5766 </param>
5767 <returns>
5768 true if value is found in this RunPipeCollection;
5769 false otherwise.
5770 </returns>
5771 </member>
5772 <member name="M:MbUnit.Core.Collections.RunPipeCollection.Remove(MbUnit.Core.RunPipe)">
5773 <summary>
5774 Removes the first occurrence of a specific RunPipe from this RunPipeCollection.
5775 </summary>
5776 <param name="value">
5777 The RunPipe value to remove from this RunPipeCollection.
5778 </param>
5779 </member>
5780 <member name="M:MbUnit.Core.Collections.RunPipeCollection.GetEnumerator">
5781 <summary>
5782 Returns an enumerator that can iterate through the elements of this RunPipeCollection.
5783 </summary>
5784 <returns>
5785 An object that implements System.Collections.IEnumerator.
5786 </returns>
5787 </member>
5788 <member name="P:MbUnit.Core.Collections.RunPipeCollection.Item(System.Int32)">
5789 <summary>
5790 Gets or sets the RunPipe at the given index in this RunPipeCollection.
5791 </summary>
5792 </member>
5793 <member name="T:MbUnit.Core.Collections.RunPipeCollection.Enumerator">
5794 <summary>
5795 Type-specific enumeration class, used by RunPipeCollection.GetEnumerator.
5796 </summary>
5797 </member>
5798 <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection">
5799 <summary>
5800 A collection of elements of type IRunPipeListener
5801 </summary>
5802 </member>
5803 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.#ctor">
5804 <summary>
5805 Initializes a new empty instance of the RunPipeListenerCollection class.
5806 </summary>
5807 </member>
5808 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Add(MbUnit.Core.IRunPipeListener)">
5809 <summary>
5810 Adds an instance of type IRunPipeListener to the end of this RunPipeListenerCollection.
5811 </summary>
5812 <param name="value">
5813 The IRunPipeListener to be added to the end of this RunPipeListenerCollection.
5814 </param>
5815 </member>
5816 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Contains(MbUnit.Core.IRunPipeListener)">
5817 <summary>
5818 Determines whether a specfic IRunPipeListener value is in this RunPipeListenerCollection.
5819 </summary>
5820 <param name="value">
5821 The IRunPipeListener value to locate in this RunPipeListenerCollection.
5822 </param>
5823 <returns>
5824 true if value is found in this RunPipeListenerCollection;
5825 false otherwise.
5826 </returns>
5827 </member>
5828 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Remove(MbUnit.Core.IRunPipeListener)">
5829 <summary>
5830 Removes the first occurrence of a specific IRunPipeListener from this RunPipeListenerCollection.
5831 </summary>
5832 <param name="value">
5833 The IRunPipeListener value to remove from this RunPipeListenerCollection.
5834 </param>
5835 </member>
5836 <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.GetEnumerator">
5837 <summary>
5838 Returns an enumerator that can iterate through the elements of this RunPipeListenerCollection.
5839 </summary>
5840 <returns>
5841 An object that implements System.Collections.IEnumerator.
5842 </returns>
5843 </member>
5844 <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection.Enumerator">
5845 <summary>
5846 Type-specific enumeration class, used by RunPipeListenerCollection.GetEnumerator.
5847 </summary>
5848 </member>
5849 <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection">
5850 <summary>
5851 A collection of elements of type RunPipeStarter
5852 </summary>
5853 </member>
5854 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.#ctor(MbUnit.Core.Fixture)">
5855 <summary>
5856 Initializes a new empty instance of the RunPipeStarterCollection class.
5857 </summary>
5858 </member>
5859 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Add(MbUnit.Core.RunPipeStarter)">
5860 <summary>
5861 Adds an instance of type RunPipeStarter to the end of this RunPipeStarterCollection.
5862 </summary>
5863 <param name="value">
5864 The RunPipeStarter to be added to the end of this RunPipeStarterCollection.
5865 </param>
5866 </member>
5867 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Contains(MbUnit.Core.RunPipeStarter)">
5868 <summary>
5869 Determines whether a specfic RunPipeStarter value is in this RunPipeStarterCollection.
5870 </summary>
5871 <param name="value">
5872 The RunPipeStarter value to locate in this RunPipeStarterCollection.
5873 </param>
5874 <returns>
5875 true if value is found in this RunPipeStarterCollection;
5876 false otherwise.
5877 </returns>
5878 </member>
5879 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Remove(MbUnit.Core.RunPipeStarter)">
5880 <summary>
5881 Removes the first occurrence of a specific RunPipeStarter from this RunPipeStarterCollection.
5882 </summary>
5883 <param name="value">
5884 The RunPipeStarter value to remove from this RunPipeStarterCollection.
5885 </param>
5886 </member>
5887 <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.GetEnumerator">
5888 <summary>
5889 Returns an enumerator that can iterate through the elements of this RunPipeStarterCollection.
5890 </summary>
5891 <returns>
5892 An object that implements System.Collections.IEnumerator.
5893 </returns>
5894 </member>
5895 <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection.Enumerator">
5896 <summary>
5897 Type-specific enumeration class, used by RunPipeStarterCollection.GetEnumerator.
5898 </summary>
5899 </member>
5900 <member name="T:MbUnit.Core.Collections.RunVertexDictionary">
5901 <summary>
5902 A dictionary with keys of type IRun and values of type RunVertex
5903 </summary>
5904 </member>
5905 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.#ctor">
5906 <summary>
5907 Initializes a new empty instance of the RunVertexDictionary class
5908 </summary>
5909 </member>
5910 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Add(MbUnit.Core.Runs.IRun,MbUnit.Core.Runs.RunVertex)">
5911 <summary>
5912 Adds an element with the specified key and value to this RunVertexDictionary.
5913 </summary>
5914 <param name="key">
5915 The IRun key of the element to add.
5916 </param>
5917 <param name="value">
5918 The RunVertex value of the element to add.
5919 </param>
5920 </member>
5921 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Contains(MbUnit.Core.Runs.IRun)">
5922 <summary>
5923 Determines whether this RunVertexDictionary contains a specific key.
5924 </summary>
5925 <param name="key">
5926 The IRun key to locate in this RunVertexDictionary.
5927 </param>
5928 <returns>
5929 true if this RunVertexDictionary contains an element with the specified key;
5930 otherwise, false.
5931 </returns>
5932 </member>
5933 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.ContainsValue(MbUnit.Core.Runs.RunVertex)">
5934 <summary>
5935 Determines whether this RunVertexDictionary contains a specific value.
5936 </summary>
5937 <param name="value">
5938 The RunVertex value to locate in this RunVertexDictionary.
5939 </param>
5940 <returns>
5941 true if this RunVertexDictionary contains an element with the specified value;
5942 otherwise, false.
5943 </returns>
5944 </member>
5945 <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Remove(MbUnit.Core.Runs.IRun)">
5946 <summary>
5947 Removes the element with the specified key from this RunVertexDictionary.
5948 </summary>
5949 <param name="key">
5950 The IRun key of the element to remove.
5951 </param>
5952 </member>
5953 <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Item(MbUnit.Core.Runs.IRun)">
5954 <summary>
5955 Gets or sets the RunVertex associated with the given IRun
5956 </summary>
5957 <param name="key">
5958 The IRun whose value to get or set.
5959 </param>
5960 </member>
5961 <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Keys">
5962 <summary>
5963 Gets a collection containing the keys in this RunVertexDictionary.
5964 </summary>
5965 </member>
5966 <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Values">
5967 <summary>
5968 Gets a collection containing the values in this RunVertexDictionary.
5969 </summary>
5970 </member>
5971 <member name="T:MbUnit.Core.Collections.ThreadCollection">
5972 <summary>
5973 A collection of elements of type Thread
5974 </summary>
5975 </member>
5976 <member name="M:MbUnit.Core.Collections.ThreadCollection.#ctor">
5977 <summary>
5978 Initializes a new empty instance of the ThreadCollection class.
5979 </summary>
5980 </member>
5981 <member name="M:MbUnit.Core.Collections.ThreadCollection.Add(System.Threading.Thread)">
5982 <summary>
5983 Adds an instance of type Thread to the end of this ThreadCollection.
5984 </summary>
5985 <param name="value">
5986 The Thread to be added to the end of this ThreadCollection.
5987 </param>
5988 </member>
5989 <member name="M:MbUnit.Core.Collections.ThreadCollection.Contains(System.Threading.Thread)">
5990 <summary>
5991 Determines whether a specfic Thread value is in this ThreadCollection.
5992 </summary>
5993 <param name="value">
5994 The Thread value to locate in this ThreadCollection.
5995 </param>
5996 <returns>
5997 true if value is found in this ThreadCollection;
5998 false otherwise.
5999 </returns>
6000 </member>
6001 <member name="M:MbUnit.Core.Collections.ThreadCollection.Remove(System.Threading.Thread)">
6002 <summary>
6003 Removes the first occurrence of a specific Thread from this ThreadCollection.
6004 </summary>
6005 <param name="value">
6006 The Thread value to remove from this ThreadCollection.
6007 </param>
6008 </member>
6009 <member name="M:MbUnit.Core.Collections.ThreadCollection.GetEnumerator">
6010 <summary>
6011 Returns an enumerator that can iterate through the elements of this ThreadCollection.
6012 </summary>
6013 <returns>
6014 An object that implements System.Collections.IEnumerator.
6015 </returns>
6016 </member>
6017 <member name="P:MbUnit.Core.Collections.ThreadCollection.Item(System.Int32)">
6018 <summary>
6019 Gets or sets the Thread at the given index in this ThreadCollection.
6020 </summary>
6021 </member>
6022 <member name="T:MbUnit.Core.Collections.ThreadCollection.Enumerator">
6023 <summary>
6024 Type-specific enumeration class, used by ThreadCollection.GetEnumerator.
6025 </summary>
6026 </member>
6027 <member name="T:MbUnit.Core.Collections.ThreadCollectionRunner">
6028 <summary>
6029 Summary description for ThreadCollectionRunner.
6030 </summary>
6031 </member>
6032 <member name="T:MbUnit.Core.Collections.TypeCollection">
6033 <summary>
6034 A collection of elements of type Type
6035 </summary>
6036 </member>
6037 <member name="M:MbUnit.Core.Collections.TypeCollection.#ctor">
6038 <summary>
6039 Initializes a new empty instance of the TypeCollection class.
6040 </summary>
6041 </member>
6042 <member name="M:MbUnit.Core.Collections.TypeCollection.Add(System.Type)">
6043 <summary>
6044 Adds an instance of type Type to the end of this TypeCollection.
6045 </summary>
6046 <param name="value">
6047 The Type to be added to the end of this TypeCollection.
6048 </param>
6049 </member>
6050 <member name="M:MbUnit.Core.Collections.TypeCollection.Contains(System.Type)">
6051 <summary>
6052 Determines whether a specfic Type value is in this TypeCollection.
6053 </summary>
6054 <param name="value">
6055 The Type value to locate in this TypeCollection.
6056 </param>
6057 <returns>
6058 true if value is found in this TypeCollection;
6059 false otherwise.
6060 </returns>
6061 </member>
6062 <member name="M:MbUnit.Core.Collections.TypeCollection.Remove(System.Type)">
6063 <summary>
6064 Removes the first occurrence of a specific Type from this TypeCollection.
6065 </summary>
6066 <param name="value">
6067 The Type value to remove from this TypeCollection.
6068 </param>
6069 </member>
6070 <member name="M:MbUnit.Core.Collections.TypeCollection.GetEnumerator">
6071 <summary>
6072 Returns an enumerator that can iterate through the elements of this TypeCollection.
6073 </summary>
6074 <returns>
6075 An object that implements System.Collections.IEnumerator.
6076 </returns>
6077 </member>
6078 <member name="P:MbUnit.Core.Collections.TypeCollection.Item(System.Int32)">
6079 <summary>
6080 Gets or sets the Type at the given index in this TypeCollection.
6081 </summary>
6082 </member>
6083 <member name="T:MbUnit.Core.Collections.TypeCollection.Enumerator">
6084 <summary>
6085 Type-specific enumeration class, used by TypeCollection.GetEnumerator.
6086 </summary>
6087 </member>
6088 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute">
6089 <summary>
6090 Allows control of command line parsing.
6091 Attach this attribute to instance fields of types used
6092 as the destination of command line argument parsing.
6093 </summary>
6094 <remarks>
6095 <para>
6096 Command line parsing code from Peter Halam,
6097 http://www.gotdotnet.com/community/usersamples/details.aspx?sampleguid=62a0f27e-274e-4228-ba7f-bc0118ecc41e
6098 </para>
6099 </remarks>
6100 </member>
6101 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.#ctor(MbUnit.Core.Cons.CommandLine.CommandLineArgumentType)">
6102 <summary>
6103 Allows control of command line parsing.
6104 </summary>
6105 <param name="type"> Specifies the error checking to be done on the argument. </param>
6106 </member>
6107 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.Type">
6108 <summary>
6109 The error checking to be done on the argument.
6110 </summary>
6111 </member>
6112 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultShortName">
6113 <summary>
6114 Returns true if the argument did not have an explicit short name specified.
6115 </summary>
6116 </member>
6117 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.ShortName">
6118 <summary>
6119 The short name of the argument.
6120 </summary>
6121 </member>
6122 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultLongName">
6123 <summary>
6124 Returns true if the argument did not have an explicit long name specified.
6125 </summary>
6126 </member>
6127 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.LongName">
6128 <summary>
6129 The long name of the argument.
6130 </summary>
6131 </member>
6132 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser">
6133 <summary>
6134 Parser for command line arguments.
6135 </summary>
6136 <remarks>
6137 <para>
6138 The parser specification is infered from the instance fields of the object
6139 specified as the destination of the parse.
6140 Valid argument types are: int, uint, string, bool, enums
6141 Also argument types of Array of the above types are also valid.
6142 </para>
6143 <para>
6144 Error checking options can be controlled by adding a CommandLineArgumentAttribute
6145 to the instance fields of the destination object.
6146 </para>
6147 <para>
6148 At most one field may be marked with the DefaultCommandLineArgumentAttribute
6149 indicating that arguments without a '-' or '/' prefix will be parsed as that argument.
6150 </para>
6151 <para>
6152 If not specified then the parser will infer default options for parsing each
6153 instance field. The default long name of the argument is the field name. The
6154 default short name is the first character of the long name. Long names and explicitly
6155 specified short names must be unique. Default short names will be used provided that
6156 the default short name does not conflict with a long name or an explicitly
6157 specified short name.
6158 </para>
6159 <para>
6160 Arguments which are array types are collection arguments. Collection
6161 arguments can be specified multiple times.
6162 </para>
6163 <para>
6164 Command line parsing code from Peter Halam,
6165 http://www.gotdotnet.com/community/usersamples/details.aspx?sampleguid=62a0f27e-274e-4228-ba7f-bc0118ecc41e
6166 </para>
6167 </remarks>
6168 </member>
6169 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.#ctor(System.Type,MbUnit.Core.Cons.CommandLine.ErrorReporter)">
6170 <summary>
6171 Creates a new command line argument parser.
6172 </summary>
6173 <param name="argumentSpecification"> The type of object to parse. </param>
6174 <param name="reporter"> The destination for parse errors. </param>
6175 </member>
6176 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.ParseArgumentList(System.String[],System.Object)">
6177 <summary>
6178 Parses an argument list into an object
6179 </summary>
6180 <param name="args"></param>
6181 <param name="destination"></param>
6182 <returns> true if an error occurred </returns>
6183 </member>
6184 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Parse(System.String[],System.Object)">
6185 <summary>
6186 Parses an argument list.
6187 </summary>
6188 <param name="args"> The arguments to parse. </param>
6189 <param name="destination"> The destination of the parsed arguments. </param>
6190 <returns> true if no parse errors were encountered. </returns>
6191 </member>
6192 <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Usage">
6193 <summary>
6194 A user friendly usage string describing the command line argument syntax.
6195 </summary>
6196 </member>
6197 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType">
6198 <summary>
6199 Used to control parsing of command line arguments.
6200 </summary>
6201 <remarks>
6202 <para>
6203 Command line parsing code from Peter Halam,
6204 http://www.gotdotnet.com/community/usersamples/details.aspx?sampleguid=62a0f27e-274e-4228-ba7f-bc0118ecc41e
6205 </para>
6206 </remarks>
6207 </member>
6208 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Required">
6209 <summary>
6210 Indicates that this field is required. An error will be displayed
6211 if it is not present when parsing arguments.
6212 </summary>
6213 </member>
6214 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Unique">
6215 <summary>
6216 Only valid in conjunction with Multiple.
6217 Duplicate values will result in an error.
6218 </summary>
6219 </member>
6220 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Multiple">
6221 <summary>
6222 Inidicates that the argument may be specified more than once.
6223 Only valid if the argument is a collection
6224 </summary>
6225 </member>
6226 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.AtMostOnce">
6227 <summary>
6228 The default type for non-collection arguments.
6229 The argument is not required, but an error will be reported if it is specified more than once.
6230 </summary>
6231 </member>
6232 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.LastOccurenceWins">
6233 <summary>
6234 For non-collection arguments, when the argument is specified more than
6235 once no error is reported and the value of the argument is the last
6236 value which occurs in the argument list.
6237 </summary>
6238 </member>
6239 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.MultipleUnique">
6240 <summary>
6241 The default type for collection arguments.
6242 The argument is permitted to occur multiple times, but duplicate
6243 values will cause an error to be reported.
6244 </summary>
6245 </member>
6246 <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineUtility">
6247 <summary>
6248 Useful Stuff.
6249 </summary>
6250 <remarks>
6251 <para>
6252 Command line parsing code from Peter Halam,
6253 http://www.gotdotnet.com/community/usersamples/details.aspx?sampleguid=62a0f27e-274e-4228-ba7f-bc0118ecc41e
6254 </para>
6255 </remarks>
6256 </member>
6257 <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineUtility.NewLine">
6258 <summary>
6259 The System Defined new line string.
6260 </summary>
6261 </member>
6262 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.#ctor">
6263 <summary>
6264 Don't ever call this.
6265 </summary>
6266 </member>
6267 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object)">
6268 <summary>
6269 Parses Command Line Arguments.
6270 Errors are output on Console.Error.
6271 Use CommandLineArgumentAttributes to control parsing behaviour.
6272 </summary>
6273 <param name="arguments"> The actual arguments. </param>
6274 <param name="destination"> The resulting parsed arguments. </param>
6275 </member>
6276 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object,MbUnit.Core.Cons.CommandLine.ErrorReporter)">
6277 <summary>
6278 Parses Command Line Arguments.
6279 Use CommandLineArgumentAttributes to control parsing behaviour.
6280 </summary>
6281 <param name="arguments"> The actual arguments. </param>
6282 <param name="destination"> The resulting parsed arguments. </param>
6283 <param name="reporter"> The destination for parse errors. </param>
6284 </member>
6285 <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.CommandLineArgumentsUsage(System.Type)">
6286 <summary>
6287 Returns a Usage string for command line argument parsing.
6288 Use CommandLineArgumentAttributes to control parsing behaviour.
6289 </summary>
6290 <param name="argumentType"> The type of the arguments to display usage for. </param>
6291 <returns> Printable string containing a user friendly description of command line arguments. </returns>
6292 </member>
6293 <member name="T:MbUnit.Core.Cons.CommandLine.DefaultCommandLineArgumentAttribute">
6294 <summary>
6295 Indicates that this argument is the default argument.
6296 '/' or '-' prefix only the argument value is specified.
6297 </summary>
6298 <remarks>
6299 <para>
6300 Command line parsing code from Peter Halam,
6301 http://www.gotdotnet.com/community/usersamples/details.aspx?sampleguid=62a0f27e-274e-4228-ba7f-bc0118ecc41e
6302 </para>
6303 </remarks>
6304 </member>
6305 <member name="M:MbUnit.Core.Cons.CommandLine.DefaultCommandLineArgumentAttribute.#ctor(MbUnit.Core.Cons.CommandLine.CommandLineArgumentType)">
6306 <summary>
6307 Indicates that this argument is the default argument.
6308 </summary>
6309 <param name="type"> Specifies the error checking to be done on the argument. </param>
6310 </member>
6311 <member name="T:MbUnit.Core.Cons.CommandLine.ErrorReporter">
6312 <summary>
6313 A delegate used in error reporting.
6314 </summary>
6315 <remarks>
6316 <para>
6317 Command line parsing code from Peter Halam,
6318 http://www.gotdotnet.com/community/usersamples/details.aspx?sampleguid=62a0f27e-274e-4228-ba7f-bc0118ecc41e
6319 </para>
6320 </remarks>
6321 </member>
6322 <member name="M:MbUnit.Core.Cons.MainClass.AssemblyResolveHandler(System.Object,System.ResolveEventArgs)">
6323 <summary>
6324 This method is used to provide assembly location resolver. It is called on event as needed by the CLR.
6325 Refer to document related to AppDomain.CurrentDomain.AssemblyResolve
6326 </summary>
6327 </member>
6328 <member name="T:MbUnit.Core.Exceptions.CompilationException">
6329 <summary>
6330 Exception throwed when not finding a vertex.
6331 </summary>
6332 </member>
6333 <member name="T:MbUnit.Core.Exceptions.MultipleCultureException">
6334 <summary>
6335 Exception throwed when not finding a vertex.
6336 </summary>
6337 </member>
6338 <member name="M:MbUnit.Core.Exceptions.MultipleCultureException.#ctor(System.Globalization.CultureInfo,System.String,System.Exception)">
6339 <summary>
6340 Creates an exception with a message
6341 and an inner exception.
6342 </summary>
6343 <param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use.</param>
6344 <param name="message">Error message</param>
6345 <param name="ex">Inner exception</param>
6346 </member>
6347 <member name="M:MbUnit.Core.Exceptions.MultipleCultureException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6348 <summary>
6349
6350 </summary>
6351 <param name="info"></param>
6352 <param name="ctx"></param>
6353 </member>
6354 <member name="P:MbUnit.Core.Exceptions.MultipleCultureException.Message">
6355 <summary>
6356
6357 </summary>
6358 <returns></returns>
6359 </member>
6360 <member name="T:MbUnit.Core.Filters.CategoryFixtureFilter">
6361 <summary>
6362 Filter class for FixtureCategory attribute.
6363 </summary>
6364 </member>
6365 <member name="M:MbUnit.Core.Filters.CategoryFixtureFilter.Filter(System.Type)">
6366 <summary>
6367 Tests if a fixture has a category attribute matching a pattern.
6368 </summary>
6369 <param name="fixture">The fixture to test.</param>
6370 <returns>true if the fixture has a matching category attribute, otherwise false.</returns>
6371 </member>
6372 <member name="P:MbUnit.Core.Fixture.IsIgnored">
6373 <summary>
6374 Returns true if the entire test fixture is ignored.
6375 </summary>
6376 </member>
6377 <member name="T:MbUnit.Core.Framework.FixtureDecoratorPatternAttribute">
6378 <summary>
6379 This is the base class for attributes that can decorate fixtures.
6380 </summary>
6381 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='FixturePatternAttribute']"/>
6382 </member>
6383 <member name="T:MbUnit.Core.Framework.NonTestPatternAttribute">
6384 <summary>
6385 Base class for attributes that tag method that are usualy used to
6386 set up, provide data, tear down tests, etc...
6387 </summary>
6388 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='NonTestPatternAttribute']"/>
6389 </member>
6390 <member name="M:MbUnit.Core.Invokers.CustomRunInvoker.#ctor(MbUnit.Core.Runs.IRun,System.Object,System.Reflection.MethodInfo,System.Boolean)">
6391 <summary>
6392 Default constructor - initializes all fields to default values
6393 </summary>
6394 </member>
6395 <member name="T:MbUnit.Core.Invokers.DurationRunInvoker">
6396
6397 </member>
6398 <member name="T:MbUnit.Core.Invokers.InvokerEventArgs">
6399 <summary>
6400 TODO - Add class summary
6401 </summary>
6402 <remarks>
6403 created by - dehalleux
6404 created on - 30/01/2004 13:38:05
6405 </remarks>
6406 </member>
6407 <member name="M:MbUnit.Core.Invokers.InvokerEventArgs.#ctor(MbUnit.Core.Invokers.IRunInvoker)">
6408 <summary>
6409 Default constructor - initializes all fields to default values
6410 </summary>
6411 </member>
6412 <member name="T:MbUnit.Core.Invokers.PropertyGetRunInvoker">
6413 <summary>
6414 Summary description for PropertyGetRunInvoker.
6415 </summary>
6416 </member>
6417 <member name="T:MbUnit.Core.Invokers.RepeatRunInvoker">
6418
6419 </member>
6420 <member name="T:MbUnit.Core.Invokers.RunInvokerTreeEventArgs">
6421 <summary>
6422 Summary description for RunInvokerTreeEventHandler.
6423 </summary>
6424 </member>
6425 <member name="T:MbUnit.Core.Invokers.RunInvokerVertex">
6426 <summary>
6427 A <see cref="T:QuickGraph.Concepts.IVertex"/> implementation, containing a
6428 <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>.
6429 </summary>
6430 </member>
6431 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.#ctor(System.Int32)">
6432 <summary>
6433 Builds a new unitialized vertex. Internal use only.
6434 </summary>
6435 <remarks>You should not call this method directly.</remarks>
6436 </member>
6437 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ReadGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
6438 <summary>
6439 Not implemented.
6440 </summary>
6441 <remarks/>
6442 <exception cref="T:System.InvalidOperationException">always thrown</exception>
6443 </member>
6444 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.WriteGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
6445 <summary>
6446 Serializes informations to the <see cref="T:QuickGraph.Concepts.Serialization.IGraphSerializationInfo"/> instance.
6447 </summary>
6448 <param name="info">serialization device</param>
6449 <exception cref="T:System.ArgumentNullException">info is a null reference</exception>
6450 </member>
6451 <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ToString">
6452 <summary>
6453 Converts the object to string
6454 </summary>
6455 <remarks>
6456 This class outputs the vertex ID and <c>Invoker.ToString()</c>.
6457 </remarks>
6458 <returns>
6459 String representation of the vertex
6460 </returns>
6461 </member>
6462 <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.HasInvoker">
6463 <summary>
6464 Gets a value indicating if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>
6465 instance attached to it.
6466 </summary>
6467 <value>
6468 true if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> instance attached.
6469 </value>
6470 </member>
6471 <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.Invoker">
6472 <summary>
6473 Gets the <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> attached to the vertex.
6474 </summary>
6475 <value>
6476 The <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> instance attached to the vertex
6477 </value>
6478 <exception cref="T:System.InvalidOperationException">
6479 the <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> is a null reference
6480 </exception>
6481 </member>
6482 <member name="T:MbUnit.Core.Invokers.RunInvokerVertexProvider">
6483 <summary>
6484 Internal use
6485 </summary>
6486 </member>
6487 <member name="T:MbUnit.Core.Invokers.ThreadedRepeatRunInvoker.ThreadedRunInvokerStarter">
6488 <summary>
6489 Functor class that lanches an invoker execution.
6490 </summary>
6491 <remarks>
6492 You can use this method to launch <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> execution
6493 in separate threads.
6494 </remarks>
6495 </member>
6496 <member name="M:MbUnit.Core.Invokers.ThreadedRepeatRunInvoker.ThreadedRunInvokerStarter.#ctor(MbUnit.Core.Invokers.IRunInvoker,System.Object,System.Collections.IList)">
6497 <summary>
6498 Constructs a execute functor
6499 </summary>
6500 <param name="invoker">invoker to execute</param>
6501 <param name="o"><see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>.Execute arguments</param>
6502 <param name="args"><see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>.Execute arguments</param>
6503 </member>
6504 <member name="M:MbUnit.Core.Invokers.ThreadedRepeatRunInvoker.ThreadedRunInvokerStarter.Run">
6505 <summary>Launches the invoker execution</summary>
6506 <remarks></remarks>
6507 </member>
6508 <member name="T:MbUnit.Core.MethodSignature">
6509 <summary>
6510 TODO - Add class summary
6511 </summary>
6512 <remarks>
6513 created by - dehalleux
6514 created on - 30/01/2004 11:35:56
6515 </remarks>
6516 </member>
6517 <member name="T:MbUnit.Core.Monitoring.MemoryMonitor">
6518 <summary>
6519 Summary description for MemoryTracker.
6520 </summary>
6521 </member>
6522 <member name="T:MbUnit.Core.Monitoring.MemoryStatus">
6523 <summary>
6524 Describes the status of the memory.
6525 </summary>
6526 <remarks>
6527 <para>
6528 The code to retreive the total physical and available physical memory
6529 was takened from the AUT project (http://aut.tigris.org).
6530 </para>
6531 </remarks>
6532 </member>
6533 <member name="T:MbUnit.Core.Monitoring.TimeMonitor">
6534 <summary>
6535 A high performance timer
6536 </summary>
6537 <remarks>
6538 High Precision Timer based on Win32 methods.
6539 </remarks>
6540 <example>
6541 This example times the execution of a method:
6542 <code>
6543 TimeMonitor timer = new TimeMonitor();
6544 timer.Start();
6545 ... // execute code
6546 timer.Stop();
6547
6548 Console.WriteLine("Duration: {0}",timer.Duration);
6549 </code>
6550 </example>
6551 </member>
6552 <member name="M:MbUnit.Core.Monitoring.TimeMonitor.#ctor">
6553 <summary>Default constructor</summary>
6554 <remarks>Initializes the timer.</remarks>
6555 </member>
6556 <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Start">
6557 <summary>Starts the timer</summary>
6558 <remarks>Resets the duration and starts the timer</remarks>
6559 </member>
6560 <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Stop">
6561 <summary>Stops the timer</summary>
6562 <remarks>Stops the timer</remarks>
6563 </member>
6564 <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Now">
6565 <summary>Gets the current duration value without stopping the timer</summary>
6566 <value>Current duration value</value>
6567 </member>
6568 <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Duration">
6569 <summary>Gets the timed duration value in seconds</summary>
6570 <value>Timer duration</value>
6571 </member>
6572 <member name="T:MbUnit.Core.NamespaceDoc">
6573 <summary>
6574 <para>
6575 The <b>MbUnit.Core</b> namespace and child namespaces
6576 contains the kernel of MbUnit.
6577 </para>
6578 <para>
6579 The <b>MbUnit.Core.Collections</b> namespace contains
6580 stronly typed collections.
6581 </para>
6582 <para>
6583 The <b>Exceptions</b> namespace contains custom exception
6584 classes relative to the MbUnit framework.
6585 </para>
6586 <para>
6587 The <b>MbUnit.Framework</b> namespace contains base class for custom attributes
6588 , for test fixtures. The custom attributes can be used to build new
6589 test fixture.
6590 </para>
6591 <para>
6592 The <b>MbUnit.Core.Invokers</b> namespace contains invokers classes that
6593 are functor-like wrapper for fixture methods.
6594 </para>
6595 <para>
6596 The <b>MbUnit.Core.Monitoring</b> namespace contains time and memory
6597 performance tracers.
6598 </para>
6599 <para>
6600 The <b>MbUnit.Core.Runs</b> namespace contains run object that are generators
6601 for invoker methods.
6602 </para>
6603 </summary>
6604 </member>
6605 <member name="T:MbUnit.Core.Remoting.LongLivingMarshalByRefObject">
6606 <summary>
6607 Long living object. (Extracted from NUnit source)
6608 </summary>
6609 <remarks>
6610 <para>
6611 All objects which are marshalled by reference
6612 and whose lifetime is manually controlled by
6613 the app, should derive from this class rather
6614 than MarshalByRefObject.
6615 </para>
6616 <para>
6617 This includes the remote test domain objects
6618 which are accessed by the client and those
6619 client objects which are called back by the
6620 remote test domain.
6621 </para>
6622 <para>
6623 Objects in this category that already inherit
6624 from some other class (e.g. from TextWriter)
6625 which in turn inherits from MarshalByRef object
6626 should override InitializeLifetimeService to
6627 return null to obtain the same effect.
6628 </para>
6629 <para>
6630 Original code from NUnit.
6631 Portions Copyright © 2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
6632 </para>
6633 </remarks>
6634 </member>
6635 <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnLoaded">
6636 <summary>
6637 Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.Loaded"/> event.
6638 </summary>
6639 </member>
6640 <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnReLoaded">
6641 <summary>
6642 Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.ReLoaded"/> event.
6643 </summary>
6644 </member>
6645 <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnUnLoaded">
6646 <summary>
6647 Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.UnLoaded"/> event.
6648 </summary>
6649 </member>
6650 <member name="M:MbUnit.Core.Remoting.TestDomainBase.Load">
6651 <summary>
6652 Loads domain and test assembly
6653 </summary>
6654 </member>
6655 <member name="M:MbUnit.Core.Remoting.TestDomainBase.Unload">
6656 <summary>
6657 Unload domain
6658 </summary>
6659 </member>
6660 <member name="M:MbUnit.Core.Remoting.TestDomainBase.Reload">
6661 <summary>
6662 Unload and reload test domain
6663 </summary>
6664 </member>
6665 <member name="P:MbUnit.Core.Remoting.TestDomainBase.Identifier">
6666 <summary>
6667 Gets a <see cref="T:System.Guid"/> identifying the <see cref="T:MbUnit.Core.Remoting.TestDomain"/>
6668 </summary>
6669 </member>
6670 <member name="T:MbUnit.Core.Remoting.AssemblyWatcher">
6671 <summary>
6672 AssemblyWatcher keeps track of one or more assemblies to
6673 see if they have changed. It incorporates a delayed notification
6674 and uses a standard event to notify any interested parties
6675 about the change. The path to the assembly is provided as
6676 an argument to the event handler so that one routine can
6677 be used to handle events from multiple watchers.
6678 </summary>
6679 <remarks>
6680 <para>
6681 Code takened from NUnit.
6682 <code>
6683 /************************************************************************************
6684 '
6685 ' Copyright 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
6686 ' Copyright 2000-2002 Philip A. Craig
6687 '
6688 ' This software is provided 'as-is', without any express or implied warranty. In no
6689 ' event will the authors be held liable for any damages arising from the use of this
6690 ' software.
6691 '
6692 ' Permission is granted to anyone to use this software for any purpose, including
6693 ' commercial applications, and to alter it and redistribute it freely, subject to the
6694 ' following restrictions:
6695 '
6696 ' 1. The origin of this software must not be misrepresented; you must not claim that
6697 ' you wrote the original software. If you use this software in a product, an
6698 ' acknowledgment (see the following) in the product documentation is required.
6699 '
6700 ' Portions Copyright 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
6701 ' or Copyright 2000-2002 Philip A. Craig
6702 '
6703 ' 2. Altered source versions must be plainly marked as such, and must not be
6704 ' misrepresented as being the original software.
6705 '
6706 ' 3. This notice may not be removed or altered from any source distribution.
6707 '
6708 '***********************************************************************************/
6709 </code>
6710 </para>
6711 </remarks>
6712 </member>
6713 <member name="T:MbUnit.Core.Remoting.AuthorTestTreePopulator">
6714 <summary>
6715 Summary description for AuthorTestTreePopulator.
6716 </summary>
6717 </member>
6718 <member name="T:MbUnit.Core.Remoting.TestTreePopulator">
6719 <summary>
6720 Defines a class that can populate a tree of tests
6721 </summary>
6722 </member>
6723 <member name="T:MbUnit.Core.Remoting.ITestTreePopulator">
6724 <summary>
6725 Defines a class that can populate a tree of tests
6726 </summary>
6727 </member>
6728 <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Clear">
6729 <summary>
6730 Clears the internal representation of the tree
6731 </summary>
6732 </member>
6733 <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
6734 <summary>
6735 Populates the node using the <see cref="T:MbUnit.Core.RunPipe"/> instance
6736 contained in <paramref name="pipes"/>.
6737 </summary>
6738 <param name="nodes">A node dictionary.</param>
6739 <param name="root">The root node.</param>
6740 <param name="pipes">A collection of pipes.</param>
6741 <exception cref="T:System.ArgumentNullException">
6742 <paramref name="root"/> or <paramref name="pipes"/> is a null
6743 reference (Nothing in Visual Basic)
6744 </exception>
6745 </member>
6746 <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Clear">
6747 <summary>
6748 Clears the internal representation of the tree
6749 </summary>
6750 </member>
6751 <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
6752 <summary>
6753 Populates the node using the <see cref="T:MbUnit.Core.RunPipe"/> instance
6754 contained in <paramref name="pipes"/>.
6755 </summary>
6756 <param name="nodes">Node dictionary.</param>
6757 <param name="root">The root node.</param>
6758 <param name="pipes">Collection of <see cref="T:MbUnit.Core.RunPipeStarter"/>s</param>
6759 <exception cref="T:System.ArgumentNullException">
6760 <paramref name="root"/> or <paramref name="pipes"/> is a null
6761 reference (Nothing in Visual Basic)
6762 </exception>
6763 </member>
6764 <member name="M:MbUnit.Core.Remoting.CacheFolderHelper.DeleteDir(System.IO.DirectoryInfo)">
6765 <summary>
6766 Helper method to delete the cache dir. This method deals
6767 with a bug that occurs when pdb files are marked read-only.
6768 </summary>
6769 <param name="cacheDir"></param>
6770 </member>
6771 <member name="M:MbUnit.Core.Remoting.ConfigUtils.MergeDependentAssembly(System.Xml.XmlDocument,System.Reflection.AssemblyName,System.String,System.String)">
6772 <summary>
6773 Merge a 'dependentAssembly' directive into a given config document.
6774 If any entries exist for the same assembly they will be deleted
6775 before the new entry is merged.
6776 </summary>
6777 <param name="doc">The config document to merge</param>
6778 <param name="assemblyName">The Assembly that should be used</param>
6779 <param name="versionRange">The range of compatable versions (eg. "1.0.0.0-3.0.0.0")</param>
6780 <param name="codeBase">The codebase to use.</param>
6781 </member>
6782 <member name="M:MbUnit.Core.Remoting.ConfigUtils.createDependentAssembly(System.Xml.XmlDocument,System.Reflection.AssemblyName,System.String,System.String)">
6783 <summary>
6784
6785 </summary>
6786 <param name="doc"></param>
6787 <param name="assemblyName"></param>
6788 <param name="oldVersion"></param>
6789 <param name="assemblyCodeBase">specify a URL to define a codeBase otherwise null</param>
6790 <returns></returns>
6791 </member>
6792 <member name="T:MbUnit.Core.Remoting.FixtureCategoryTestTreePopulator">
6793 <summary>
6794 Summary description for FixtureCategoryTestTreePopulator.
6795 </summary>
6796 </member>
6797 <member name="T:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary">
6798 <summary>
6799 A dictionary with keys of type Guid and values of type TestTreeNode
6800 </summary>
6801 </member>
6802 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.#ctor">
6803 <summary>
6804 Initializes a new empty instance of the GuidTestTreeNodeDictionary class
6805 </summary>
6806 </member>
6807 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Add(MbUnit.Core.Remoting.TestTreeNode)">
6808 <summary>
6809 Adds an element with the specified key and value to this GuidTestTreeNodeDictionary.
6810 </summary>
6811 <param name="value">
6812 The TestTreeNode value of the element to add.
6813 </param>
6814 </member>
6815 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Contains(System.Guid)">
6816 <summary>
6817 Determines whether this GuidTestTreeNodeDictionary contains a specific key.
6818 </summary>
6819 <param name="key">
6820 The Guid key to locate in this GuidTestTreeNodeDictionary.
6821 </param>
6822 <returns>
6823 true if this GuidTestTreeNodeDictionary contains an element with the specified key;
6824 otherwise, false.
6825 </returns>
6826 </member>
6827 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.ContainsKey(System.Guid)">
6828 <summary>
6829 Determines whether this GuidTestTreeNodeDictionary contains a specific key.
6830 </summary>
6831 <param name="key">
6832 The Guid key to locate in this GuidTestTreeNodeDictionary.
6833 </param>
6834 <returns>
6835 true if this GuidTestTreeNodeDictionary contains an element with the specified key;
6836 otherwise, false.
6837 </returns>
6838 </member>
6839 <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Remove(System.Guid)">
6840 <summary>
6841 Removes the element with the specified key from this GuidTestTreeNodeDictionary.
6842 </summary>
6843 <param name="key">
6844 The Guid key of the element to remove.
6845 </param>
6846 </member>
6847 <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Item(System.Guid)">
6848 <summary>
6849 Gets or sets the TestTreeNode associated with the given Guid
6850 </summary>
6851 <param name="key">
6852 The Guid whose value to get or set.
6853 </param>
6854 </member>
6855 <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Keys">
6856 <summary>
6857 Gets a collection containing the keys in this GuidTestTreeNodeDictionary.
6858 </summary>
6859 </member>
6860 <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Values">
6861 <summary>
6862 Gets a collection containing the values in this GuidTestTreeNodeDictionary.
6863 </summary>
6864 </member>
6865 <member name="T:MbUnit.Core.Remoting.GuidTreeNodeDictionary">
6866 <summary>
6867 A dictionary with keys of type Guid and values of type TreeNode
6868 </summary>
6869 </member>
6870 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.#ctor">
6871 <summary>
6872 Initializes a new empty instance of the GuidTreeNodeDictionary class
6873 </summary>
6874 </member>
6875 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Add(System.Windows.Forms.TreeNode)">
6876 <summary>
6877 Adds an element with the specified key and value to this GuidTreeNodeDictionary.
6878 </summary>
6879 <param name="value">
6880 The TreeNode value of the element to add.
6881 </param>
6882 </member>
6883 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Contains(System.Guid)">
6884 <summary>
6885 Determines whether this GuidTreeNodeDictionary contains a specific key.
6886 </summary>
6887 <param name="key">
6888 The Guid key to locate in this GuidTreeNodeDictionary.
6889 </param>
6890 <returns>
6891 true if this GuidTreeNodeDictionary contains an element with the specified key;
6892 otherwise, false.
6893 </returns>
6894 </member>
6895 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.ContainsKey(System.Guid)">
6896 <summary>
6897 Determines whether this GuidTreeNodeDictionary contains a specific key.
6898 </summary>
6899 <param name="key">
6900 The Guid key to locate in this GuidTreeNodeDictionary.
6901 </param>
6902 <returns>
6903 true if this GuidTreeNodeDictionary contains an element with the specified key;
6904 otherwise, false.
6905 </returns>
6906 </member>
6907 <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Remove(System.Guid)">
6908 <summary>
6909 Removes the element with the specified key from this GuidTreeNodeDictionary.
6910 </summary>
6911 <param name="key">
6912 The Guid key of the element to remove.
6913 </param>
6914 </member>
6915 <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Item(System.Guid)">
6916 <summary>
6917 Gets or sets the TreeNode associated with the given Guid
6918 </summary>
6919 <param name="key">
6920 The Guid whose value to get or set.
6921 </param>
6922 </member>
6923 <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Keys">
6924 <summary>
6925 Gets a collection containing the keys in this GuidTreeNodeDictionary.
6926 </summary>
6927 </member>
6928 <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Values">
6929 <summary>
6930 Gets a collection containing the values in this GuidTreeNodeDictionary.
6931 </summary>
6932 </member>
6933 <member name="T:MbUnit.Core.Remoting.ImportanceTestTreePopulator">
6934 <summary>
6935 Summary description for ImportanceTestTreePopulator.
6936 </summary>
6937 </member>
6938 <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Clear">
6939 <summary>
6940 Clears the internal representation of the tree
6941 </summary>
6942 </member>
6943 <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
6944 <summary>
6945 Populates the node using the <see cref="T:MbUnit.Core.RunPipe"/> instance
6946 contained in <paramref name="pipes"/>.
6947 </summary>
6948 </member>
6949 <member name="T:MbUnit.Core.Remoting.ReflectionImageList">
6950 <summary>
6951 Summary description for ImageListBuilder.
6952 </summary>
6953 </member>
6954 <member name="M:MbUnit.Core.Remoting.RemoteTestEngine.AddConsoleListener">
6955 <summary>
6956 Supports verbose output option of console app.
6957 Added as part of fix to issue MBUNIT-28.
6958 </summary>
6959 <author>Marc Stober</author>
6960 <date>December 21, 2005</date>
6961 </member>
6962 <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.ConfigureCachePath(System.AppDomainSetup)">
6963 <summary>
6964 Set the location for caching and delete any old cache info
6965 </summary>
6966 <param name="setup">Our domain</param>
6967 </member>
6968 <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.AssemblyResolveHandler(System.Object,System.ResolveEventArgs)">
6969 <summary>
6970 This method is used to provide assembly location resolver. It is called on event as needed by the CLR.
6971 Refer to document related to AppDomain.CurrentDomain.AssemblyResolve
6972 </summary>
6973 </member>
6974 <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.MakeDomain(System.String,System.String,System.String,System.String)">
6975 <summary>
6976 Creates an AppDomain for the Test Assembly
6977 </summary>
6978 <param name="domainName"></param>
6979 <param name="appBase"></param>
6980 <param name="configFile"></param>
6981 <param name="binPath"></param>
6982 <returns></returns>
6983 </member>
6984 <member name="P:MbUnit.Core.Remoting.SeparateTestDomain.ShadowCopyFiles">
6985 <summary>
6986 Gets or sets a value indicating the assemblies have
6987 to be shadow copied
6988 </summary>
6989 </member>
6990 <member name="T:MbUnit.Core.Remoting.StringTestTreeNodeDictionary">
6991 <summary>
6992 A dictionary with keys of type String and values of type TestTreeNode
6993 </summary>
6994 </member>
6995 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.#ctor">
6996 <summary>
6997 Initializes a new empty instance of the StringTestTreeNodeDictionary class
6998 </summary>
6999 </member>
7000 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Add(System.String,MbUnit.Core.Remoting.TestTreeNode)">
7001 <summary>
7002 Adds an element with the specified key and value to this StringTestTreeNodeDictionary.
7003 </summary>
7004 <param name="key">
7005 The String key of the element to add.
7006 </param>
7007 <param name="value">
7008 The TestTreeNode value of the element to add.
7009 </param>
7010 </member>
7011 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Contains(System.String)">
7012 <summary>
7013 Determines whether this StringTestTreeNodeDictionary contains a specific key.
7014 </summary>
7015 <param name="key">
7016 The String key to locate in this StringTestTreeNodeDictionary.
7017 </param>
7018 <returns>
7019 true if this StringTestTreeNodeDictionary contains an element with the specified key;
7020 otherwise, false.
7021 </returns>
7022 </member>
7023 <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Remove(System.String)">
7024 <summary>
7025 Removes the element with the specified key from this StringTestTreeNodeDictionary.
7026 </summary>
7027 <param name="key">
7028 The String key of the element to remove.
7029 </param>
7030 </member>
7031 <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Item(System.String)">
7032 <summary>
7033 Gets or sets the TestTreeNode associated with the given String
7034 </summary>
7035 <param name="key">
7036 The String whose value to get or set.
7037 </param>
7038 </member>
7039 <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Keys">
7040 <summary>
7041 Gets a collection containing the keys in this StringTestTreeNodeDictionary.
7042 </summary>
7043 </member>
7044 <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Values">
7045 <summary>
7046 Gets a collection containing the values in this StringTestTreeNodeDictionary.
7047 </summary>
7048 </member>
7049 <member name="P:MbUnit.Core.Remoting.TestDomain.TestFilePath">
7050 <summary>
7051 Gets the testFilePath
7052 </summary>
7053 </member>
7054 <member name="T:MbUnit.Core.Remoting.TestsOnTestTreePopulator">
7055 <summary>
7056 Summary description for TestsOnTestTreePopulator.
7057 </summary>
7058 </member>
7059 <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection">
7060 <summary>
7061 A collection of elements of type TestTreeNode
7062 </summary>
7063 </member>
7064 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.#ctor(MbUnit.Core.Remoting.TestTreeNode)">
7065 <summary>
7066 Initializes a new empty instance of the TestTreeNodeCollection class.
7067 </summary>
7068 </member>
7069 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Add(MbUnit.Core.Remoting.TestTreeNode)">
7070 <summary>
7071 Adds an instance of type TestTreeNode to the end of this TestTreeNodeCollection.
7072 </summary>
7073 <param name="value">
7074 The TestTreeNode to be added to the end of this TestTreeNodeCollection.
7075 </param>
7076 </member>
7077 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Contains(MbUnit.Core.Remoting.TestTreeNode)">
7078 <summary>
7079 Determines whether a specfic TestTreeNode value is in this TestTreeNodeCollection.
7080 </summary>
7081 <param name="value">
7082 The TestTreeNode value to locate in this TestTreeNodeCollection.
7083 </param>
7084 <returns>
7085 true if value is found in this TestTreeNodeCollection;
7086 false otherwise.
7087 </returns>
7088 </member>
7089 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Remove(MbUnit.Core.Remoting.TestTreeNode)">
7090 <summary>
7091 Removes the first occurrence of a specific TestTreeNode from this TestTreeNodeCollection.
7092 </summary>
7093 <param name="value">
7094 The TestTreeNode value to remove from this TestTreeNodeCollection.
7095 </param>
7096 </member>
7097 <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.GetEnumerator">
7098 <summary>
7099 Returns an enumerator that can iterate through the elements of this TestTreeNodeCollection.
7100 </summary>
7101 <returns>
7102 An object that implements System.Collections.IEnumerator.
7103 </returns>
7104 </member>
7105 <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection.Enumerator">
7106 <summary>
7107 Type-specific enumeration class, used by TestTreeNodeCollection.GetEnumerator.
7108 </summary>
7109 </member>
7110 <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection">
7111 <summary>
7112 A collection of elements of type TestTreePopulator
7113 </summary>
7114 </member>
7115 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.#ctor">
7116 <summary>
7117 Initializes a new empty instance of the TestTreePopulatorCollection class.
7118 </summary>
7119 </member>
7120 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.#ctor(MbUnit.Core.Remoting.ITestTreePopulator[])">
7121 <summary>
7122 Initializes a new instance of the TestTreePopulatorCollection class, containing elements
7123 copied from an array.
7124 </summary>
7125 <param name="items">
7126 The array whose elements are to be added to the new TestTreePopulatorCollection.
7127 </param>
7128 </member>
7129 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.#ctor(MbUnit.Core.Remoting.TestTreePopulatorCollection)">
7130 <summary>
7131 Initializes a new instance of the TestTreePopulatorCollection class, containing elements
7132 copied from another instance of TestTreePopulatorCollection
7133 </summary>
7134 <param name="items">
7135 The TestTreePopulatorCollection whose elements are to be added to the new TestTreePopulatorCollection.
7136 </param>
7137 </member>
7138 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.ITestTreePopulator[])">
7139 <summary>
7140 Adds the elements of an array to the end of this TestTreePopulatorCollection.
7141 </summary>
7142 <param name="items">
7143 The array whose elements are to be added to the end of this TestTreePopulatorCollection.
7144 </param>
7145 </member>
7146 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.TestTreePopulatorCollection)">
7147 <summary>
7148 Adds the elements of another TestTreePopulatorCollection to the end of this TestTreePopulatorCollection.
7149 </summary>
7150 <param name="items">
7151 The TestTreePopulatorCollection whose elements are to be added to the end of this TestTreePopulatorCollection.
7152 </param>
7153 </member>
7154 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Add(MbUnit.Core.Remoting.ITestTreePopulator)">
7155 <summary>
7156 Adds an instance of type TestTreePopulator to the end of this TestTreePopulatorCollection.
7157 </summary>
7158 <param name="value">
7159 The TestTreePopulator to be added to the end of this TestTreePopulatorCollection.
7160 </param>
7161 </member>
7162 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Contains(MbUnit.Core.Remoting.ITestTreePopulator)">
7163 <summary>
7164 Determines whether a specfic TestTreePopulator value is in this TestTreePopulatorCollection.
7165 </summary>
7166 <param name="value">
7167 The TestTreePopulator value to locate in this TestTreePopulatorCollection.
7168 </param>
7169 <returns>
7170 true if value is found in this TestTreePopulatorCollection;
7171 false otherwise.
7172 </returns>
7173 </member>
7174 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Remove(MbUnit.Core.Remoting.ITestTreePopulator)">
7175 <summary>
7176 Removes the first occurrence of a specific TestTreePopulator from this TestTreePopulatorCollection.
7177 </summary>
7178 <param name="value">
7179 The TestTreePopulator value to remove from this TestTreePopulatorCollection.
7180 </param>
7181 </member>
7182 <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.GetEnumerator">
7183 <summary>
7184 Returns an enumerator that can iterate through the elements of this TestTreePopulatorCollection.
7185 </summary>
7186 <returns>
7187 An object that implements System.Collections.IEnumerator.
7188 </returns>
7189 </member>
7190 <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection.Enumerator">
7191 <summary>
7192 Type-specific enumeration class, used by TestTreePopulatorCollection.GetEnumerator.
7193 </summary>
7194 </member>
7195 <member name="P:MbUnit.Core.Remoting.TreeTestDomainCollection.Watcher">
7196 <summary>
7197 Gets the assembly watcher
7198 </summary>
7199 </member>
7200 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.IO.TextWriter)">
7201 <summary>
7202 Render the report result to the specified writer
7203 </summary>
7204 <param name="result">Result from the test</param>
7205 <param name="writer">Writer to write result output to</param>
7206 </member>
7207 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String)">
7208 <summary>
7209 Render the report result to a file
7210 </summary>
7211 <param name="result">Result from the test</param>
7212 <param name="fileName">Report output file name </param>
7213 </member>
7214 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String,System.String)">
7215 <summary>
7216 Render the report result to a file
7217 </summary>
7218 <param name="result">Result from the test</param>
7219 <param name="outputPath">Output directory</param>
7220 <param name="nameFormat">Default format name</param>
7221 <param name="extension">Extension of the file</param>
7222 <returns>File name of the report</returns>
7223 </member>
7224 <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String)">
7225 <summary>
7226 Render the report result to a file
7227 </summary>
7228 <param name="result">Result from the test</param>
7229 <param name="outputPath">Output directory</param>
7230 <param name="nameFormat">Default format name. If null, the default name will be used</param>
7231 <returns>File name of the report</returns>
7232 </member>
7233 <member name="T:MbUnit.Core.Reports.XslTransformReport">
7234 <summary>
7235 </summary>
7236 </member>
7237 <member name="T:MbUnit.Core.Reports.Serialization.ReportAssembly">
7238 <summary />
7239 <remarks />
7240 </member>
7241 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssembly._version">
7242 <summary />
7243 <remarks />
7244 </member>
7245 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssembly._name">
7246 <summary />
7247 <remarks />
7248 </member>
7249 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssembly._nameSpaces">
7250 <summary />
7251 <remarks />
7252 </member>
7253 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssembly._counter">
7254 <summary />
7255 <remarks />
7256 </member>
7257 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssembly._fullName">
7258 <summary />
7259 <remarks />
7260 </member>
7261 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.TearDown">
7262 <summary />
7263 <remarks />
7264 </member>
7265 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.SetUp">
7266 <summary />
7267 <remarks />
7268 </member>
7269 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.Counter">
7270 <summary />
7271 <remarks />
7272 </member>
7273 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.Version">
7274 <summary />
7275 <remarks />
7276 </member>
7277 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.Namespaces">
7278 <summary />
7279 <remarks />
7280 </member>
7281 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.Name">
7282 <summary />
7283 <remarks />
7284 </member>
7285 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.FullName">
7286 <summary />
7287 <remarks />
7288 </member>
7289 <member name="M:MbUnit.Core.Reports.Serialization.ReportAssembly.NamespaceCollection.#ctor">
7290 <summary />
7291 <remarks />
7292 </member>
7293 <member name="M:MbUnit.Core.Reports.Serialization.ReportAssembly.NamespaceCollection.Add(System.Object)">
7294 <summary />
7295 <remarks />
7296 </member>
7297 <member name="M:MbUnit.Core.Reports.Serialization.ReportAssembly.NamespaceCollection.AddReportNamespace(MbUnit.Core.Reports.Serialization.ReportNamespace)">
7298 <summary />
7299 <remarks />
7300 </member>
7301 <member name="M:MbUnit.Core.Reports.Serialization.ReportAssembly.NamespaceCollection.ContainsReportNamespace(MbUnit.Core.Reports.Serialization.ReportNamespace)">
7302 <summary />
7303 <remarks />
7304 </member>
7305 <member name="M:MbUnit.Core.Reports.Serialization.ReportAssembly.NamespaceCollection.RemoveReportNamespace(MbUnit.Core.Reports.Serialization.ReportNamespace)">
7306 <summary />
7307 <remarks />
7308 </member>
7309 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssembly.NamespaceCollection.Item(System.Int32)">
7310 <summary />
7311 <remarks />
7312 </member>
7313 <member name="T:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion">
7314 <summary />
7315 <remarks />
7316 </member>
7317 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion._build">
7318 <summary />
7319 <remarks />
7320 </member>
7321 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion._revision">
7322 <summary />
7323 <remarks />
7324 </member>
7325 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion._minor">
7326 <summary />
7327 <remarks />
7328 </member>
7329 <member name="F:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion._major">
7330 <summary />
7331 <remarks />
7332 </member>
7333 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion.Major">
7334 <summary />
7335 <remarks />
7336 </member>
7337 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion.Minor">
7338 <summary />
7339 <remarks />
7340 </member>
7341 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion.Build">
7342 <summary />
7343 <remarks />
7344 </member>
7345 <member name="P:MbUnit.Core.Reports.Serialization.ReportAssemblyVersion.Revision">
7346 <summary />
7347 <remarks />
7348 </member>
7349 <member name="T:MbUnit.Core.Reports.Serialization.ReportCounter">
7350 <summary />
7351 <remarks />
7352 </member>
7353 <member name="P:MbUnit.Core.Reports.Serialization.ReportCounter.RunCount">
7354 <summary />
7355 <remarks />
7356 </member>
7357 <member name="P:MbUnit.Core.Reports.Serialization.ReportCounter.SuccessCount">
7358 <summary />
7359 <remarks />
7360 </member>
7361 <member name="P:MbUnit.Core.Reports.Serialization.ReportCounter.FailureCount">
7362 <summary />
7363 <remarks />
7364 </member>
7365 <member name="P:MbUnit.Core.Reports.Serialization.ReportCounter.IgnoreCount">
7366 <summary />
7367 <remarks />
7368 </member>
7369 <member name="T:MbUnit.Core.Reports.Serialization.ReportException">
7370 <summary />
7371 <remarks />
7372 </member>
7373 <member name="F:MbUnit.Core.Reports.Serialization.ReportException._stackTrace">
7374 <summary />
7375 <remarks />
7376 </member>
7377 <member name="F:MbUnit.Core.Reports.Serialization.ReportException._message">
7378 <summary />
7379 <remarks />
7380 </member>
7381 <member name="F:MbUnit.Core.Reports.Serialization.ReportException._source">
7382 <summary />
7383 <remarks />
7384 </member>
7385 <member name="F:MbUnit.Core.Reports.Serialization.ReportException._exception">
7386 <summary />
7387 <remarks />
7388 </member>
7389 <member name="F:MbUnit.Core.Reports.Serialization.ReportException._type">
7390 <summary />
7391 <remarks />
7392 </member>
7393 <member name="P:MbUnit.Core.Reports.Serialization.ReportException.Message">
7394 <summary />
7395 <remarks />
7396 </member>
7397 <member name="P:MbUnit.Core.Reports.Serialization.ReportException.Source">
7398 <summary />
7399 <remarks />
7400 </member>
7401 <member name="P:MbUnit.Core.Reports.Serialization.ReportException.StackTrace">
7402 <summary />
7403 <remarks />
7404 </member>
7405 <member name="P:MbUnit.Core.Reports.Serialization.ReportException.Exception">
7406 <summary />
7407 <remarks />
7408 </member>
7409 <member name="P:MbUnit.Core.Reports.Serialization.ReportException.Type">
7410 <summary />
7411 <remarks />
7412 </member>
7413 <member name="M:MbUnit.Core.Reports.Serialization.ReportException.PropertyCollection.#ctor">
7414 <summary />
7415 <remarks />
7416 </member>
7417 <member name="M:MbUnit.Core.Reports.Serialization.ReportException.PropertyCollection.Add(System.Object)">
7418 <summary />
7419 <remarks />
7420 </member>
7421 <member name="M:MbUnit.Core.Reports.Serialization.ReportException.PropertyCollection.AddReportProperty(MbUnit.Core.Reports.Serialization.ReportProperty)">
7422 <summary />
7423 <remarks />
7424 </member>
7425 <member name="M:MbUnit.Core.Reports.Serialization.ReportException.PropertyCollection.ContainsReportProperty(MbUnit.Core.Reports.Serialization.ReportProperty)">
7426 <summary />
7427 <remarks />
7428 </member>
7429 <member name="M:MbUnit.Core.Reports.Serialization.ReportException.PropertyCollection.RemoveReportProperty(MbUnit.Core.Reports.Serialization.ReportProperty)">
7430 <summary />
7431 <remarks />
7432 </member>
7433 <member name="P:MbUnit.Core.Reports.Serialization.ReportException.PropertyCollection.Item(System.Int32)">
7434 <summary />
7435 <remarks />
7436 </member>
7437 <member name="T:MbUnit.Core.Reports.Serialization.ReportFixture">
7438 <summary />
7439 <remarks />
7440 </member>
7441 <member name="F:MbUnit.Core.Reports.Serialization.ReportFixture._description">
7442 <summary />
7443 <remarks />
7444 </member>
7445 <member name="F:MbUnit.Core.Reports.Serialization.ReportFixture._name">
7446 <summary />
7447 <remarks />
7448 </member>
7449 <member name="F:MbUnit.Core.Reports.Serialization.ReportFixture._type">
7450 <summary />
7451 <remarks />
7452 </member>
7453 <member name="F:MbUnit.Core.Reports.Serialization.ReportFixture._counter">
7454 <summary />
7455 <remarks />
7456 </member>
7457 <member name="F:MbUnit.Core.Reports.Serialization.ReportFixture._runs">
7458 <summary />
7459 <remarks />
7460 </member>
7461 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.TearDown">
7462 <summary />
7463 <remarks />
7464 </member>
7465 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.SetUp">
7466 <summary />
7467 <remarks />
7468 </member>
7469 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.Counter">
7470 <summary />
7471 <remarks />
7472 </member>
7473 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.Description">
7474 <summary />
7475 <remarks />
7476 </member>
7477 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.Runs">
7478 <summary />
7479 <remarks />
7480 </member>
7481 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.Name">
7482 <summary />
7483 <remarks />
7484 </member>
7485 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.Type">
7486 <summary />
7487 <remarks />
7488 </member>
7489 <member name="M:MbUnit.Core.Reports.Serialization.ReportFixture.RunCollection.#ctor">
7490 <summary />
7491 <remarks />
7492 </member>
7493 <member name="M:MbUnit.Core.Reports.Serialization.ReportFixture.RunCollection.Add(System.Object)">
7494 <summary />
7495 <remarks />
7496 </member>
7497 <member name="M:MbUnit.Core.Reports.Serialization.ReportFixture.RunCollection.AddReportRun(MbUnit.Core.Reports.Serialization.ReportRun)">
7498 <summary />
7499 <remarks />
7500 </member>
7501 <member name="M:MbUnit.Core.Reports.Serialization.ReportFixture.RunCollection.ContainsReportRun(MbUnit.Core.Reports.Serialization.ReportRun)">
7502 <summary />
7503 <remarks />
7504 </member>
7505 <member name="M:MbUnit.Core.Reports.Serialization.ReportFixture.RunCollection.RemoveReportRun(MbUnit.Core.Reports.Serialization.ReportRun)">
7506 <summary />
7507 <remarks />
7508 </member>
7509 <member name="P:MbUnit.Core.Reports.Serialization.ReportFixture.RunCollection.Item(System.Int32)">
7510 <summary />
7511 <remarks />
7512 </member>
7513 <member name="T:MbUnit.Core.Reports.Serialization.ReportInvoker">
7514 <summary />
7515 <remarks />
7516 </member>
7517 <member name="F:MbUnit.Core.Reports.Serialization.ReportInvoker._description">
7518 <summary />
7519 <remarks />
7520 </member>
7521 <member name="F:MbUnit.Core.Reports.Serialization.ReportInvoker._name">
7522 <summary />
7523 <remarks />
7524 </member>
7525 <member name="F:MbUnit.Core.Reports.Serialization.ReportInvoker._type">
7526 <summary />
7527 <remarks />
7528 </member>
7529 <member name="P:MbUnit.Core.Reports.Serialization.ReportInvoker.Description">
7530 <summary />
7531 <remarks />
7532 </member>
7533 <member name="P:MbUnit.Core.Reports.Serialization.ReportInvoker.Name">
7534 <summary />
7535 <remarks />
7536 </member>
7537 <member name="P:MbUnit.Core.Reports.Serialization.ReportInvoker.Type">
7538 <summary />
7539 <remarks />
7540 </member>
7541 <member name="T:MbUnit.Core.Reports.Serialization.ReportNamespace">
7542 <summary />
7543 <remarks />
7544 </member>
7545 <member name="F:MbUnit.Core.Reports.Serialization.ReportNamespace._name">
7546 <summary />
7547 <remarks />
7548 </member>
7549 <member name="F:MbUnit.Core.Reports.Serialization.ReportNamespace._nameSpaces">
7550 <summary />
7551 <remarks />
7552 </member>
7553 <member name="F:MbUnit.Core.Reports.Serialization.ReportNamespace._counter">
7554 <summary />
7555 <remarks />
7556 </member>
7557 <member name="F:MbUnit.Core.Reports.Serialization.ReportNamespace._fixtures">
7558 <summary />
7559 <remarks />
7560 </member>
7561 <member name="P:MbUnit.Core.Reports.Serialization.ReportNamespace.Counter">
7562 <summary />
7563 <remarks />
7564 </member>
7565 <member name="P:MbUnit.Core.Reports.Serialization.ReportNamespace.Namespaces">
7566 <summary />
7567 <remarks />
7568 </member>
7569 <member name="P:MbUnit.Core.Reports.Serialization.ReportNamespace.Fixtures">
7570 <summary />
7571 <remarks />
7572 </member>
7573 <member name="P:MbUnit.Core.Reports.Serialization.ReportNamespace.Name">
7574 <summary />
7575 <remarks />
7576 </member>
7577 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.NamespaceCollection.#ctor">
7578 <summary />
7579 <remarks />
7580 </member>
7581 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.NamespaceCollection.Add(System.Object)">
7582 <summary />
7583 <remarks />
7584 </member>
7585 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.NamespaceCollection.AddReportNamespace(MbUnit.Core.Reports.Serialization.ReportNamespace)">
7586 <summary />
7587 <remarks />
7588 </member>
7589 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.NamespaceCollection.ContainsReportNamespace(MbUnit.Core.Reports.Serialization.ReportNamespace)">
7590 <summary />
7591 <remarks />
7592 </member>
7593 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.NamespaceCollection.RemoveReportNamespace(MbUnit.Core.Reports.Serialization.ReportNamespace)">
7594 <summary />
7595 <remarks />
7596 </member>
7597 <member name="P:MbUnit.Core.Reports.Serialization.ReportNamespace.NamespaceCollection.Item(System.Int32)">
7598 <summary />
7599 <remarks />
7600 </member>
7601 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.FixtureCollection.#ctor">
7602 <summary />
7603 <remarks />
7604 </member>
7605 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.FixtureCollection.Add(System.Object)">
7606 <summary />
7607 <remarks />
7608 </member>
7609 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.FixtureCollection.AddReportFixture(MbUnit.Core.Reports.Serialization.ReportFixture)">
7610 <summary />
7611 <remarks />
7612 </member>
7613 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.FixtureCollection.ContainsReportFixture(MbUnit.Core.Reports.Serialization.ReportFixture)">
7614 <summary />
7615 <remarks />
7616 </member>
7617 <member name="M:MbUnit.Core.Reports.Serialization.ReportNamespace.FixtureCollection.RemoveReportFixture(MbUnit.Core.Reports.Serialization.ReportFixture)">
7618 <summary />
7619 <remarks />
7620 </member>
7621 <member name="P:MbUnit.Core.Reports.Serialization.ReportNamespace.FixtureCollection.Item(System.Int32)">
7622 <summary />
7623 <remarks />
7624 </member>
7625 <member name="T:MbUnit.Core.Reports.Serialization.ReportResult">
7626 <summary />
7627 <remarks />
7628 </member>
7629 <member name="F:MbUnit.Core.Reports.Serialization.ReportResult._date">
7630 <summary />
7631 <remarks />
7632 </member>
7633 <member name="F:MbUnit.Core.Reports.Serialization.ReportResult._counter">
7634 <summary />
7635 <remarks />
7636 </member>
7637 <member name="F:MbUnit.Core.Reports.Serialization.ReportResult._assemblies">
7638 <summary />
7639 <remarks />
7640 </member>
7641 <member name="P:MbUnit.Core.Reports.Serialization.ReportResult.Counter">
7642 <summary />
7643 <remarks />
7644 </member>
7645 <member name="P:MbUnit.Core.Reports.Serialization.ReportResult.Assemblies">
7646 <summary />
7647 <remarks />
7648 </member>
7649 <member name="P:MbUnit.Core.Reports.Serialization.ReportResult.Date">
7650 <summary />
7651 <remarks />
7652 </member>
7653 <member name="M:MbUnit.Core.Reports.Serialization.ReportResult.Assembliecollection.#ctor">
7654 <summary />
7655 <remarks />
7656 </member>
7657 <member name="M:MbUnit.Core.Reports.Serialization.ReportResult.Assembliecollection.Add(System.Object)">
7658 <summary />
7659 <remarks />
7660 </member>
7661 <member name="M:MbUnit.Core.Reports.Serialization.ReportResult.Assembliecollection.AddReportAssembly(MbUnit.Core.Reports.Serialization.ReportAssembly)">
7662 <summary />
7663 <remarks />
7664 </member>
7665 <member name="M:MbUnit.Core.Reports.Serialization.ReportResult.Assembliecollection.ContainsReportAssembly(MbUnit.Core.Reports.Serialization.ReportAssembly)">
7666 <summary />
7667 <remarks />
7668 </member>
7669 <member name="M:MbUnit.Core.Reports.Serialization.ReportResult.Assembliecollection.RemoveReportAssembly(MbUnit.Core.Reports.Serialization.ReportAssembly)">
7670 <summary />
7671 <remarks />
7672 </member>
7673 <member name="P:MbUnit.Core.Reports.Serialization.ReportResult.Assembliecollection.Item(System.Int32)">
7674 <summary />
7675 <remarks />
7676 </member>
7677 <member name="T:MbUnit.Core.Reports.Serialization.ReportRun">
7678 <summary />
7679 <remarks />
7680 </member>
7681 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Invokers">
7682 <summary />
7683 <remarks />
7684 </member>
7685 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Description">
7686 <summary />
7687 <remarks />
7688 </member>
7689 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.ConsoleOut">
7690 <summary />
7691 <remarks />
7692 </member>
7693 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.ConsoleError">
7694 <summary />
7695 <remarks />
7696 </member>
7697 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Exception">
7698 <summary />
7699 <remarks />
7700 </member>
7701 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Name">
7702 <summary />
7703 <remarks />
7704 </member>
7705 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Result">
7706 <summary />
7707 <remarks />
7708 </member>
7709 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Duration">
7710 <summary />
7711 <remarks />
7712 </member>
7713 <member name="P:MbUnit.Core.Reports.Serialization.ReportRun.Memory">
7714 <summary />
7715 <remarks />
7716 </member>
7717 <member name="M:MbUnit.Core.Reports.Serialization.ReportRun.InvokerCollection.#ctor">
7718 <summary />
7719 <remarks />
7720 </member>
7721 <member name="M:MbUnit.Core.Reports.Serialization.ReportRun.InvokerCollection.Add(System.Object)">
7722 <summary />
7723 <remarks />
7724 </member>
7725 <member name="M:MbUnit.Core.Reports.Serialization.ReportRun.InvokerCollection.AddReportInvoker(MbUnit.Core.Reports.Serialization.ReportInvoker)">
7726 <summary />
7727 <remarks />
7728 </member>
7729 <member name="M:MbUnit.Core.Reports.Serialization.ReportRun.InvokerCollection.ContainsReportInvoker(MbUnit.Core.Reports.Serialization.ReportInvoker)">
7730 <summary />
7731 <remarks />
7732 </member>
7733 <member name="M:MbUnit.Core.Reports.Serialization.ReportRun.InvokerCollection.RemoveReportInvoker(MbUnit.Core.Reports.Serialization.ReportInvoker)">
7734 <summary />
7735 <remarks />
7736 </member>
7737 <member name="T:MbUnit.Core.Reports.Serialization.ReportRunResult">
7738 <summary />
7739 <remarks />
7740 </member>
7741 <member name="F:MbUnit.Core.Reports.Serialization.ReportRunResult.Success">
7742 <summary />
7743 <remarks />
7744 </member>
7745 <member name="F:MbUnit.Core.Reports.Serialization.ReportRunResult.Failure">
7746 <summary />
7747 <remarks />
7748 </member>
7749 <member name="F:MbUnit.Core.Reports.Serialization.ReportRunResult.Ignore">
7750 <summary />
7751 <remarks />
7752 </member>
7753 <member name="F:MbUnit.Core.Reports.Serialization.ReportRunResult.NotRun">
7754 <summary />
7755 <remarks />
7756 </member>
7757 <member name="T:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown">
7758 <summary />
7759 <remarks />
7760 </member>
7761 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._result">
7762 <summary />
7763 <remarks />
7764 </member>
7765 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._memory">
7766 <summary />
7767 <remarks />
7768 </member>
7769 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._consoleError">
7770 <summary />
7771 <remarks />
7772 </member>
7773 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._name">
7774 <summary />
7775 <remarks />
7776 </member>
7777 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._consoleOut">
7778 <summary />
7779 <remarks />
7780 </member>
7781 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._duration">
7782 <summary />
7783 <remarks />
7784 </member>
7785 <member name="F:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown._exception">
7786 <summary />
7787 <remarks />
7788 </member>
7789 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.ConsoleOut">
7790 <summary />
7791 <remarks />
7792 </member>
7793 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.ConsoleError">
7794 <summary />
7795 <remarks />
7796 </member>
7797 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.Exception">
7798 <summary />
7799 <remarks />
7800 </member>
7801 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.Name">
7802 <summary />
7803 <remarks />
7804 </member>
7805 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.Result">
7806 <summary />
7807 <remarks />
7808 </member>
7809 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.Duration">
7810 <summary />
7811 <remarks />
7812 </member>
7813 <member name="P:MbUnit.Core.Reports.Serialization.ReportSetUpAndTearDown.Memory">
7814 <summary />
7815 <remarks />
7816 </member>
7817 <member name="T:MbUnit.Core.Reports.TextReport">
7818 <summary>
7819 Reports MbUnit result in text format.
7820 </summary>
7821 </member>
7822 <member name="T:MbUnit.Core.Reports.XmlReport">
7823 <summary>
7824 XML Report.
7825 </summary>
7826 </member>
7827 <member name="T:MbUnit.Core.ResourceHelper">
7828 <summary>
7829 Static helper functions for retreiving resources
7830 </summary>
7831 </member>
7832 <member name="M:MbUnit.Core.ResourceHelper.CreateImages(System.String)">
7833 <summary>
7834 Creates and saves the images in the directory with the specified path.
7835 </summary>
7836 <param name="path">The directory path in which to save the images</param>
7837 </member>
7838 <member name="T:MbUnit.Core.RunPipe">
7839 <summary>
7840 This class represents the execution pipe of a test. It contains a
7841 sequence of <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/>.
7842 </summary>
7843 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='RunPipe']"/>
7844 </member>
7845 <member name="M:MbUnit.Core.RunPipe.#ctor(MbUnit.Core.Fixture)">
7846 <summary>
7847 Default constructor - initializes all fields to default values
7848 </summary>
7849 </member>
7850 <member name="T:MbUnit.Core.RunPipeEventArgs">
7851 <summary>
7852 TODO - Add class summary
7853 </summary>
7854 <remarks>
7855 created by - dehalleux
7856 created on - 30/01/2004 14:09:36
7857 </remarks>
7858 </member>
7859 <member name="M:MbUnit.Core.RunPipeEventArgs.#ctor(MbUnit.Core.RunPipe)">
7860 <summary>
7861 Default constructor - initializes all fields to default values
7862 </summary>
7863 </member>
7864 <member name="M:MbUnit.Core.RunPipeResultEventArgs.#ctor(MbUnit.Core.RunPipe,MbUnit.Core.Reports.Serialization.ReportRun)">
7865 <summary>
7866 Default constructor - initializes all fields to default values
7867 </summary>
7868 </member>
7869 <member name="T:MbUnit.Core.RunPipeStarterEventArgs">
7870 <summary>
7871 Summary description for RunPipeStarterEventArgs.
7872 </summary>
7873 </member>
7874 <member name="T:MbUnit.Core.Runs.AssemblyProviderRun">
7875 <summary>
7876 Summary description for ProviderFactoryRun.
7877 </summary>
7878 </member>
7879 <member name="T:MbUnit.Core.Runs.CustomRun">
7880 <summary>
7881 TODO - Add class summary
7882 </summary>
7883 <remarks>
7884 created by - dehalleux
7885 created on - 30/01/2004 15:26:18
7886 </remarks>
7887 </member>
7888 <member name="T:MbUnit.Core.Runs.FixtureDecoratorRun">
7889 <summary>
7890 Summary description for FixtureDecoratorRun.
7891 </summary>
7892 </member>
7893 <member name="T:MbUnit.Core.Runs.IndexerProviderRun">
7894 <summary>
7895 </summary>
7896 </member>
7897 <member name="M:MbUnit.Core.Runs.IndexerProviderRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
7898 <summary>
7899 Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree"/> invoker graph
7900 with <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> generated by the run.
7901 </summary>
7902 <param name="tree">Invoker tree</param>
7903 <param name="parent">parent vertex</param>
7904 <param name="t">class type that is marked by the run</param>
7905 <remarks>
7906 </remarks>
7907 </member>
7908 <member name="P:MbUnit.Core.Runs.IndexerProviderRun.Name">
7909 <summary>
7910 Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun"/>
7911 </summary>
7912 <value>
7913 A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun"/>
7914 </value>
7915 </member>
7916 <member name="P:MbUnit.Core.Runs.IndexerProviderRun.IsTest">
7917 <summary>
7918 Gets a value indicating the run is considered as a test or not.
7919 </summary>
7920 <value>
7921 true if the <see cref="T:MbUnit.Core.Runs.IRun"/> instance is a test
7922 </value>
7923 </member>
7924 <member name="T:MbUnit.Core.Runs.ParallelRun">
7925 <summary>
7926 TODO - Add class summary
7927 </summary>
7928 <remarks>
7929 created by - dehalleux
7930 created on - 29/01/2004 14:44:27
7931 </remarks>
7932 </member>
7933 <member name="T:MbUnit.Core.Runs.ProviderFactoryRun">
7934 <summary>
7935 Summary description for ProviderFactoryRun.
7936 </summary>
7937 </member>
7938 <member name="T:MbUnit.Core.Runs.SequenceRun">
7939 <summary>
7940 A sequence of IRuns
7941 </summary>
7942 </member>
7943 <member name="M:MbUnit.Core.Runs.SequenceRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
7944 <summary>
7945 Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree"/> invoker graph
7946 with <see cref="T:MbUnit.Core.Invokers.IRunInvoker"/> generated by the run.
7947 </summary>
7948 <remarks>
7949 Inherited method from base class Run
7950 </remarks>
7951 <param name="tree">Invoker tree.</param>
7952 <param name="parent">Parent vertex.</param>
7953 <param name="t">The <see cref="T:System.Type"/> to search for.</param>
7954 </member>
7955 <member name="T:MbUnit.Core.Runs.TestFixtureRun">
7956 <summary>
7957 Test fixture run with support for decoration by
7958 <see cref="T:MbUnit.Framework.TestFixtureExtensionAttribute"/>.
7959 </summary>
7960 </member>
7961 <member name="M:MbUnit.Core.Runs.TestFixtureRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
7962 <summary>
7963 Builds the test run invoker tree.
7964 </summary>
7965 <param name="tree"></param>
7966 <param name="parent"></param>
7967 <param name="t"></param>
7968 </member>
7969 <member name="T:MbUnit.Core.TypeEventArgs">
7970 <summary>
7971 Event argument that carries a <see cref="P:MbUnit.Core.TypeEventArgs.Type"/> instance.
7972 </summary>
7973 </member>
7974 <member name="T:MbUnit.Core.TypeEventHandler">
7975 <summary>
7976 Type event delegate
7977 </summary>
7978 </member>
7979 <member name="T:MbUnit.Core.TypeHelper">
7980 <summary>
7981 Helper static class for Type related tasks
7982 </summary>
7983 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TypeHelper']"/>
7984 </member>
7985 <member name="M:MbUnit.Core.TypeHelper.ShowMethodAttributes(System.Type)">
7986 <summary>
7987 Output the methods and their custom attributes to the console.
7988 (Debugging method)
7989 </summary>
7990 <param name="t">type to visit</param>
7991 <remarks>
7992 You can use this method to display the methods of a class or struct
7993 type. Mainly for debugging purpose.
7994 </remarks>
7995 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/examples/example[@name='TypeHelper.ShowMethodAttributes']"/>
7996 <exception cref="T:System.ArgumentNullException">
7997 <paramref name="t"/>
7998 is a null reference
7999 </exception>
8000 <exception cref="T:System.ArgumentException">
8001 <paramref name="t"/>
8002 is anot a class type.
8003 </exception>
8004 </member>
8005 <member name="M:MbUnit.Core.TypeHelper.HasMethodCustomAttribute(System.Type,System.Type)">
8006 <summary>
8007 Gets a value indicating the class type <paramref name="t"/> has
8008 a method that is tagged
8009 by a <paramref name="customAttributeType"/> instance.
8010 </summary>
8011 <param name="t">type to test</param>
8012 <param name="customAttributeType">custom attribute type to search</param>
8013 <returns>
8014 true if class type <paramref name="t"/> has a method tagged by a <paramref name="customAttributeType"/>
8015 attribute, false otherwise.
8016 </returns>
8017 <exception cref="T:System.ArgumentNullException">
8018 <paramref name="t"/> or <paramref name="customAttributeType"/>
8019 is a null reference
8020 </exception>
8021 <remarks>
8022 You can use this method to check that a type is tagged by an attribute.
8023 </remarks>
8024 </member>
8025 <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Type,System.Type)">
8026 <summary>
8027 Gets a value indicating if the <paramref name="t"/> is tagged
8028 by a <paramref name="customAttributeType"/> instance.
8029 </summary>
8030 <param name="t">method to test</param>
8031 <param name="customAttributeType">custom attribute type to search</param>
8032 <returns>
8033 true if <paramref name="t"/> is tagged by a <paramref name="customAttributeType"/>
8034 attribute, false otherwise.
8035 </returns>
8036 <exception cref="T:System.ArgumentNullException">
8037 <paramref name="t"/> or <paramref name="customAttributeType"/>
8038 is a null reference
8039 </exception>
8040 <remarks>
8041 You can use this method to check that a method is tagged by a
8042 specified attribute.
8043 </remarks>
8044 </member>
8045 <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
8046 <summary>
8047 Gets a value indicating if the method info <paramref name="t"/> is tagged
8048 by a <paramref name="customAttributeType"/> instance.
8049 </summary>
8050 <param name="t">method to test</param>
8051 <param name="customAttributeType">custom attribute type to search</param>
8052 <returns>
8053 true if <paramref name="t"/> is tagged by a <paramref name="customAttributeType"/>
8054 attribute, false otherwise.
8055 </returns>
8056 <exception cref="T:System.ArgumentNullException">
8057 <paramref name="t"/> or <paramref name="customAttributeType"/>
8058 is a null reference
8059 </exception>
8060 <remarks>
8061 You can use this method to check that a method is tagged by a
8062 specified attribute.
8063 </remarks>
8064 </member>
8065 <member name="M:MbUnit.Core.TypeHelper.GetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
8066 <summary>
8067 Gets the first instance of <paramref name="customAttributeType"/>
8068 from the method <paramref name="mi"/> custom attributes.
8069 </summary>
8070 <param name="mi">Method to test</param>
8071 <param name="customAttributeType">custom attribute type to search</param>
8072 <returns>
8073 First instance of <paramref name="customAttributeTyp"/>
8074 from the method <paramref name="mi"/> custom attributes.
8075 </returns>
8076 <exception cref="T:System.ArgumentNullException">
8077 <paramref name="mi"/> or <paramref name="customAttributeType"/>
8078 is a null reference
8079 </exception>
8080 <exception cref="T:System.ArgumentException">
8081 <paramref name="mi"/> is not tagged by an attribute of type
8082 <paramref name="customAttributeType"/>
8083 </exception>
8084 <remarks>
8085 You can use this method to retreive a specified attribute
8086 instance of a method.
8087 </remarks>
8088 </member>
8089 <member name="M:MbUnit.Core.TypeHelper.TryGetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
8090 <summary>
8091 Gets the first instance of <paramref name="customAttributeType"/>
8092 from the method <paramref name="mi"/> custom attributes.
8093 </summary>
8094 <param name="mi">Method to test</param>
8095 <param name="customAttributeType">custom attribute type to search</param>
8096 <returns>
8097 First instance of <paramref name="customAttributeTyp"/>
8098 from the method <paramref name="mi"/> custom attributes; otherwize
8099 a null reference
8100 </returns>
8101 <exception cref="T:System.ArgumentNullException">
8102 <paramref name="mi"/> or <paramref name="customAttributeType"/>
8103 is a null reference
8104 </exception>
8105 <remarks>
8106 You can use this method to retreive a specified attribute
8107 instance of a method.
8108 </remarks>
8109 </member>
8110 <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethod(System.Type,System.Type)">
8111 <summary>
8112 Gets the first method of the type <paramref name="t"/>
8113 that is tagged by a <paramref name="customAttributeType"/>
8114 instance.
8115 </summary>
8116 <param name="t">type to test</param>
8117 <param name="customAttributeType">custom attribute type to search</param>
8118 <returns>
8119 First method of <paramref name="t"/> that
8120 that is tagged by a <paramref name="customAttributeType"/>
8121 instance, null if no method is tagged by the specified attribute
8122 type.
8123 </returns>
8124 <exception cref="T:System.ArgumentNullException">
8125 <paramref name="t"/> or <paramref name="customAttributeType"/>
8126 is a null reference
8127 </exception>
8128 <remarks>
8129 You can use this method to retreive a tagged method
8130 </remarks>
8131 </member>
8132 <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethods(System.Type,System.Type)">
8133 <summary>
8134 Gets all methods of the type <paramref name="t"/>
8135 that are tagged by a <paramref name="customAttributeType"/>
8136 instance.
8137 </summary>
8138 <param name="t">type to test</param>
8139 <param name="customAttributeType">custom attribute type to search</param>
8140 <returns>
8141 <see cref="T:System.Reflection.MethodInfo"/> collection of type <paramref name="t"/> that
8142 that are tagged by a <paramref name="customAttributeType"/>
8143 instance.
8144 </returns>
8145 <exception cref="T:System.ArgumentNullException">
8146 <paramref name="t"/> or <paramref name="customAttributeType"/>
8147 is a null reference
8148 </exception>
8149 <remarks>
8150 You can use this method to retreive all the methods of a type
8151 tagged by a <paramref name="customAttributeType"/>.
8152 </remarks>
8153 </member>
8154 <member name="M:MbUnit.Core.TypeHelper.HasConstructor(System.Type,System.Type[])">
8155 <summary>
8156 Gets a value indicating if the type <paramref name="t"/> contains
8157 a Method with the signature defined by <paramref name="types"/>.
8158 </summary>
8159 <remarks>
8160 Checks if a type has a desired Method.
8161 </remarks>
8162 <param name="t">type to test</param>
8163 <param name="types">arguments of the Method</param>
8164 <returns>true if <paramref name="t"/> contains a Method matching
8165 types</returns>
8166 <exception cref="T:System.ArgumentNullException">t is a null reference</exception>
8167 </member>
8168 <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Type[])">
8169 <summary>
8170 Retreives the <see cref="T:System.Reflection.MethodInfo"/> that matches the signature.
8171 </summary>
8172 <param name="t">type to test</param>
8173 <param name="types">Method parameter types</param>
8174 <returns>
8175 The <see cref="T:System.Reflection.MethodInfo"/> instance of <paramref name="t"/> matching
8176 the signature.
8177 </returns>
8178 <exception cref="T:System.ArgumentNullException"><paramref name="t"/> is a null reference</exception>
8179 <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException">
8180 No Method of type <paramref name="t"/> match the signature defined
8181 by <paramref name="types"/>.
8182 </exception>
8183 <remarks>
8184 This method tries to retreive a Method matching the signature
8185 and throws if it failed.
8186 </remarks>
8187 </member>
8188 <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Object[])">
8189 <summary>
8190 Retreives the <see cref="T:System.Reflection.MethodInfo"/> that matches the signature,
8191 given the list of arguments.
8192 </summary>
8193 <param name="t">type to test</param>
8194 <param name="args">Method arguments from which the signature
8195 is deduced</param>
8196 <returns>
8197 The <see cref="T:System.Reflection.MethodInfo"/> instance of <paramref name="t"/> matching
8198 the signature defined by the list of arguments.
8199 </returns>
8200 <exception cref="T:System.ArgumentNullException"><paramref name="t"/> is a null reference</exception>
8201 <exception cref="T:System.ArgumentNullException">
8202 One of the args item is a null reference
8203 </exception>
8204 <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException">
8205 No Method of type <paramref name="t"/> match the signature defined
8206 by <paramref name="args"/>.
8207 </exception>
8208 <remarks>
8209 This methods retreives the types of <paramref name="args"/> and
8210 looks for a Method matching that signature.
8211 </remarks>
8212 </member>
8213 <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type)">
8214 <summary>
8215 Creates an instance of the type <paramref name="t"/> using
8216 the default Method.
8217 </summary>
8218 <param name="t">type to instanciate</param>
8219 <returns>type <paramref name="t"/> instance</returns>
8220 </member>
8221 <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type,System.Object[])">
8222 <summary>
8223 Creates an instance of the type <paramref name="t"/> using
8224 the Method that matches the signature defined by
8225 <paramref name="args"/>
8226 </summary>
8227 <param name="t">type to instanciate</param>
8228 <param name="args">argument of the Method</param>
8229 <returns>type <paramref name="t"/> instance initialized using <paramref name="args"/></returns>
8230 </member>
8231 <member name="M:MbUnit.Core.TypeHelper.HasIndexer(System.Type,System.Type[])">
8232 <summary>
8233 Gets a value indicating if the type <paramref name="t"/>
8234 has an indexer that takes <paramref name="args"/> arguments.
8235 </summary>
8236 <remarks>
8237 Checks that an indexer with a given signature exists in the class.
8238 </remarks>
8239 <param name="t">type that holds the indexer</param>
8240 <param name="args">indexer arguments</param>
8241 <returns>true if an indexer that matched the signature was found,
8242 false otherwise
8243 </returns>
8244 </member>
8245 <member name="M:MbUnit.Core.TypeHelper.GetIndexer(System.Type,System.Type[])">
8246 <summary>
8247 Retreives the indexer that matches the signature
8248 </summary>
8249 <remarks>
8250 Safe retreival of an indexer, given it's signature
8251 </remarks>
8252 <param name="t">type that holds the indexer</param>
8253 <param name="args">indexer arguments</param>
8254 </member>
8255 <member name="M:MbUnit.Core.TypeHelper.GetValue(System.Reflection.PropertyInfo,System.Object,System.Object[])">
8256 <summary>
8257 Gets the value of the property <paramref name="pi"/>.
8258 </summary>
8259 <param name="pi">property</param>
8260 <param name="o">object instnace</param>
8261 <param name="args">property arguments (in case of an indexer</param>
8262 <returns>property value</returns>
8263 </member>
8264 <member name="M:MbUnit.Core.TypeHelper.ParametersMatch(System.Reflection.ParameterInfo[],System.Type[])">
8265 <summary>
8266 Gets a value indicating if the <paramref name="parameters"/> match
8267 the <paramref name="types"/>
8268 </summary>
8269 <param name="parameters">property or method paramter info</param>
8270 <param name="types">tested signature</param>
8271 </member>
8272 <member name="T:MbUnit.Framework.DataAssert">
8273 <summary>
8274 Assertion class for Database related object.
8275 </summary>
8276 </member>
8277 <member name="M:MbUnit.Framework.DataAssert.#ctor">
8278 <summary>
8279 A private constructor disallows any instances of this object.
8280 </summary>
8281 </member>
8282 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataColumn,System.Data.DataColumn)">
8283 <summary>
8284 Asserts that two <see cref="T:System.Data.DataColumn"/> are equal.
8285 </summary>
8286 <param name="expected">Expected <see cref="T:System.Data.DataColumn"/> instance.</param>
8287 <param name="actual">Actual <see cref="T:System.Data.DataColumn"/> instance.</param>
8288 </member>
8289 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataRow,System.Data.DataRow)">
8290 <summary>
8291 Asserts that two <see cref="T:System.Data.DataRow"/> are equal.
8292 </summary>
8293 <param name="expected">Expected <see cref="T:System.Data.DataRow"/> instance.</param>
8294 <param name="actual">Actual <see cref="T:System.Data.DataRow"/> instance.</param>
8295 <remarks>
8296 <para>
8297 Insipired from this
8298 <a href="http://dotnetjunkies.com/WebLog/darrell.norton/archive/2003/06/05/213.aspx">
8299 blog entry.</a>.
8300 </para>
8301 </remarks>
8302 </member>
8303 <member name="M:MbUnit.Framework.DataAssert.AreSchemasEqual(System.Data.DataSet,System.Data.DataSet)">
8304 <summary>
8305 Assert that <see cref="T:System.Data.DataSet"/> schemas are equal.
8306 </summary>
8307 </member>
8308 <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataSet,System.Data.DataSet)">
8309 <summary>
8310 Assert that <see cref="T:System.Data.DataSet"/> schemas and data are equal.
8311 </summary>
8312 </member>
8313 <member name="M:MbUnit.Framework.DataAssert.AreDataEqual(System.Data.DataSet,System.Data.DataSet)">
8314 <summary>
8315 Assert that <see cref="T:System.Data.DataSet"/> data are equal.
8316 </summary>
8317 </member>
8318 <member name="T:MbUnit.Framework.DataFixtureAttribute">
8319 <summary>
8320 Data Test fixture.
8321 </summary>
8322 </member>
8323 <member name="M:MbUnit.Framework.DataFixtureAttribute.#ctor">
8324 <summary>
8325 Default constructor
8326 </summary>
8327 <remarks>
8328 </remarks>
8329 </member>
8330 <member name="M:MbUnit.Framework.DataFixtureAttribute.#ctor(System.String)">
8331 <summary>
8332 Constructor with a fixture description
8333 </summary>
8334 <param name="description">fixture description</param>
8335 <remarks>
8336 </remarks>
8337 </member>
8338 <member name="M:MbUnit.Framework.DataFixtureAttribute.GetRun">
8339 <summary>
8340 Creates the execution logic
8341 </summary>
8342 <remarks>
8343 See summary.
8344 </remarks>
8345 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
8346 test logic.
8347 </returns>
8348 <example name="GraphicsBitmap">
8349<para>
8350This example shows a test fixture class implementing the <b>Simple Test pattern</b>.
8351It tests image based method of the Graphics class in GDI+.
8352</para>
8353<para>
8354A set up method
8355(tagged by <see cref="T:MbUnit.Framework.SetUpAttribute"/> is used to create a new bitmap, while
8356a tear down (tagged by <see cref="T:MbUnit.Framework.TearDownAttribute"/>) is used to released the bitmap.
8357</para>
8358<code id="ex_bitmap" compilable="true">
8359[TestFixture("Bitmap")]
8360public GraphicsAndBitmapTest
8361{
8362 private Bitmap bmp;
8363
8364 [SetUp]
8365 public void SetUp()
8366 {
8367 this.bmp = new Bitmap(300,300);
8368 }
8369
8370 [Test]
8371 public void CreateGraphics()
8372 {
8373 Graphics g = Graphcis.FromImage(this.bmp);
8374 Assert.IsNotNull(g);
8375 Assert.AreEqual(g.Width,this.bmp.Width);
8376 ...
8377 }
8378
8379 ...
8380
8381 [TearDown]
8382 public void TearDownCanHaveOtherNames()
8383 {
8384 if(this.bmp!=null)
8385 this.bmp.Dispose();
8386 }
8387}
8388</code>
8389</example>
8390 </member>
8391 <member name="T:MbUnit.Framework.DataProviderAttribute">
8392 <summary>
8393 Tags method that provide data for the tests.
8394 </summary>
8395 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='DataProviderAttribute']"/>
8396 </member>
8397 <member name="T:MbUnit.Framework.DurationAttribute">
8398 <summary>
8399 Tag method that should return in a given time interval.
8400 </summary>
8401 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='DurationAttribute']"/>
8402 </member>
8403 <member name="T:MbUnit.Framework.ExplicitAttribute">
8404 <summary>
8405 Tags test methods that are only to be run when explicitly selected.
8406 </summary>
8407 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='ExplicitAttribute']"/>
8408 </member>
8409 <member name="T:MbUnit.Framework.ExtractResourceAttribute">
8410 <summary>
8411 <p>Test methods annotated with this attribute will have the
8412 specified embedded resource extracted.
8413 </p>
8414 </summary>
8415 <remarks>
8416 <p>For example:</p>
8417 <code>
8418 [Test]
8419 [ExtractResource("MyAssembly.Test.txt", "Test.txt")]
8420 public void SomeTest()
8421 {
8422 Assert.IsTrue(File.Exists("Test.txt"));
8423 }
8424 </code>
8425 <p>It's possible to extract the resource into a stream as well by not
8426 specifying a destination file.</p>
8427 <code>
8428 [Test]
8429 [ExtractResource("MyAssembly.Test.txt")]
8430 public void SomeOtherTest()
8431 {
8432 Assert.IsNotNull(ExtractResourceAttribute.Stream);
8433 }
8434 </code>
8435 </remarks>
8436 </member>
8437 <member name="M:MbUnit.Framework.ExtractResourceAttribute.#ctor(System.String)">
8438 <summary>
8439 Extracts the resource to a stream. Access the stream like so: <see cref="P:MbUnit.Framework.ExtractResourceAttribute.Stream"/>.
8440 </summary>
8441 <param name="resourceName"></param>
8442 </member>
8443 <member name="M:MbUnit.Framework.ExtractResourceAttribute.#ctor(System.String,System.Type)">
8444 <summary>
8445 Extracts the resource to a stream.
8446 </summary>
8447 <param name="resourceName"></param>
8448 <param name="type">Any type in the assembly where the resource is embedded.</param>
8449 </member>
8450 <member name="M:MbUnit.Framework.ExtractResourceAttribute.#ctor(System.String,System.String)">
8451 <summary>
8452 Extracts the specified resource to the destination.
8453 The destination should be a file name. Will attempt to cleanup resource
8454 after the test is complete.
8455 </summary>
8456 <param name="resourceName">The full name of the embedded resource. Use reflector or ILDasm if you're unsure.</param>
8457 <param name="destination">The filename or file path where the embedded resource should be extracted to.</param>
8458 </member>
8459 <member name="M:MbUnit.Framework.ExtractResourceAttribute.#ctor(System.String,System.String,MbUnit.Framework.ResourceCleanup)">
8460 <summary>
8461 Extracts the specified resource to the destination.
8462 The destination should be a file name.
8463 </summary>
8464 <param name="resourceName">The full name of the embedded resource. Use reflector or ILDasm if you're unsure.</param>
8465 <param name="destination">The filename or file path where the embedded resource should be extracted to.</param>
8466 <param name="cleanupOptions">Whether or not to try and cleanup the resource at the end</param>
8467 </member>
8468 <member name="M:MbUnit.Framework.ExtractResourceAttribute.#ctor(System.String,System.String,MbUnit.Framework.ResourceCleanup,System.Type)">
8469 <summary>
8470 Extracts the specified resource to the destination.
8471 The destination should be a file name.
8472 </summary>
8473 <param name="resourceName">The full name of the embedded resource. Use reflector or ILDasm if you're unsure.</param>
8474 <param name="destination">The filename or file path where the embedded resource should be extracted to.</param>
8475 <param name="cleanupOptions">Whether or not to cleanup the extracted resource after the test.</param>
8476 <param name="type">Any type in the assembly where the resource is embedded.</param>
8477 </member>
8478 <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceName">
8479 <summary>
8480 The full name of the resource. Use Reflector to find this out
8481 if you don't know.
8482 </summary>
8483 </member>
8484 <member name="P:MbUnit.Framework.ExtractResourceAttribute.Destination">
8485 <summary>
8486 The destination file to write the resource to.
8487 Should be a path.
8488 </summary>
8489 </member>
8490 <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceCleanup">
8491 <summary>
8492 Whether or not to cleanup the resource.
8493 </summary>
8494 </member>
8495 <member name="P:MbUnit.Framework.ExtractResourceAttribute.Stream">
8496 <summary>
8497 The current resource stream if using the attribute without specifying
8498 a destination.
8499 </summary>
8500 </member>
8501 <member name="P:MbUnit.Framework.ExtractResourceAttribute.Type">
8502 <summary>
8503 The type within the assembly that contains the embedded resource.
8504 </summary>
8505 </member>
8506 <member name="T:MbUnit.Framework.ResourceCleanup">
8507 <summary>
8508 Used to specify whether or not the test should
8509 delete the extracted resource when the test is complete.
8510 </summary>
8511 </member>
8512 <member name="F:MbUnit.Framework.ResourceCleanup.NoCleanup">
8513 <summary>Do not delete the extracted resource</summary>
8514 </member>
8515 <member name="F:MbUnit.Framework.ResourceCleanup.DeleteAfterTest">
8516 <summary>Delete the extracted resource after the test.</summary>
8517 </member>
8518 <member name="T:MbUnit.Framework.FillAttribute">
8519 <summary>
8520 Tags method that fill collections with data.
8521 </summary>
8522 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='FillAttribute']"/>
8523 </member>
8524 <member name="T:MbUnit.Framework.IgnoreAttribute">
8525 <summary>
8526 Tags test methods that are ignored.
8527 </summary>
8528 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='IgnoreAttribute']"/>
8529 </member>
8530 <member name="T:MbUnit.Framework.ImportanceAttribute">
8531 <summary>
8532 This attribute collects the test importance information.
8533 </summary>
8534 <remarks>
8535 Fixture importance is labelled from 0, critical to higher values
8536 representing less critical tests.
8537 </remarks>
8538 </member>
8539 <member name="T:MbUnit.Framework.IndexerProviderAttribute">
8540 <summary>
8541 Tag method that provider a collection, an inde
8542 </summary>
8543 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='IndexerProviderAttribute']"/>
8544 </member>
8545 <member name="M:MbUnit.Framework.IndexerProviderAttribute.#ctor(System.Type,System.Type,System.Object,System.Object,System.Type)">
8546 <summary>
8547 Default constructor - initializes all fields to default values
8548 </summary>
8549 </member>
8550 <member name="M:MbUnit.Framework.IntIndexerProviderAttribute.#ctor(System.Type,System.Object)">
8551 <summary>
8552 Default constructor - initializes all fields to default values
8553 and int iterator
8554 </summary>
8555 </member>
8556 <member name="F:MbUnit.Framework.ManualTestForm.components">
8557 <summary>
8558 Required designer variable.
8559 </summary>
8560 </member>
8561 <member name="M:MbUnit.Framework.ManualTestForm.Dispose(System.Boolean)">
8562 <summary>
8563 Clean up any resources being used.
8564 </summary>
8565 </member>
8566 <member name="M:MbUnit.Framework.ManualTestForm.InitializeComponent">
8567 <summary>
8568 Required method for Designer support - do not modify
8569 the contents of this method with the code editor.
8570 </summary>
8571 </member>
8572 <member name="T:MbUnit.Framework.MultipleCultureAttribute">
8573 <summary>
8574 Tag method that gives a list of culture that the test should run on.
8575 </summary>
8576 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='MultipleCultureAttribute']"/>
8577 </member>
8578 <member name="T:MbUnit.Framework.ProviderFixtureDecoratorPatternAttribute">
8579 <summary>
8580 Summary description for ProviderFixtureDecoratorPatternAttribute.
8581 </summary>
8582 </member>
8583 <member name="T:MbUnit.Framework.PerfAssert">
8584 <summary>
8585 Performance Assertion class
8586 </summary>
8587 </member>
8588 <member name="M:MbUnit.Framework.PerfAssert.Duration(System.Double)">
8589 <summary>
8590 Creates a countdown timer that will assert if execution time exceeds maximum duration.
8591 </summary>
8592 </member>
8593 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions">
8594 <summary>
8595 Runtime statistics on CLR exception handling.
8596 </summary>
8597 </member>
8598 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown">
8599 <summary>
8600 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.
8601 </summary>
8602 </member>
8603 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown.NextValue">
8604 <summary>
8605 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8606 </summary>
8607 <returns>
8608 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8609 for the current instance.
8610 </returns>
8611 </member>
8612 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec">
8613 <summary>
8614 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 (>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.
8615 </summary>
8616 </member>
8617 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec.NextValue">
8618 <summary>
8619 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8620 </summary>
8621 <returns>
8622 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8623 for the current instance.
8624 </returns>
8625 </member>
8626 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec">
8627 <summary>
8628 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.
8629 </summary>
8630 </member>
8631 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec.NextValue">
8632 <summary>
8633 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8634 </summary>
8635 <returns>
8636 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8637 for the current instance.
8638 </returns>
8639 </member>
8640 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec">
8641 <summary>
8642 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.
8643 </summary>
8644 </member>
8645 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec.NextValue">
8646 <summary>
8647 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8648 </summary>
8649 <returns>
8650 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8651 for the current instance.
8652 </returns>
8653 </member>
8654 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec">
8655 <summary>
8656 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.
8657 </summary>
8658 </member>
8659 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec.NextValue">
8660 <summary>
8661 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8662 </summary>
8663 <returns>
8664 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8665 for the current instance.
8666 </returns>
8667 </member>
8668 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting">
8669 <summary>
8670 Stats for CLR Remoting.
8671 </summary>
8672 </member>
8673 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec">
8674 <summary>
8675 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.
8676 </summary>
8677 </member>
8678 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec.NextValue">
8679 <summary>
8680 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8681 </summary>
8682 <returns>
8683 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8684 for the current instance.
8685 </returns>
8686 </member>
8687 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls">
8688 <summary>
8689 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.
8690 </summary>
8691 </member>
8692 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls.NextValue">
8693 <summary>
8694 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8695 </summary>
8696 <returns>
8697 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8698 for the current instance.
8699 </returns>
8700 </member>
8701 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels">
8702 <summary>
8703 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.
8704 </summary>
8705 </member>
8706 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels.NextValue">
8707 <summary>
8708 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8709 </summary>
8710 <returns>
8711 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8712 for the current instance.
8713 </returns>
8714 </member>
8715 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies">
8716 <summary>
8717 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.
8718 </summary>
8719 </member>
8720 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies.NextValue">
8721 <summary>
8722 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8723 </summary>
8724 <returns>
8725 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8726 for the current instance.
8727 </returns>
8728 </member>
8729 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded">
8730 <summary>
8731 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.
8732 </summary>
8733 </member>
8734 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded.NextValue">
8735 <summary>
8736 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8737 </summary>
8738 <returns>
8739 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8740 for the current instance.
8741 </returns>
8742 </member>
8743 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec">
8744 <summary>
8745 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.
8746 </summary>
8747 </member>
8748 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec.NextValue">
8749 <summary>
8750 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8751 </summary>
8752 <returns>
8753 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8754 for the current instance.
8755 </returns>
8756 </member>
8757 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts">
8758 <summary>
8759 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.
8760 </summary>
8761 </member>
8762 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts.NextValue">
8763 <summary>
8764 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8765 </summary>
8766 <returns>
8767 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8768 for the current instance.
8769 </returns>
8770 </member>
8771 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking">
8772 <summary>
8773 Help not available.
8774 </summary>
8775 </member>
8776 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished">
8777 <summary>
8778 The cumulative total number of socket connections established for this process since the process was started.
8779 </summary>
8780 </member>
8781 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished.NextValue">
8782 <summary>
8783 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8784 </summary>
8785 <returns>
8786 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8787 for the current instance.
8788 </returns>
8789 </member>
8790 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived">
8791 <summary>
8792 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.
8793 </summary>
8794 </member>
8795 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived.NextValue">
8796 <summary>
8797 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8798 </summary>
8799 <returns>
8800 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8801 for the current instance.
8802 </returns>
8803 </member>
8804 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent">
8805 <summary>
8806 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.
8807 </summary>
8808 </member>
8809 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent.NextValue">
8810 <summary>
8811 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8812 </summary>
8813 <returns>
8814 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8815 for the current instance.
8816 </returns>
8817 </member>
8818 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived">
8819 <summary>
8820 The cumulative total number of datagram packets received since the process was started.
8821 </summary>
8822 </member>
8823 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived.NextValue">
8824 <summary>
8825 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8826 </summary>
8827 <returns>
8828 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8829 for the current instance.
8830 </returns>
8831 </member>
8832 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent">
8833 <summary>
8834 The cumulative total number of datagram packets sent since the process was started.
8835 </summary>
8836 </member>
8837 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent.NextValue">
8838 <summary>
8839 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8840 </summary>
8841 <returns>
8842 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8843 for the current instance.
8844 </returns>
8845 </member>
8846 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory">
8847 <summary>
8848 Counters for CLR Garbage Collected heap.
8849 </summary>
8850 </member>
8851 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections">
8852 <summary>
8853 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.
8854 </summary>
8855 </member>
8856 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections.NextValue">
8857 <summary>
8858 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8859 </summary>
8860 <returns>
8861 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8862 for the current instance.
8863 </returns>
8864 </member>
8865 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections">
8866 <summary>
8867 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.
8868 </summary>
8869 </member>
8870 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections.NextValue">
8871 <summary>
8872 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8873 </summary>
8874 <returns>
8875 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8876 for the current instance.
8877 </returns>
8878 </member>
8879 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections">
8880 <summary>
8881 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.
8882 </summary>
8883 </member>
8884 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections.NextValue">
8885 <summary>
8886 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8887 </summary>
8888 <returns>
8889 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8890 for the current instance.
8891 </returns>
8892 </member>
8893 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0">
8894 <summary>
8895 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.
8896 </summary>
8897 </member>
8898 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0.NextValue">
8899 <summary>
8900 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8901 </summary>
8902 <returns>
8903 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8904 for the current instance.
8905 </returns>
8906 </member>
8907 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1">
8908 <summary>
8909 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.
8910 </summary>
8911 </member>
8912 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1.NextValue">
8913 <summary>
8914 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8915 </summary>
8916 <returns>
8917 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8918 for the current instance.
8919 </returns>
8920 </member>
8921 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec">
8922 <summary>
8923 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.
8924 </summary>
8925 </member>
8926 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec.NextValue">
8927 <summary>
8928 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8929 </summary>
8930 <returns>
8931 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8932 for the current instance.
8933 </returns>
8934 </member>
8935 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec">
8936 <summary>
8937 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.
8938 </summary>
8939 </member>
8940 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec.NextValue">
8941 <summary>
8942 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8943 </summary>
8944 <returns>
8945 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8946 for the current instance.
8947 </returns>
8948 </member>
8949 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0">
8950 <summary>
8951 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.
8952 </summary>
8953 </member>
8954 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0.NextValue">
8955 <summary>
8956 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8957 </summary>
8958 <returns>
8959 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8960 for the current instance.
8961 </returns>
8962 </member>
8963 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1">
8964 <summary>
8965 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.
8966 </summary>
8967 </member>
8968 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1.NextValue">
8969 <summary>
8970 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8971 </summary>
8972 <returns>
8973 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8974 for the current instance.
8975 </returns>
8976 </member>
8977 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize">
8978 <summary>
8979 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.
8980 </summary>
8981 </member>
8982 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize.NextValue">
8983 <summary>
8984 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8985 </summary>
8986 <returns>
8987 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
8988 for the current instance.
8989 </returns>
8990 </member>
8991 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize">
8992 <summary>
8993 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.
8994 </summary>
8995 </member>
8996 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize.NextValue">
8997 <summary>
8998 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
8999 </summary>
9000 <returns>
9001 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9002 for the current instance.
9003 </returns>
9004 </member>
9005 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize">
9006 <summary>
9007 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.
9008 </summary>
9009 </member>
9010 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize.NextValue">
9011 <summary>
9012 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9013 </summary>
9014 <returns>
9015 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9016 for the current instance.
9017 </returns>
9018 </member>
9019 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize">
9020 <summary>
9021 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.
9022 </summary>
9023 </member>
9024 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize.NextValue">
9025 <summary>
9026 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9027 </summary>
9028 <returns>
9029 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9030 for the current instance.
9031 </returns>
9032 </member>
9033 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors">
9034 <summary>
9035 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.
9036 </summary>
9037 </member>
9038 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors.NextValue">
9039 <summary>
9040 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9041 </summary>
9042 <returns>
9043 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9044 for the current instance.
9045 </returns>
9046 </member>
9047 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles">
9048 <summary>
9049 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.
9050 </summary>
9051 </member>
9052 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles.NextValue">
9053 <summary>
9054 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9055 </summary>
9056 <returns>
9057 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9058 for the current instance.
9059 </returns>
9060 </member>
9061 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec">
9062 <summary>
9063 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.
9064 </summary>
9065 </member>
9066 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec.NextValue">
9067 <summary>
9068 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9069 </summary>
9070 <returns>
9071 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9072 for the current instance.
9073 </returns>
9074 </member>
9075 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc">
9076 <summary>
9077 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.
9078 </summary>
9079 </member>
9080 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc.NextValue">
9081 <summary>
9082 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9083 </summary>
9084 <returns>
9085 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9086 for the current instance.
9087 </returns>
9088 </member>
9089 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc">
9090 <summary>
9091 % 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.
9092 </summary>
9093 </member>
9094 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc.NextValue">
9095 <summary>
9096 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9097 </summary>
9098 <returns>
9099 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9100 for the current instance.
9101 </returns>
9102 </member>
9103 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed">
9104 <summary>
9105 Not Displayed.
9106 </summary>
9107 </member>
9108 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed.NextValue">
9109 <summary>
9110 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9111 </summary>
9112 <returns>
9113 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9114 for the current instance.
9115 </returns>
9116 </member>
9117 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps">
9118 <summary>
9119 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.
9120 </summary>
9121 </member>
9122 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps.NextValue">
9123 <summary>
9124 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9125 </summary>
9126 <returns>
9127 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9128 for the current instance.
9129 </returns>
9130 </member>
9131 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes">
9132 <summary>
9133 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).
9134 </summary>
9135 </member>
9136 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes.NextValue">
9137 <summary>
9138 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9139 </summary>
9140 <returns>
9141 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9142 for the current instance.
9143 </returns>
9144 </member>
9145 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes">
9146 <summary>
9147 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.)
9148 </summary>
9149 </member>
9150 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes.NextValue">
9151 <summary>
9152 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9153 </summary>
9154 <returns>
9155 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9156 for the current instance.
9157 </returns>
9158 </member>
9159 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects">
9160 <summary>
9161 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.
9162 </summary>
9163 </member>
9164 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects.NextValue">
9165 <summary>
9166 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9167 </summary>
9168 <returns>
9169 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9170 for the current instance.
9171 </returns>
9172 </member>
9173 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse">
9174 <summary>
9175 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.
9176 </summary>
9177 </member>
9178 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse.NextValue">
9179 <summary>
9180 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9181 </summary>
9182 <returns>
9183 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9184 for the current instance.
9185 </returns>
9186 </member>
9187 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop">
9188 <summary>
9189 Stats for CLR interop.
9190 </summary>
9191 </member>
9192 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws">
9193 <summary>
9194 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.
9195 </summary>
9196 </member>
9197 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws.NextValue">
9198 <summary>
9199 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9200 </summary>
9201 <returns>
9202 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9203 for the current instance.
9204 </returns>
9205 </member>
9206 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs">
9207 <summary>
9208 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.
9209 </summary>
9210 </member>
9211 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs.NextValue">
9212 <summary>
9213 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9214 </summary>
9215 <returns>
9216 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9217 for the current instance.
9218 </returns>
9219 </member>
9220 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling">
9221 <summary>
9222 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.
9223 </summary>
9224 </member>
9225 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling.NextValue">
9226 <summary>
9227 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9228 </summary>
9229 <returns>
9230 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9231 for the current instance.
9232 </returns>
9233 </member>
9234 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec">
9235 <summary>
9236 Reserved for future use.
9237 </summary>
9238 </member>
9239 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec.NextValue">
9240 <summary>
9241 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9242 </summary>
9243 <returns>
9244 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9245 for the current instance.
9246 </returns>
9247 </member>
9248 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec">
9249 <summary>
9250 Reserved for future use.
9251 </summary>
9252 </member>
9253 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec.NextValue">
9254 <summary>
9255 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9256 </summary>
9257 <returns>
9258 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9259 for the current instance.
9260 </returns>
9261 </member>
9262 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer">
9263 <summary>
9264 Counters for System.Data.SqlClient
9265 </summary>
9266 </member>
9267 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond">
9268 <summary>
9269 The number of actual connections per second that are being made to servers
9270 </summary>
9271 </member>
9272 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond.NextValue">
9273 <summary>
9274 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9275 </summary>
9276 <returns>
9277 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9278 </returns>
9279 </member>
9280 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond">
9281 <summary>
9282 The number of actual disconnects per second that are being made to servers
9283 </summary>
9284 </member>
9285 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond.NextValue">
9286 <summary>
9287 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9288 </summary>
9289 <returns>
9290 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9291 </returns>
9292 </member>
9293 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond">
9294 <summary>
9295 The number of connections we get from the pool per second
9296 </summary>
9297 </member>
9298 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond.NextValue">
9299 <summary>
9300 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9301 </summary>
9302 <returns>
9303 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9304 </returns>
9305 </member>
9306 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond">
9307 <summary>
9308 The number of connections we return to the pool per second
9309 </summary>
9310 </member>
9311 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond.NextValue">
9312 <summary>
9313 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9314 </summary>
9315 <returns>
9316 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9317 </returns>
9318 </member>
9319 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections">
9320 <summary>
9321 The number of connections that are not using connection pooling
9322 </summary>
9323 </member>
9324 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections.NextValue">
9325 <summary>
9326 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9327 </summary>
9328 <returns>
9329 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9330 </returns>
9331 </member>
9332 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections">
9333 <summary>
9334 The number of connections that are managed by the connection pooler
9335 </summary>
9336 </member>
9337 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections.NextValue">
9338 <summary>
9339 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9340 </summary>
9341 <returns>
9342 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9343 </returns>
9344 </member>
9345 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups">
9346 <summary>
9347 The number of unique connection strings
9348 </summary>
9349 </member>
9350 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups.NextValue">
9351 <summary>
9352 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9353 </summary>
9354 <returns>
9355 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9356 </returns>
9357 </member>
9358 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups">
9359 <summary>
9360 The number of unique connection strings waiting for pruning
9361 </summary>
9362 </member>
9363 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups.NextValue">
9364 <summary>
9365 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9366 </summary>
9367 <returns>
9368 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9369 </returns>
9370 </member>
9371 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools">
9372 <summary>
9373 The number of connection pools
9374 </summary>
9375 </member>
9376 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools.NextValue">
9377 <summary>
9378 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9379 </summary>
9380 <returns>
9381 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9382 </returns>
9383 </member>
9384 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools">
9385 <summary>
9386 The number of connection pools
9387 </summary>
9388 </member>
9389 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools.NextValue">
9390 <summary>
9391 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9392 </summary>
9393 <returns>
9394 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9395 </returns>
9396 </member>
9397 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections">
9398 <summary>
9399 The number of connections currently in-use
9400 </summary>
9401 </member>
9402 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections.NextValue">
9403 <summary>
9404 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9405 </summary>
9406 <returns>
9407 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9408 </returns>
9409 </member>
9410 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections">
9411 <summary>
9412 The number of connections currently available for use
9413 </summary>
9414 </member>
9415 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections.NextValue">
9416 <summary>
9417 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9418 </summary>
9419 <returns>
9420 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9421 </returns>
9422 </member>
9423 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections">
9424 <summary>
9425 The number of connections currently waiting to be made ready for use
9426 </summary>
9427 </member>
9428 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections.NextValue">
9429 <summary>
9430 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9431 </summary>
9432 <returns>
9433 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9434 </returns>
9435 </member>
9436 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections">
9437 <summary>
9438 The number of connections we reclaim from GCed from external connections
9439 </summary>
9440 </member>
9441 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections.NextValue">
9442 <summary>
9443 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9444 </summary>
9445 <returns>
9446 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9447 </returns>
9448 </member>
9449 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData">
9450 <summary>
9451 .Net CLR Data
9452 </summary>
9453 </member>
9454 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections">
9455 <summary>
9456 Current number of connections, pooled or not.
9457 </summary>
9458 </member>
9459 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections.NextValue">
9460 <summary>
9461 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9462 </summary>
9463 <returns>
9464 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9465 </returns>
9466 </member>
9467 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections">
9468 <summary>
9469 Current number of connections in all pools associated with the process.
9470 </summary>
9471 </member>
9472 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections.NextValue">
9473 <summary>
9474 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9475 </summary>
9476 <returns>
9477 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9478 </returns>
9479 </member>
9480 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools">
9481 <summary>
9482 Current number of pools associated with the process.
9483 </summary>
9484 </member>
9485 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools.NextValue">
9486 <summary>
9487 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9488 </summary>
9489 <returns>
9490 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9491 </returns>
9492 </member>
9493 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections">
9494 <summary>
9495 The highest number of connections in all pools since the process started.
9496 </summary>
9497 </member>
9498 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections.NextValue">
9499 <summary>
9500 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9501 </summary>
9502 <returns>
9503 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9504 </returns>
9505 </member>
9506 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects">
9507 <summary>
9508 The total number of connection open attempts that have failed for any reason.
9509 </summary>
9510 </member>
9511 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects.NextValue">
9512 <summary>
9513 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9514 </summary>
9515 <returns>
9516 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9517 </returns>
9518 </member>
9519 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands">
9520 <summary>
9521 The total number of command executes that have failed for any reason.
9522 </summary>
9523 </member>
9524 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands.NextValue">
9525 <summary>
9526 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9527 </summary>
9528 <returns>
9529 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
9530 </returns>
9531 </member>
9532 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading">
9533 <summary>
9534 Statistics for CLR Class Loader.
9535 </summary>
9536 </member>
9537 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded">
9538 <summary>
9539 This counter displays the current number of classes loaded in all Assemblies.
9540 </summary>
9541 </member>
9542 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded.NextValue">
9543 <summary>
9544 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9545 </summary>
9546 <returns>
9547 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9548 for the current instance.
9549 </returns>
9550 </member>
9551 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded">
9552 <summary>
9553 This counter displays the cumulative number of classes loaded in all Assemblies since the start of this application.
9554 </summary>
9555 </member>
9556 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded.NextValue">
9557 <summary>
9558 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9559 </summary>
9560 <returns>
9561 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9562 for the current instance.
9563 </returns>
9564 </member>
9565 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded">
9566 <summary>
9567 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.
9568 </summary>
9569 </member>
9570 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded.NextValue">
9571 <summary>
9572 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9573 </summary>
9574 <returns>
9575 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9576 for the current instance.
9577 </returns>
9578 </member>
9579 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains">
9580 <summary>
9581 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.
9582 </summary>
9583 </member>
9584 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains.NextValue">
9585 <summary>
9586 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9587 </summary>
9588 <returns>
9589 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9590 for the current instance.
9591 </returns>
9592 </member>
9593 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains">
9594 <summary>
9595 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.
9596 </summary>
9597 </member>
9598 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains.NextValue">
9599 <summary>
9600 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9601 </summary>
9602 <returns>
9603 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9604 for the current instance.
9605 </returns>
9606 </member>
9607 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains">
9608 <summary>
9609 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.
9610 </summary>
9611 </member>
9612 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains.NextValue">
9613 <summary>
9614 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9615 </summary>
9616 <returns>
9617 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9618 for the current instance.
9619 </returns>
9620 </member>
9621 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies">
9622 <summary>
9623 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.
9624 </summary>
9625 </member>
9626 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies.NextValue">
9627 <summary>
9628 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9629 </summary>
9630 <returns>
9631 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9632 for the current instance.
9633 </returns>
9634 </member>
9635 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies">
9636 <summary>
9637 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.
9638 </summary>
9639 </member>
9640 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies.NextValue">
9641 <summary>
9642 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9643 </summary>
9644 <returns>
9645 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9646 for the current instance.
9647 </returns>
9648 </member>
9649 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies">
9650 <summary>
9651 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.
9652 </summary>
9653 </member>
9654 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies.NextValue">
9655 <summary>
9656 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9657 </summary>
9658 <returns>
9659 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9660 for the current instance.
9661 </returns>
9662 </member>
9663 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading">
9664 <summary>
9665 Reserved for future use.
9666 </summary>
9667 </member>
9668 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading.NextValue">
9669 <summary>
9670 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9671 </summary>
9672 <returns>
9673 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9674 for the current instance.
9675 </returns>
9676 </member>
9677 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength">
9678 <summary>
9679 Reserved for future use.
9680 </summary>
9681 </member>
9682 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength.NextValue">
9683 <summary>
9684 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9685 </summary>
9686 <returns>
9687 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9688 for the current instance.
9689 </returns>
9690 </member>
9691 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures">
9692 <summary>
9693 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.
9694 </summary>
9695 </member>
9696 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures.NextValue">
9697 <summary>
9698 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9699 </summary>
9700 <returns>
9701 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9702 for the current instance.
9703 </returns>
9704 </member>
9705 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures">
9706 <summary>
9707 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.
9708 </summary>
9709 </member>
9710 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures.NextValue">
9711 <summary>
9712 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9713 </summary>
9714 <returns>
9715 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9716 for the current instance.
9717 </returns>
9718 </member>
9719 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap">
9720 <summary>
9721 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.)
9722 </summary>
9723 </member>
9724 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap.NextValue">
9725 <summary>
9726 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9727 </summary>
9728 <returns>
9729 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9730 for the current instance.
9731 </returns>
9732 </member>
9733 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded">
9734 <summary>
9735 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.
9736 </summary>
9737 </member>
9738 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded.NextValue">
9739 <summary>
9740 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9741 </summary>
9742 <returns>
9743 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9744 for the current instance.
9745 </returns>
9746 </member>
9747 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded">
9748 <summary>
9749 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.
9750 </summary>
9751 </member>
9752 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded.NextValue">
9753 <summary>
9754 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9755 </summary>
9756 <returns>
9757 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9758 for the current instance.
9759 </returns>
9760 </member>
9761 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity">
9762 <summary>
9763 Stats for CLR Security.
9764 </summary>
9765 </member>
9766 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks">
9767 <summary>
9768 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.
9769 </summary>
9770 </member>
9771 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks.NextValue">
9772 <summary>
9773 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9774 </summary>
9775 <returns>
9776 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9777 for the current instance.
9778 </returns>
9779 </member>
9780 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating">
9781 <summary>
9782 Reserved for future use.
9783 </summary>
9784 </member>
9785 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating.NextValue">
9786 <summary>
9787 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9788 </summary>
9789 <returns>
9790 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9791 for the current instance.
9792 </returns>
9793 </member>
9794 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks">
9795 <summary>
9796 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.
9797 </summary>
9798 </member>
9799 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks.NextValue">
9800 <summary>
9801 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9802 </summary>
9803 <returns>
9804 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9805 for the current instance.
9806 </returns>
9807 </member>
9808 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks">
9809 <summary>
9810 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.
9811 </summary>
9812 </member>
9813 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks.NextValue">
9814 <summary>
9815 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9816 </summary>
9817 <returns>
9818 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9819 for the current instance.
9820 </returns>
9821 </member>
9822 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed">
9823 <summary>
9824 Not Displayed.
9825 </summary>
9826 </member>
9827 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed.NextValue">
9828 <summary>
9829 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9830 </summary>
9831 <returns>
9832 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9833 for the current instance.
9834 </returns>
9835 </member>
9836 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth">
9837 <summary>
9838 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.
9839 </summary>
9840 </member>
9841 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth.NextValue">
9842 <summary>
9843 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9844 </summary>
9845 <returns>
9846 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9847 for the current instance.
9848 </returns>
9849 </member>
9850 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit">
9851 <summary>
9852 Stats for CLR Jit.
9853 </summary>
9854 </member>
9855 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted">
9856 <summary>
9857 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.
9858 </summary>
9859 </member>
9860 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted.NextValue">
9861 <summary>
9862 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9863 </summary>
9864 <returns>
9865 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9866 for the current instance.
9867 </returns>
9868 </member>
9869 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted">
9870 <summary>
9871 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.
9872 </summary>
9873 </member>
9874 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted.NextValue">
9875 <summary>
9876 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9877 </summary>
9878 <returns>
9879 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9880 for the current instance.
9881 </returns>
9882 </member>
9883 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted">
9884 <summary>
9885 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.
9886 </summary>
9887 </member>
9888 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted.NextValue">
9889 <summary>
9890 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9891 </summary>
9892 <returns>
9893 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9894 for the current instance.
9895 </returns>
9896 </member>
9897 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec">
9898 <summary>
9899 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.
9900 </summary>
9901 </member>
9902 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec.NextValue">
9903 <summary>
9904 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9905 </summary>
9906 <returns>
9907 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9908 for the current instance.
9909 </returns>
9910 </member>
9911 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures">
9912 <summary>
9913 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.
9914 </summary>
9915 </member>
9916 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures.NextValue">
9917 <summary>
9918 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9919 </summary>
9920 <returns>
9921 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9922 for the current instance.
9923 </returns>
9924 </member>
9925 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit">
9926 <summary>
9927 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.
9928 </summary>
9929 </member>
9930 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit.NextValue">
9931 <summary>
9932 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9933 </summary>
9934 <returns>
9935 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9936 for the current instance.
9937 </returns>
9938 </member>
9939 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed">
9940 <summary>
9941 Not Displayed.
9942 </summary>
9943 </member>
9944 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed.NextValue">
9945 <summary>
9946 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9947 </summary>
9948 <returns>
9949 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9950 for the current instance.
9951 </returns>
9952 </member>
9953 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads">
9954 <summary>
9955 Stats for CLR Locks and Threads.
9956 </summary>
9957 </member>
9958 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions">
9959 <summary>
9960 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.
9961 </summary>
9962 </member>
9963 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions.NextValue">
9964 <summary>
9965 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9966 </summary>
9967 <returns>
9968 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9969 for the current instance.
9970 </returns>
9971 </member>
9972 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec">
9973 <summary>
9974 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.
9975 </summary>
9976 </member>
9977 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec.NextValue">
9978 <summary>
9979 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9980 </summary>
9981 <returns>
9982 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9983 for the current instance.
9984 </returns>
9985 </member>
9986 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength">
9987 <summary>
9988 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.
9989 </summary>
9990 </member>
9991 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength.NextValue">
9992 <summary>
9993 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
9994 </summary>
9995 <returns>
9996 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
9997 for the current instance.
9998 </returns>
9999 </member>
10000 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak">
10001 <summary>
10002 This counter displays the total number of threads that waited to acquire some managed lock since the start of the application.
10003 </summary>
10004 </member>
10005 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak.NextValue">
10006 <summary>
10007 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10008 </summary>
10009 <returns>
10010 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10011 for the current instance.
10012 </returns>
10013 </member>
10014 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec">
10015 <summary>
10016 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.
10017 </summary>
10018 </member>
10019 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec.NextValue">
10020 <summary>
10021 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10022 </summary>
10023 <returns>
10024 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10025 for the current instance.
10026 </returns>
10027 </member>
10028 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads">
10029 <summary>
10030 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.
10031 </summary>
10032 </member>
10033 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads.NextValue">
10034 <summary>
10035 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10036 </summary>
10037 <returns>
10038 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10039 for the current instance.
10040 </returns>
10041 </member>
10042 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads">
10043 <summary>
10044 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.
10045 </summary>
10046 </member>
10047 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads.NextValue">
10048 <summary>
10049 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10050 </summary>
10051 <returns>
10052 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10053 for the current instance.
10054 </returns>
10055 </member>
10056 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads">
10057 <summary>
10058 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.
10059 </summary>
10060 </member>
10061 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads.NextValue">
10062 <summary>
10063 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10064 </summary>
10065 <returns>
10066 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10067 for the current instance.
10068 </returns>
10069 </member>
10070 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads">
10071 <summary>
10072 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.
10073 </summary>
10074 </member>
10075 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads.NextValue">
10076 <summary>
10077 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10078 </summary>
10079 <returns>
10080 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10081 for the current instance.
10082 </returns>
10083 </member>
10084 <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec">
10085 <summary>
10086 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.
10087 </summary>
10088 </member>
10089 <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec.NextValue">
10090 <summary>
10091 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10092 </summary>
10093 <returns>
10094 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>
10095 for the current instance.
10096 </returns>
10097 </member>
10098 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle">
10099 <summary>
10100 Counters for System.Data.OracleClient
10101 </summary>
10102 </member>
10103 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond">
10104 <summary>
10105 The number of actual connections per second that are being made to servers
10106 </summary>
10107 </member>
10108 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond.NextValue">
10109 <summary>
10110 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10111 </summary>
10112 <returns>
10113 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10114 </returns>
10115 </member>
10116 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond">
10117 <summary>
10118 The number of actual disconnects per second that are being made to servers
10119 </summary>
10120 </member>
10121 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond.NextValue">
10122 <summary>
10123 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10124 </summary>
10125 <returns>
10126 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10127 </returns>
10128 </member>
10129 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond">
10130 <summary>
10131 The number of connections we get from the pool per second
10132 </summary>
10133 </member>
10134 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond.NextValue">
10135 <summary>
10136 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10137 </summary>
10138 <returns>
10139 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10140 </returns>
10141 </member>
10142 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond">
10143 <summary>
10144 The number of connections we return to the pool per second
10145 </summary>
10146 </member>
10147 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond.NextValue">
10148 <summary>
10149 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10150 </summary>
10151 <returns>
10152 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10153 </returns>
10154 </member>
10155 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections">
10156 <summary>
10157 The number of connections that are not using connection pooling
10158 </summary>
10159 </member>
10160 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections.NextValue">
10161 <summary>
10162 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10163 </summary>
10164 <returns>
10165 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10166 </returns>
10167 </member>
10168 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections">
10169 <summary>
10170 The number of connections that are managed by the connection pooler
10171 </summary>
10172 </member>
10173 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections.NextValue">
10174 <summary>
10175 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10176 </summary>
10177 <returns>
10178 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10179 </returns>
10180 </member>
10181 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups">
10182 <summary>
10183 The number of unique connection strings
10184 </summary>
10185 </member>
10186 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups.NextValue">
10187 <summary>
10188 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10189 </summary>
10190 <returns>
10191 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10192 </returns>
10193 </member>
10194 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups">
10195 <summary>
10196 The number of unique connection strings waiting for pruning
10197 </summary>
10198 </member>
10199 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups.NextValue">
10200 <summary>
10201 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10202 </summary>
10203 <returns>
10204 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10205 </returns>
10206 </member>
10207 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools">
10208 <summary>
10209 The number of connection pools
10210 </summary>
10211 </member>
10212 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools.NextValue">
10213 <summary>
10214 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10215 </summary>
10216 <returns>
10217 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10218 </returns>
10219 </member>
10220 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools">
10221 <summary>
10222 The number of connection pools
10223 </summary>
10224 </member>
10225 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools.NextValue">
10226 <summary>
10227 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10228 </summary>
10229 <returns>
10230 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10231 </returns>
10232 </member>
10233 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections">
10234 <summary>
10235 The number of connections currently in-use
10236 </summary>
10237 </member>
10238 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections.NextValue">
10239 <summary>
10240 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10241 </summary>
10242 <returns>
10243 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10244 </returns>
10245 </member>
10246 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections">
10247 <summary>
10248 The number of connections currently available for use
10249 </summary>
10250 </member>
10251 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections.NextValue">
10252 <summary>
10253 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10254 </summary>
10255 <returns>
10256 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10257 </returns>
10258 </member>
10259 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections">
10260 <summary>
10261 The number of connections currently waiting to be made ready for use
10262 </summary>
10263 </member>
10264 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections.NextValue">
10265 <summary>
10266 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10267 </summary>
10268 <returns>
10269 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10270 </returns>
10271 </member>
10272 <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections">
10273 <summary>
10274 The number of connections we reclaim from GCed from external connections
10275 </summary>
10276 </member>
10277 <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections.NextValue">
10278 <summary>
10279 Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter"/>.
10280 </summary>
10281 <returns>
10282 Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue"/>.
10283 </returns>
10284 </member>
10285 <member name="T:MbUnit.Framework.PostItAttribute">
10286 <summary>
10287 Summary description for PostItAttribute.
10288 </summary>
10289 </member>
10290 <member name="T:MbUnit.Framework.ReadAttribute">
10291 <summary>
10292 Tag use to mark a method that writes data to a device.
10293 </summary>
10294 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='ReadAttribute']"/>
10295 </member>
10296 <member name="T:MbUnit.Framework.ReflectionAssert">
10297 <summary>
10298 Reflection Assertion class
10299 </summary>
10300 </member>
10301 <member name="M:MbUnit.Framework.ReflectionAssert.IsAssignableFrom(System.Type,System.Type)">
10302 <summary>
10303 Asserts whether an instance of the <paramref name="parent"/>
10304 can be assigned from an instance of <paramref name="child"/>.
10305 </summary>
10306 <param name="parent">
10307 Parent <see cref="T:System.Type"/> instance.
10308 </param>
10309 <param name="child">
10310 Child <see cref="T:System.Type"/> instance.
10311 </param>
10312 </member>
10313 <member name="M:MbUnit.Framework.ReflectionAssert.IsInstanceOf(System.Type,System.Object)">
10314 <summary>
10315 Asserts whether <paramref name="child"/> is an instance of the
10316 <paramref name="type"/>.
10317 </summary>
10318 <param name="type">
10319 <see cref="T:System.Type"/> instance.
10320 </param>
10321 <param name="child">
10322 Child instance.
10323 </param>
10324 </member>
10325 <member name="M:MbUnit.Framework.ReflectionAssert.HasDefaultConstructor(System.Type)">
10326 <summary>
10327 Asserts that the type has a default public constructor
10328 </summary>
10329 </member>
10330 <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Type[])">
10331 <summary>
10332 Asserts that the type has a public instance constructor with a signature defined by parameters.
10333 </summary>
10334 </member>
10335 <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Reflection.BindingFlags,System.Type[])">
10336 <summary>
10337 Asserts that the type has a constructor, with the specified bindind flags, with a signature defined by parameters.
10338 </summary>
10339 </member>
10340 <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.String,System.Type[])">
10341 <summary>
10342 Asserts that the type has a public instance method with a signature defined by parameters.
10343 </summary>
10344 </member>
10345 <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.Reflection.BindingFlags,System.String,System.Type[])">
10346 <summary>
10347 Asserts that the type has a method, with the specified bindind flags, with a signature defined by parameters.
10348 </summary>
10349 </member>
10350 <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.String)">
10351 <summary>
10352 Asserts that the type has a public field method with a signature defined by parameters.
10353 </summary>
10354 </member>
10355 <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.Reflection.BindingFlags,System.String)">
10356 <summary>
10357 Asserts that the type has a field, with the specified bindind flags, with a signature defined by parameters.
10358 </summary>
10359 </member>
10360 <member name="T:MbUnit.Framework.RepeatAttribute">
10361 <summary>
10362 This tag defines test method that will be repeated the specified number
10363 of times.
10364 </summary>
10365 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='RepeatAttribute']"/>
10366 </member>
10367 <member name="T:MbUnit.Framework.RollBackAttribute">
10368 <summary>
10369 Tags methods to execute database operation in its own database
10370 transaction.
10371 </summary>
10372 <remarks>
10373 <para>
10374 This attribute was invented by <b>Roy Osherove</b> (
10375 http://weblogs.asp.net/rosherove/).
10376 </para>
10377 </remarks>
10378 </member>
10379 <member name="F:MbUnit.Framework.SpecialValue.Null">
10380 <summary>
10381 When used as parameter in a row test, it will be replaced by null (Nothing in VB).
10382 </summary>
10383 </member>
10384 <member name="T:MbUnit.Framework.RowAttribute">
10385 <summary>
10386 Provides a row of values using in conjunction with <see cref="T:MbUnit.Framework.RowTestAttribute"/>
10387 to bind values to the parameters of a row test method.
10388 </summary>
10389 </member>
10390 <member name="M:MbUnit.Framework.RowAttribute.#ctor(System.Object[])">
10391 <summary>
10392 Provides a row of values using in conjunction with <see cref="T:MbUnit.Framework.RowTestAttribute"/>
10393 to bind values to the parameters of a row test method.
10394 </summary>
10395 <param name="row">The row of values to bind</param>
10396 </member>
10397 <member name="M:MbUnit.Framework.RowAttribute.GetRow">
10398 <summary>
10399 Gets the row of values.
10400 </summary>
10401 <returns>The row of values</returns>
10402 </member>
10403 <member name="M:MbUnit.Framework.RowAttribute.GetRow(System.Reflection.ParameterInfo[])">
10404 <summary>
10405 Gets the row of values. Each one will be converted (if posible) to the type of
10406 the corresponding argument in the test method.
10407 </summary>
10408 <param name="parameters">List of parameters.</param>
10409 <returns>The row of values.</returns>
10410 </member>
10411 <member name="P:MbUnit.Framework.RowAttribute.ExpectedException">
10412 <summary>
10413 Gets or sets the type of exception that is expected to be thrown when this
10414 row is tested, or null if none.
10415 </summary>
10416 </member>
10417 <member name="T:MbUnit.Framework.RowTestAttribute">
10418 <summary>
10419 Declares a row test when applied to a test method along with one or more
10420 <see cref="T:MbUnit.Framework.RowAttribute"/> attributes.
10421 </summary>
10422 </member>
10423 <member name="T:MbUnit.Framework.SecurityAssert">
10424 <summary>
10425 Security Assertion class
10426 </summary>
10427 </member>
10428 <member name="M:MbUnit.Framework.SecurityAssert.IsAuthenticated(System.Security.Principal.IIdentity)">
10429 <summary>
10430 Asserts that <paramref name="identity"/> is authenticated.
10431 </summary>
10432 </member>
10433 <member name="M:MbUnit.Framework.SecurityAssert.IsNotAuthenticated(System.Security.Principal.IIdentity)">
10434 <summary>
10435 Asserts that <paramref name="identity"/> is not authenticated.
10436 </summary>
10437 </member>
10438 <member name="M:MbUnit.Framework.SecurityAssert.WindowIsAuthenticated">
10439 <summary>
10440 Asserts that the current windows identity is authenticated.
10441 </summary>
10442 </member>
10443 <member name="M:MbUnit.Framework.SecurityAssert.WindowIsNotAuthenticated">
10444 <summary>
10445 Asserts that the current windows identity is not authenticated.
10446 </summary>
10447 </member>
10448 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInRole(System.Security.Principal.WindowsBuiltInRole)">
10449 <summary>
10450 Asserts that the current windows identity is in <param name="role"/>.
10451 </summary>
10452 </member>
10453 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInAdministrator">
10454 <summary>
10455 Asserts that the current windows identity is in
10456 <see cref="F:System.Security.Principal.WindowsBuiltInRole.Administrator"/> role.
10457 </summary>
10458 </member>
10459 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInGuest">
10460 <summary>
10461 Asserts that the current windows identity is in
10462 <see cref="F:System.Security.Principal.WindowsBuiltInRole.Guest"/> role.
10463 </summary>
10464 </member>
10465 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInPowerUser">
10466 <summary>
10467 Asserts that the current windows identity is in
10468 <see cref="F:System.Security.Principal.WindowsBuiltInRole.PowerUser"/> role.
10469 </summary>
10470 </member>
10471 <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInUser">
10472 <summary>
10473 Asserts that the current windows identity is in
10474 <see cref="F:System.Security.Principal.WindowsBuiltInRole.User"/> role.
10475 </summary>
10476 </member>
10477 <member name="M:MbUnit.Framework.SerialAssert.IsXmlSerializable(System.Type)">
10478 <summary>
10479 Verifies that the type is serializable with the XmlSerializer object.
10480 </summary>
10481 <param name="t">
10482 type to test.
10483 </param>
10484 </member>
10485 <member name="M:MbUnit.Framework.SerialAssert.TwoWaySerialization(System.Object)">
10486 <summary>
10487 Serializes and deserialies to/from XML and checks that the results are the same.
10488 </summary>
10489 <param name="o">
10490 Object to test
10491 </param>
10492 </member>
10493 <member name="T:MbUnit.Framework.SetUpAttribute">
10494 <summary>
10495 Tag use to mark a method that initiliazes the fixture instance.
10496 </summary>
10497 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='SetUpAttribute']"/>
10498 </member>
10499 <member name="T:MbUnit.Framework.StringAssert">
10500 <summary>
10501 String Assertion class
10502 </summary>
10503 </member>
10504 <member name="M:MbUnit.Framework.StringAssert.AreEqualIgnoreCase(System.String,System.String)">
10505 <summary>
10506 Asserts that two strings are equal, ignoring the case
10507 </summary>
10508 <param name="s1">
10509 Expected string
10510 </param>
10511 <param name="s2">
10512 Actual string
10513 </param>
10514 </member>
10515 <member name="M:MbUnit.Framework.StringAssert.IsEmpty(System.String)">
10516 <summary>
10517 Asserts that the string is non null and empty
10518 </summary>
10519 <param name="s">
10520 String to test.
10521 </param>
10522 </member>
10523 <member name="M:MbUnit.Framework.StringAssert.IsNonEmpty(System.String)">
10524 <summary>
10525 Asserts that the string is non null and non empty
10526 </summary>
10527 <param name="s">
10528 String to test.
10529 </param>
10530 </member>
10531 <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.String)">
10532 <summary>
10533 Asserts the regular expression reg makes a full match on s
10534 </summary>
10535 <param name="s">
10536 String to test.
10537 </param>
10538 <param name="reg">
10539 Regular expression
10540 </param>
10541 </member>
10542 <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.Text.RegularExpressions.Regex)">
10543 <summary>
10544 Asserts the regular expression regex makes a full match on
10545 <paramref name="s"/>.
10546 </summary>
10547 <param name="s">
10548 String to test.
10549 </param>
10550 <param name="regex">
10551 Regular expression
10552 </param>
10553 </member>
10554 <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.String)">
10555 <summary>
10556 Asserts the regular expression reg makes a match on s
10557 </summary>
10558 <param name="s">
10559 String to test.
10560 </param>
10561 <param name="reg">
10562 Regular expression
10563 </param>
10564 </member>
10565 <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.Text.RegularExpressions.Regex)">
10566 <summary>
10567 Asserts the regular expression regex makes a match on s
10568 </summary>
10569 <param name="s">
10570 String to test.
10571 </param>
10572 <param name="regex">
10573 A <see cref="T:System.Text.RegularExpressions.Regex"/> instance.
10574 </param>
10575 </member>
10576 <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.String)">
10577 <summary>
10578 Asserts the regular expression reg makes a match on s
10579 </summary>
10580 <param name="s">
10581 String to test.
10582 </param>
10583 <param name="reg">
10584 Regular expression
10585 </param>
10586 </member>
10587 <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.Text.RegularExpressions.Regex)">
10588 <summary>
10589 Asserts the regular expression regex makes a match on s
10590 </summary>
10591 <param name="s">
10592 String to test.
10593 </param>
10594 <param name="regex">
10595 A <see cref="T:System.Text.RegularExpressions.Regex"/> instance.
10596 </param>
10597 </member>
10598 <member name="M:MbUnit.Framework.StringAssert.DoesNotContain(System.String,System.Char[])">
10599 <summary>
10600 Asserts the string does not contain c
10601 </summary>
10602 <param name="s">
10603 String to test.
10604 </param>
10605 <param name="anyOf">
10606 Variable list of characeters.
10607 </param>
10608 </member>
10609 <member name="T:MbUnit.Framework.TearDownAttribute">
10610 <summary>
10611 Tag use to mark a method that cleans up the resource of the fixture instance.
10612 </summary>
10613 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TearDownAttribute']"/>
10614 </member>
10615 <member name="T:MbUnit.Framework.TestAttribute">
10616 <summary>
10617 Tag use to mark a mark a unit test method.
10618 </summary>
10619 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='TestAttribute']"/>
10620 </member>
10621 <member name="T:MbUnit.Framework.TestFixtureExtensionAttribute">
10622 <summary>
10623 Contributes additional tests and setup or teardown steps to the
10624 lifecycle defined by <see cref="T:MbUnit.Framework.TestFixtureAttribute"/>.
10625 </summary>
10626 </member>
10627 <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddBeforeSetupRuns(MbUnit.Core.Collections.RunCollection)">
10628 <summary>
10629 Called to add runs to perform before setup.
10630 </summary>
10631 <param name="runs">The collection to update</param>
10632 </member>
10633 <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddTestRuns(MbUnit.Core.Collections.RunCollection)">
10634 <summary>
10635 Called to add runs to perform during the test execution cycle.
10636 </summary>
10637 <param name="runs">The collection to update</param>
10638 </member>
10639 <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddAfterTearDownRuns(MbUnit.Core.Collections.RunCollection)">
10640 <summary>
10641 Called to add runs to perform after teardown.
10642 </summary>
10643 <param name="runs">The collection to update</param>
10644 </member>
10645 <member name="T:MbUnit.Framework.TestSequenceAttribute">
10646 <summary>
10647 Creates an order of execution in the fixture.
10648 </summary>
10649 <remarks>
10650 <para>
10651 This fixture is used to implement the Process testing advertised by
10652 Marc Clifton'
10653 <a href="http://www.codeproject.com/csharp/autp3.asp">Code Project
10654 article</a>.
10655 </para>
10656 </remarks>
10657 </member>
10658 <member name="M:MbUnit.Framework.TestSequenceAttribute.#ctor(System.Int32)">
10659 <summary>
10660 Initializes a new instance of <see cref="T:MbUnit.Framework.TestSequenceAttribute"/> with the given order.
10661 </summary>
10662 <param name="order">order of execution</param>
10663 </member>
10664 <member name="M:MbUnit.Framework.TestSequenceAttribute.#ctor(System.Int32,System.String)">
10665 <summary>
10666 Initializes a new instance of <see cref="T:MbUnit.Framework.TestSequenceAttribute"/> with the given order
10667 and description.
10668 </summary>
10669 <param name="order">order of execution</param>
10670 <param name="description">description of the test</param>
10671 </member>
10672 <member name="M:MbUnit.Framework.TestSequenceAttribute.ToString">
10673 <summary>
10674 Returns a string that represents the instance.
10675 </summary>
10676 <returns>
10677 String representing the object.
10678 </returns>
10679 </member>
10680 <member name="P:MbUnit.Framework.TestSequenceAttribute.Order">
10681 <summary>
10682 Gets or sets the order execution
10683 </summary>
10684 <value>
10685 The order of execution
10686 </value>
10687 </member>
10688 <member name="T:MbUnit.Framework.ThreadedRepeatAttribute">
10689 <summary>
10690 This tag defines test method that will invoke the method in the specified
10691 number of concurrent threads.
10692 </summary>
10693 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='ThreadedRepeatAttribute']"/>
10694 </member>
10695 <member name="P:MbUnit.Framework.UsingLiteralsAttribute.Values">
10696 <summary>
10697 Gets a list of values separated by ;
10698 </summary>
10699 <value></value>
10700 </member>
10701 <member name="T:MbUnit.Framework.EnumerationFixtureAttribute">
10702 <summary>
10703 Enumeration Pattern implementations.
10704 </summary>
10705 <remarks name="EnumerationFixtureAttribute">
10706<para><em>Implements:</em>Enumeration Test Pattern</para>
10707<para><em>Login:</em>
10708<code>
10709{DataProvider}
10710{CopyToProvider}
10711[SetUp]
10712(EnumerationTester)
10713 - GetEnumerator
10714 - Enumerate
10715 - ElementWiseEquality
10716 - Current
10717 - CurrentWithoutMoveNet
10718 - CurrentPastEnd
10719 - Reset
10720 - CollectionChanged
10721[TearDown]
10722</code>
10723</para>
10724<para>
10725This example tests the <seealso cref="T:System.Collections.IEnumerable"/> and <seealso cref="T:System.Collections.IEnumerator"/>.
10726</para>
10727</remarks>
10728 </member>
10729 <member name="M:MbUnit.Framework.EnumerationFixtureAttribute.GetRun">
10730 <summary>
10731 </summary>
10732 </member>
10733 <member name="T:MbUnit.Framework.Exceptions.MissingDbInfoException">
10734 <summary>
10735 Could not find <see cref="T:MbUnit.Framework.DbRestoreInfoAttribute"/>.
10736 </summary>
10737 </member>
10738 <member name="M:MbUnit.Framework.Exceptions.MissingDbInfoException.#ctor(System.Type,System.Exception)">
10739 <summary>
10740 Creates an exception with a type
10741 and an inner exception.
10742 </summary>
10743 <param name="type">Error type</param>
10744 <param name="ex">Inner exception</param>
10745 </member>
10746 <member name="M:MbUnit.Framework.Exceptions.MissingDbInfoException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
10747 <summary>
10748
10749 </summary>
10750 <param name="info"></param>
10751 <param name="ctx"></param>
10752 </member>
10753 <member name="P:MbUnit.Framework.Exceptions.MissingDbInfoException.Message">
10754 <summary>
10755
10756 </summary>
10757 <returns></returns>
10758 </member>
10759 <member name="T:MbUnit.Framework.ForEachTestAttribute">
10760 <summary>
10761 </summary>
10762 </member>
10763 <member name="M:MbUnit.Framework.ForEachTestAttribute.#ctor(System.String)">
10764 <summary>
10765 Default constructor
10766 </summary>
10767 <param name="xpath">
10768 XPath to the desired data
10769 </param>
10770 <remarks>
10771 </remarks>
10772 </member>
10773 <member name="M:MbUnit.Framework.ForEachTestAttribute.#ctor(System.String,System.String)">
10774 <summary>
10775 Constructor with a fixture description
10776 </summary>
10777 <param name="xpath">
10778 XPath to the desired data
10779 </param>
10780 <param name="description">fixture description</param>
10781 <remarks>
10782 </remarks>
10783 </member>
10784 <member name="T:MbUnit.Core.Invokers.ForEachTestRunInvoker">
10785 <summary>
10786 Summary description for ForEachTestRunInvoker.
10787 </summary>
10788 </member>
10789 <member name="T:MbUnit.Framework.NamespaceDoc">
10790 <summary>
10791 <para>
10792 The <em>MbUnit.Framework</em> contains the set of built-in attributes.
10793 </para>
10794 <para>
10795 Use the static methods of <see cref="T:MbUnit.Framework.Assert"/> to test your assertions. You can also
10796 do security related assertion using <see cref="T:MbUnit.Framework.SecurityAssert"/>,
10797 data related assertions using <see cref="T:MbUnit.Framework.DataAssert"/> and
10798 XML related assertions using <see cref="T:MbUnit.Framework.XmlAssert"/> (which comes from XmlUnit, http://xmlunit.sourceforge.net)
10799 , Reflection based assertion <see cref="T:MbUnit.Framework.ReflectionAssert"/> and
10800 String and text based assertion <see cref="T:MbUnit.Framework.StringAssert"/>.
10801 </para>
10802 </summary>
10803 </member>
10804 <member name="T:MbUnit.Framework.ProcessTestFixtureAttribute">
10805 <summary>
10806 Process Test Pattern fixture.
10807 </summary>
10808 <remarks>
10809 <para><em>Implements:</em> Process Test Fixture</para>
10810 <para><em>Logic:</em>
10811 <code>
10812 [SetUp]
10813 {TestSequence}
10814 [TearDown]
10815 </code>
10816 </para>
10817 <para>
10818 This fixture implements the Process Test Fixture as described in the
10819 <a href="http://www.codeproject.com/csharp/autp3.asp">CodeProject</a>
10820 article from Marc Clifton.
10821 </para>
10822 <para>
10823 In this implementation, reverse traversal is not implemented.
10824 A process can be seen as a linear graph, a very simple model. If you
10825 need more evolved models, use Model Based Testing.
10826 </para>
10827 </remarks>
10828 <example name="DbSequence">
10829<para>
10830This is the example for the <a href="http://www.codeproject.com/csharp/autp3.asp">CodeProject</a>
10831article adapted to MbUnit.
10832</para>
10833<code>
10834<b>[ProcessTestFixture]</b>
10835public class POSequenceTest
10836{
10837 ...
10838 <b>[TestSequence(1)]</b>
10839 public void POConstructor()
10840 {
10841 po=new PurchaseOrder();
10842 Assert.AreEqual(po.Number,"", "Number not initialized.");
10843 Assert.AreEqual(po.PartCount,0, "PartCount not initialized.");
10844 Assert.AreEqual(po.ChargeCount,0, "ChargeCount not initialized.");
10845 Assert.AreEqual(po.Invoice,null, "Invoice not initialized.");
10846 Assert.AreEqual(po.Vendor,null, "Vendor not initialized.");
10847 }
10848
10849 [TestSequence(2)]
10850 public void VendorConstructor()
10851 {
10852 vendor=new Vendor();
10853 Assert.AreEqual(vendor.Name,"", "Name is not an empty string.");
10854 Assert.AreEqual(vendor.PartCount,0, "PartCount is not zero.");
10855 }
10856 ...
10857</code>
10858<para>
10859Use <see cref="T:MbUnit.Framework.ProcessTestFixtureAttribute"/> to mark a class as process test fixture and use the
10860<see cref="T:MbUnit.Framework.TestSequenceAttribute"/> attribute to create the order of the process. The fixture also supports
10861SetUp and TearDown methods.
10862</para>
10863</example>
10864 </member>
10865 <member name="M:MbUnit.Framework.ProcessTestFixtureAttribute.#ctor">
10866 <summary>
10867 Initialize a <see cref="T:MbUnit.Framework.ProcessTestFixtureAttribute"/>
10868 instance.
10869 </summary>
10870 </member>
10871 <member name="M:MbUnit.Framework.ProcessTestFixtureAttribute.#ctor(System.String)">
10872 <summary>
10873 Constructor with a fixture description
10874 </summary>
10875 <param name="description">fixture description</param>
10876 </member>
10877 <member name="M:MbUnit.Framework.ProcessTestFixtureAttribute.GetRun">
10878 <summary>
10879 Creates the execution logic
10880 </summary>
10881 <remarks>
10882 See summary.
10883 </remarks>
10884 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
10885 test logic.
10886 </returns>
10887 </member>
10888 <member name="T:MbUnit.Framework.ResourceXmlDataProviderAttribute">
10889 <summary>
10890 A resource-based data provider
10891 </summary>
10892 </member>
10893 <member name="T:MbUnit.Framework.XmlDataProviderAttribute">
10894 <summary>
10895 A file-based data provider
10896 </summary>
10897 </member>
10898 <member name="T:MbUnit.Framework.SuiteProviderAttribute">
10899 <summary>
10900 </summary>
10901 </member>
10902 <member name="M:MbUnit.Framework.SuiteProviderAttribute.#ctor(System.String)">
10903 <summary>
10904 Default constructor
10905 </summary>
10906 <param name="xpath">
10907 XPath to the desired data
10908 </param>
10909 <remarks>
10910 </remarks>
10911 </member>
10912 <member name="M:MbUnit.Framework.SuiteProviderAttribute.#ctor(System.String,System.String)">
10913 <summary>
10914 Constructor with a fixture description
10915 </summary>
10916 <param name="xpath">
10917 XPath to the desired data
10918 </param>
10919 <param name="description">fixture description</param>
10920 <remarks>
10921 </remarks>
10922 </member>
10923 <member name="T:MbUnit.Framework.TestCase">
10924 <summary>
10925 A single test case of a <see cref="T:MbUnit.Framework.TestSuite"/>.
10926 </summary>
10927 </member>
10928 <member name="M:MbUnit.Framework.TestCase.#ctor(System.String,System.Delegate,System.Object[])">
10929 <summary>
10930 Initializes a new <see cref="T:MbUnit.Framework.TestCase"/> instance
10931 with name and delegate.
10932 </summary>
10933 <param name="name">
10934 Name of the test case
10935 </param>
10936 <param name="testDelegate">
10937 Delegate called by the test case
10938 </param>
10939 <param name="parameters">
10940 Parameters of the delegate
10941 </param>
10942 <exception cref="T:System.ArgumentNullException">
10943 <paramref name="name"/> or <paramref name="testDelegate"/>
10944 is a null reference (Nothing in Visual Basic)
10945 </exception>
10946 <exception cref="T:System.ArgumentException">
10947 <paramref name="name"/> is empty.
10948 </exception>
10949 </member>
10950 <member name="M:MbUnit.Framework.TestCase.Invoke(System.Object,System.Collections.IList)">
10951 <summary>
10952 Invokes test using the parameters returned by <see cref="M:MbUnit.Framework.TestCase.GetParameters"/>.
10953 </summary>
10954 <returns></returns>
10955 </member>
10956 <member name="P:MbUnit.Framework.TestCase.Name">
10957 <summary>
10958 Gets the name of the test case
10959 </summary>
10960 <value>
10961 The name of the test case
10962 </value>
10963 </member>
10964 <member name="T:MbUnit.Framework.Testers.CollectionIndexingTester">
10965 <summary>
10966 Collection indexing test class
10967 </summary>
10968 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="dot/remarkss/remarks[@name='CollectionIndexingTester']"/>
10969 </member>
10970 <member name="T:MbUnit.Framework.Testers.CollectionOrderTester">
10971 <summary>
10972 Collection order tester class.
10973 </summary>
10974 </member>
10975 <member name="T:MbUnit.Framework.Testers.EnumerationTester">
10976 <summary>
10977 Tests for the <seealso cref="T:System.Collections.IEnumerable"/> and <seealso cref="T:System.Collections.IEnumerator"/>.
10978 </summary>
10979 </member>
10980 <member name="T:MbUnit.Framework.Testers.NamespaceDoc">
10981 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/summaries/summary[@name='MbUnit.Framework.Testers']"/>
10982 </member>
10983 <member name="T:MbUnit.Framework.TestFixtureAttribute">
10984 <summary>
10985 Simple Test Pattern fixture.
10986 </summary>
10987 <remarks name="TestFixtureAttribute">
10988<para><em>Implements:</em> Simple Test Pattern</para>
10989<para><em>Login:</em>
10990<code>
10991[SetUp]
10992{Test}
10993[TearDown]
10994</code>
10995</para>
10996<para>
10997This is the classic unit test fixture attribute. It defines a class that contains unit
10998tests.
10999</para>
11000<para>
11001The test execution logic is described by the following sequence of custom attributes:
11002where <c>[]</c> denotes an optional attribute, <c>{}</c> denotes a custom attribute
11003that can tag multiple number of methods.
11004</para>
11005<para>
11006Unit test methods must be tagged with the <see cref="T:MbUnit.Framework.TestFixtureAttribute"/>, return
11007<c>void</c> and take no arguments:
11008<code>
11009[Test]
11010public void UnitTest()
11011{
11012 ...
11013}
11014</code>
11015The same fixture can hold an arbitrary number of unit test methods.
11016</para>
11017<para>
11018If the fixture needs initilization, you can add a set up method tagged with the
11019<see cref="T:MbUnit.Framework.SetUpAttribute"/> attribute. Note that there can be only one
11020method tagged with <see cref="T:MbUnit.Framework.SetUpAttribute"/>.
11021</para>
11022<para>
11023Symmetricaly, you can specify a method that will clean up resources allocated by
11024the fixture. This method must be tagged with the <see cref="T:MbUnit.Framework.TearDownAttribute"/>
11025and there can be only one method with this attribute.
11026</para>
11027</remarks>
11028 <example name="GraphicsBitmap">
11029<para>
11030This example shows a test fixture class implementing the <b>Simple Test pattern</b>.
11031It tests image based method of the Graphics class in GDI+.
11032</para>
11033<para>
11034A set up method
11035(tagged by <see cref="T:MbUnit.Framework.SetUpAttribute"/> is used to create a new bitmap, while
11036a tear down (tagged by <see cref="T:MbUnit.Framework.TearDownAttribute"/>) is used to released the bitmap.
11037</para>
11038<code id="ex_bitmap" compilable="true">
11039[TestFixture("Bitmap")]
11040public GraphicsAndBitmapTest
11041{
11042 private Bitmap bmp;
11043
11044 [SetUp]
11045 public void SetUp()
11046 {
11047 this.bmp = new Bitmap(300,300);
11048 }
11049
11050 [Test]
11051 public void CreateGraphics()
11052 {
11053 Graphics g = Graphcis.FromImage(this.bmp);
11054 Assert.IsNotNull(g);
11055 Assert.AreEqual(g.Width,this.bmp.Width);
11056 ...
11057 }
11058
11059 ...
11060
11061 [TearDown]
11062 public void TearDownCanHaveOtherNames()
11063 {
11064 if(this.bmp!=null)
11065 this.bmp.Dispose();
11066 }
11067}
11068</code>
11069</example>
11070 </member>
11071 <member name="M:MbUnit.Framework.TestFixtureAttribute.#ctor">
11072 <summary>
11073 Default constructor
11074 </summary>
11075 <remarks>
11076 </remarks>
11077 </member>
11078 <member name="M:MbUnit.Framework.TestFixtureAttribute.#ctor(System.String)">
11079 <summary>
11080 Constructor with a fixture description
11081 </summary>
11082 <param name="description">fixture description</param>
11083 <remarks>
11084 </remarks>
11085 </member>
11086 <member name="M:MbUnit.Framework.TestFixtureAttribute.GetRun">
11087 <summary>
11088 Creates the execution logic
11089 </summary>
11090 <remarks>
11091 See summary.
11092 </remarks>
11093 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
11094 test logic.
11095 </returns>
11096 <example name="GraphicsBitmap">
11097<para>
11098This example shows a test fixture class implementing the <b>Simple Test pattern</b>.
11099It tests image based method of the Graphics class in GDI+.
11100</para>
11101<para>
11102A set up method
11103(tagged by <see cref="T:MbUnit.Framework.SetUpAttribute"/> is used to create a new bitmap, while
11104a tear down (tagged by <see cref="T:MbUnit.Framework.TearDownAttribute"/>) is used to released the bitmap.
11105</para>
11106<code id="ex_bitmap" compilable="true">
11107[TestFixture("Bitmap")]
11108public GraphicsAndBitmapTest
11109{
11110 private Bitmap bmp;
11111
11112 [SetUp]
11113 public void SetUp()
11114 {
11115 this.bmp = new Bitmap(300,300);
11116 }
11117
11118 [Test]
11119 public void CreateGraphics()
11120 {
11121 Graphics g = Graphcis.FromImage(this.bmp);
11122 Assert.IsNotNull(g);
11123 Assert.AreEqual(g.Width,this.bmp.Width);
11124 ...
11125 }
11126
11127 ...
11128
11129 [TearDown]
11130 public void TearDownCanHaveOtherNames()
11131 {
11132 if(this.bmp!=null)
11133 this.bmp.Dispose();
11134 }
11135}
11136</code>
11137</example>
11138 </member>
11139 <member name="T:MbUnit.Framework.TestSuite">
11140 <summary>
11141 A named collection of uniquely named <see cref="T:MbUnit.Framework.TestCase"/>.
11142 </summary>
11143 </member>
11144 <member name="M:MbUnit.Framework.TestSuite.#ctor(System.String)">
11145 <summary>
11146 Initializes a <see cref="T:MbUnit.Framework.TestSuite"/> instance
11147 with <paramref name="name"/>.
11148 </summary>
11149 <param name="name">
11150 name of the suite
11151 </param>
11152 <exception cref="T:System.ArgumentNullException">
11153 <paramref name="name"/> is a null reference
11154 (Nothing in Visual Basic)
11155 </exception>
11156 <exception cref="T:System.ArgumentException">
11157 <paramref name="name"/> is empty.
11158 </exception>
11159 </member>
11160 <member name="M:MbUnit.Framework.TestSuite.Add(MbUnit.Framework.ITestCase)">
11161 <summary>
11162 Adds the test case to the suite
11163 </summary>
11164 <param name="testCase">
11165 <see cref="T:MbUnit.Framework.TestCase"/> instance to add.
11166 </param>
11167 <exception cref="T:System.InvalidOperationException">
11168 The suite already contains a test case named <paramref name="name"/>.
11169 </exception>
11170 </member>
11171 <member name="M:MbUnit.Framework.TestSuite.Remove(MbUnit.Framework.TestCase)">
11172 <summary>
11173 Removes the test case from the suite
11174 </summary>
11175 <param name="testCase">
11176 Test case to remove
11177 </param>
11178 <exception cref="T:System.ArgumentNullException">
11179 <paramref name="testCase"/> is a null reference
11180 (Nothing in Visual Basic)
11181 </exception>
11182 </member>
11183 <member name="M:MbUnit.Framework.TestSuite.Add(System.String,System.Delegate,System.Object[])">
11184 <summary>
11185 Adds a new <see cref="T:MbUnit.Framework.TestCase"/> to the suite.
11186 </summary>
11187 <param name="name">
11188 Name of the new test case
11189 </param>
11190 <param name="test">
11191 <see cref="T:System.Delegate"/> invoked by the test case
11192 </param>
11193 <param name="parameters">
11194 parameters sent to <paramref name="test"/> when invoked
11195 </param>
11196 <exception cref="T:System.ArgumentNullException">
11197 <paramref name="name"/> is a null reference
11198 (Nothing in Visual Basic)
11199 </exception>
11200 <exception cref="T:System.ArgumentException">
11201 <paramref name="name"/> is empty.
11202 </exception>
11203 <exception cref="T:System.InvalidOperationException">
11204 The suite already contains a test case named <paramref name="name"/>.
11205 </exception>
11206 </member>
11207 <member name="P:MbUnit.Framework.TestSuite.Name">
11208 <summary>
11209 Gets the <see cref="T:MbUnit.Framework.TestSuite"/> name.
11210 </summary>
11211 <value>
11212 The <see cref="T:MbUnit.Framework.TestSuite"/> name.
11213 </value>
11214 </member>
11215 <member name="P:MbUnit.Framework.TestSuite.TestCases">
11216 <summary>
11217 Gets a collection of <see cref="T:MbUnit.Framework.TestCase"/>.
11218 </summary>
11219 <value>
11220 A collection of <see cref="T:MbUnit.Framework.TestCase"/>.
11221 </value>
11222 </member>
11223 <member name="T:MbUnit.Framework.TestSuiteFixtureAttribute">
11224 <summary>
11225 Test Suite fixture.
11226 </summary>
11227 </member>
11228 <member name="M:MbUnit.Framework.TestSuiteFixtureAttribute.#ctor">
11229 <summary>
11230 Default constructor
11231 </summary>
11232 <remarks>
11233 </remarks>
11234 </member>
11235 <member name="M:MbUnit.Framework.TestSuiteFixtureAttribute.#ctor(System.String)">
11236 <summary>
11237 Constructor with a fixture description
11238 </summary>
11239 <param name="description">fixture description</param>
11240 <remarks>
11241 </remarks>
11242 </member>
11243 <member name="M:MbUnit.Framework.TestSuiteFixtureAttribute.GetRun">
11244 <summary>
11245 Creates the execution logic
11246 </summary>
11247 <remarks>
11248 See summary.
11249 </remarks>
11250 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
11251 test logic.
11252 </returns>
11253 <example name="GraphicsBitmap">
11254<para>
11255This example shows a test fixture class implementing the <b>Simple Test pattern</b>.
11256It tests image based method of the Graphics class in GDI+.
11257</para>
11258<para>
11259A set up method
11260(tagged by <see cref="T:MbUnit.Framework.SetUpAttribute"/> is used to create a new bitmap, while
11261a tear down (tagged by <see cref="T:MbUnit.Framework.TearDownAttribute"/>) is used to released the bitmap.
11262</para>
11263<code id="ex_bitmap" compilable="true">
11264[TestFixture("Bitmap")]
11265public GraphicsAndBitmapTest
11266{
11267 private Bitmap bmp;
11268
11269 [SetUp]
11270 public void SetUp()
11271 {
11272 this.bmp = new Bitmap(300,300);
11273 }
11274
11275 [Test]
11276 public void CreateGraphics()
11277 {
11278 Graphics g = Graphcis.FromImage(this.bmp);
11279 Assert.IsNotNull(g);
11280 Assert.AreEqual(g.Width,this.bmp.Width);
11281 ...
11282 }
11283
11284 ...
11285
11286 [TearDown]
11287 public void TearDownCanHaveOtherNames()
11288 {
11289 if(this.bmp!=null)
11290 this.bmp.Dispose();
11291 }
11292}
11293</code>
11294</example>
11295 </member>
11296 <member name="T:MbUnit.Framework.TypeFixtureAttribute">
11297 <summary>
11298 Type fixture pattern implementation.
11299 </summary>
11300 <remarks name="TypeFixtureAttribute">
11301<para><em>Implements:</em> Type Test Pattern</para>
11302<para><em>Logic:</em>
11303<code>
11304{Provider}
11305[SetUp]
11306{Test}
11307[TearDown]
11308</code>
11309</para>
11310<para>
11311This fixture is quite similar to the <b>Simple Test</b> pattern, but it applies to
11312any instance of a particular type provided by the user.
11313</para>
11314<para>
11315The test fixture first looks for methods tagged with the <see cref="T:MbUnit.Framework.ProviderAttribute"/>
11316method. These method must return an object assignable with the tested type. This instance will
11317be feeded to the other methods of the fixture.
11318</para>
11319</remarks>
11320 <example name="IDictionary">
11321<para>
11322This example shows the squeleton of a fixture tests the <b>IDictionary</b> interface,
11323the fixture implements the <b>Type Test</b> pattern.
11324</para>
11325<para>
11326The tested instances are feeded by the methods tagged with the <see cref="T:MbUnit.Framework.ProviderAttribute"/>.
11327These methods must return an instance that is assignable with <see cref="T:System.Collections.IDictionary"/>.
11328Subsequent will receive the created instance as parameter.
11329</para>
11330<code id="ex_dictionary" compilable="true">
11331[TypeFixture(typeof(IDictionary),"IDictionary interface fixture")]
11332public void DictionaryTest
11333{
11334 [Provider(typeof(Hashtable))]
11335 public Hashtable ProvideHashtable()
11336 {
11337 return new Hashtable();
11338 }
11339
11340 [Provider(typeof(SortedList))]
11341 public SortedList ProvideSortedList()
11342 {
11343 return new SortedList();
11344 }
11345
11346 // tests
11347 [Test]
11348 [ExpectedException(typeof(ArgumentException))]
11349 public void AddDuplicate(IDictionary dic) // dic comes from a provider class
11350 {
11351 dic.Add("key",null);
11352 dic.Add("key",null); // boom
11353 }
11354
11355}
11356</code>
11357</example>
11358 </member>
11359 <member name="M:MbUnit.Framework.TypeFixtureAttribute.#ctor(System.Type)">
11360 <summary>
11361 Creates a fixture for the <paramref name="testedType"/> type.
11362 </summary>
11363 <remarks>
11364 Initializes the attribute with <paramref name="testedType"/>.
11365 </remarks>
11366 <param name="testedType">type to apply the fixture to</param>
11367 <exception cref="T:System.ArgumentNullException">testedType is a null reference</exception>
11368 </member>
11369 <member name="M:MbUnit.Framework.TypeFixtureAttribute.#ctor(System.Type,System.String)">
11370 <summary>
11371 Creates a fixture for the <paramref name="testedType"/> type
11372 and a description
11373 </summary>
11374 <remarks>
11375 Initializes the attribute with <paramref name="testedType"/>.
11376 </remarks>
11377 <param name="testedType">type to apply the fixture to</param>
11378 <param name="description">description of the fixture</param>
11379 <exception cref="T:System.ArgumentNullException">testedType is a null reference</exception>
11380 </member>
11381 <member name="M:MbUnit.Framework.TypeFixtureAttribute.GetRun">
11382 <summary>
11383 Creates the execution logic
11384 </summary>
11385 <remarks>
11386 See summary.
11387 </remarks>
11388 <returns>A <see cref="T:MbUnit.Core.Runs.IRun"/> instance that represent the type
11389 test logic.
11390 </returns>
11391 <example name="IDictionary">
11392<para>
11393This example shows the squeleton of a fixture tests the <b>IDictionary</b> interface,
11394the fixture implements the <b>Type Test</b> pattern.
11395</para>
11396<para>
11397The tested instances are feeded by the methods tagged with the <see cref="T:MbUnit.Framework.ProviderAttribute"/>.
11398These methods must return an instance that is assignable with <see cref="T:System.Collections.IDictionary"/>.
11399Subsequent will receive the created instance as parameter.
11400</para>
11401<code id="ex_dictionary" compilable="true">
11402[TypeFixture(typeof(IDictionary),"IDictionary interface fixture")]
11403public void DictionaryTest
11404{
11405 [Provider(typeof(Hashtable))]
11406 public Hashtable ProvideHashtable()
11407 {
11408 return new Hashtable();
11409 }
11410
11411 [Provider(typeof(SortedList))]
11412 public SortedList ProvideSortedList()
11413 {
11414 return new SortedList();
11415 }
11416
11417 // tests
11418 [Test]
11419 [ExpectedException(typeof(ArgumentException))]
11420 public void AddDuplicate(IDictionary dic) // dic comes from a provider class
11421 {
11422 dic.Add("key",null);
11423 dic.Add("key",null); // boom
11424 }
11425
11426}
11427</code>
11428</example>
11429 </member>
11430 <member name="P:MbUnit.Framework.UsingFactoriesAttribute.MemberNames">
11431 <summary>
11432 Gets a list of member names separated by ;
11433 </summary>
11434 <value></value>
11435 </member>
11436 <member name="T:MbUnit.Framework.VerifiedTestCase">
11437 <summary>
11438 A <see cref="T:MbUnit.Framework.TestCase"/> with verified result.
11439 </summary>
11440 </member>
11441 <member name="T:MbUnit.Framework.WebAssert">
11442 <summary>
11443 Web related assertions.
11444 </summary>
11445 </member>
11446 <member name="M:MbUnit.Framework.WebAssert.IsEnableViewState(System.Web.UI.Control)">
11447 <summary>
11448 Verifies that <paramref name="ctrl"/> has ViewState enabled.
11449 </summary>
11450 </member>
11451 <member name="M:MbUnit.Framework.WebAssert.IsNotEnableViewState(System.Web.UI.Control)">
11452 <summary>
11453 Verifies that <paramref name="ctrl"/> has <strong>not</strong> ViewState enabled.
11454 </summary>
11455 </member>
11456 <member name="M:MbUnit.Framework.WebAssert.IsVisible(System.Web.UI.Control)">
11457 <summary>
11458 Verifies that <paramref name="ctrl"/> is visible.
11459 </summary>
11460 </member>
11461 <member name="M:MbUnit.Framework.WebAssert.IsNotVisible(System.Web.UI.Control)">
11462 <summary>
11463 Verifies that <paramref name="ctrl"/> is not visible.
11464 </summary>
11465 </member>
11466 <member name="M:MbUnit.Framework.WebAssert.IsIDEqual(System.Web.UI.Control,System.String)">
11467 <summary>
11468 Verifies that <paramref name="ctrl"/> ID is equal to <paramref name="id"/>.
11469 </summary>
11470 </member>
11471 <member name="M:MbUnit.Framework.WebAssert.HasControls(System.Web.UI.Control)">
11472 <summary>
11473 Verifies that <paramref name="ctrl"/> has child controls.
11474 </summary>
11475 </member>
11476 <member name="M:MbUnit.Framework.WebAssert.HasNoControls(System.Web.UI.Control)">
11477 <summary>
11478 Verifies that <paramref name="ctrl"/> has no child controls.
11479 </summary>
11480 </member>
11481 <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.Web.UI.Control,System.Web.UI.Control)">
11482 <summary>
11483 Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory"/>
11484 property of <paramref name="expected"/> and <paramref name="actual"/>
11485 are equal.
11486 </summary>
11487 </member>
11488 <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.String,System.Web.UI.Control)">
11489 <summary>
11490 Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory"/>
11491 property of <paramref name="actual"/> is equal to <paramref name="expected"/>
11492 are equal.
11493 </summary>
11494 </member>
11495 <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.Web.UI.Control)">
11496 <summary>
11497 Verifies that <paramref name="child"/> is a child control
11498 of <paramref name="parent"/>
11499 </summary>
11500 </member>
11501 <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.String)">
11502 <summary>
11503 Verifies that <paramref name="childID"/> is the ID of a child control
11504 of <paramref name="parent"/>
11505 </summary>
11506 </member>
11507 <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.Web.UI.Control)">
11508 <summary>
11509 Verifies that <paramref name="child"/> is a not child control
11510 of <paramref name="parent"/>
11511 </summary>
11512 </member>
11513 <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.String)">
11514 <summary>
11515 Verifies that <paramref name="childID"/> is the not ID of a child control
11516 of <paramref name="parent"/>
11517 </summary>
11518 </member>
11519 <member name="M:MbUnit.Framework.WebAssert.AreErrorPageEqual(System.String,System.Web.UI.Page)">
11520 <summary>
11521 Verifies that the <see cref="P:System.Web.UI.Page.ErrorPage"/> property of <paramref name="page"/>
11522 is equal to <paramref name="expected"/>.
11523 </summary>
11524 </member>
11525 <member name="M:MbUnit.Framework.WebAssert.AreClientTargetEqual(System.String,System.Web.UI.Page)">
11526 <summary>
11527 Verifies that the <see cref="P:System.Web.UI.Page.ClientTarget"/> property of <paramref name="page"/>
11528 is equal to <paramref name="expected"/>.
11529 </summary>
11530 </member>
11531 <member name="M:MbUnit.Framework.WebAssert.IsPostBack(System.Web.UI.Page)">
11532 <summary>
11533 Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack"/> property of <paramref name="page"/>
11534 is true.
11535 </summary>
11536 </member>
11537 <member name="M:MbUnit.Framework.WebAssert.IsNotPostBack(System.Web.UI.Page)">
11538 <summary>
11539 Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack"/> property of <paramref name="page"/>
11540 is false.
11541 </summary>
11542 </member>
11543 <member name="M:MbUnit.Framework.WebAssert.IsValid(System.Web.UI.Page)">
11544 <summary>
11545 Verifies that the <see cref="P:System.Web.UI.Page.IsValid"/> property of <paramref name="page"/>
11546 is true.
11547 </summary>
11548 </member>
11549 <member name="M:MbUnit.Framework.WebAssert.IsNotValid(System.Web.UI.Page)">
11550 <summary>
11551 Verifies that the <see cref="P:System.Web.UI.Page.IsValid"/> property of <paramref name="page"/>
11552 is false.
11553 </summary>
11554 </member>
11555 <member name="M:MbUnit.Framework.WebAssert.IsSmartNavigation(System.Web.UI.Page)">
11556 <summary>
11557 Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation"/> property of <paramref name="page"/>
11558 is true.
11559 </summary>
11560 </member>
11561 <member name="M:MbUnit.Framework.WebAssert.IsNotSmartNavigation(System.Web.UI.Page)">
11562 <summary>
11563 Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation"/> property of <paramref name="page"/>
11564 is false.
11565 </summary>
11566 </member>
11567 <member name="T:MbUnit.Framework.WriteAttribute">
11568 <summary>
11569 Tag use to mark a method that writes data to a device.
11570 </summary>
11571 <!-- No matching elements were found for the following include tag --><include file="MbUnit.Framework.Doc.xml" path="doc/remarkss/remarks[@name='WriteAttribute']"/>
11572 </member>
11573 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValueExplicitlySpecified">
11574 Comparing an implied attribute value against an explicit value
11575 </member>
11576 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeNameNotFound">
11577 Comparing 2 elements and one has an attribute the other does not
11578 </member>
11579 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValue">
11580 <summary>
11581 Comparing 2 attributes with the same name but different values
11582 </summary>
11583 </member>
11584 <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeSequence">
11585 <summary>
11586 Comparing 2 attribute lists with the same attributes in different sequence
11587 </summary>
11588 </member>
11589 <member name="F:MbUnit.Framework.Xml.DifferenceType.CDATAValue">
11590 Comparing 2 CDATA sections with different values
11591 </member>
11592 <member name="F:MbUnit.Framework.Xml.DifferenceType.CommentValue">
11593 Comparing 2 comments with different values
11594 </member>
11595 <member name="F:MbUnit.Framework.Xml.DifferenceType.DOCTYPE_NAME_ID">
11596 Comparing 2 document types with different names
11597 </member>
11598 <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypePublicID">
11599 Comparing 2 document types with different public identifiers
11600 </member>
11601 <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypeSystemID">
11602 Comparing 2 document types with different system identifiers
11603 </member>
11604 <member name="F:MbUnit.Framework.Xml.DifferenceType.ElementTagName">
11605 Comparing 2 elements with different tag names
11606 </member>
11607 <member name="F:MbUnit.Framework.Xml.DifferenceType.ELEMENT_NUM_ATTRIBUTES_ID">
11608 Comparing 2 elements with different number of attributes
11609 </member>
11610 <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_TARGET_ID">
11611 Comparing 2 processing instructions with different targets
11612 </member>
11613 <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_DATA_ID">
11614 Comparing 2 processing instructions with different instructions
11615 </member>
11616 <member name="F:MbUnit.Framework.Xml.DifferenceType.TEXT_VALUE_ID">
11617 Comparing 2 different text values
11618 </member>
11619 <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_PREFIX_ID">
11620 Comparing 2 nodes with different namespace prefixes
11621 </member>
11622 <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_URI_ID">
11623 Comparing 2 nodes with different namespace URIs
11624 </member>
11625 <member name="F:MbUnit.Framework.Xml.DifferenceType.NODE_TYPE_ID">
11626 Comparing 2 nodes with different node types
11627 </member>
11628 <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_CHILD_NODES_ID">
11629 Comparing 2 nodes but only one has any children
11630 </member>
11631 <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_LENGTH_ID">
11632 Comparing 2 nodes with different numbers of children
11633 </member>
11634 <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_SEQUENCE_ID">
11635 Comparing 2 nodes with children whose nodes are in different sequence
11636 </member>
11637 <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_DOCTYPE_DECLARATION_ID">
11638 Comparing 2 Documents only one of which has a doctype
11639 </member>
11640 <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_XML_DECLARATION_PREFIX_ID">
11641 Comparing 2 Documents only one of which has an XML Prefix Declaration
11642 </member>
11643 <member name="T:MbUnit.Framework.Xml.FlowControlException">
11644 <summary>
11645 Summary description for FlowControlException.
11646 </summary>
11647 </member>
11648 <member name="T:MbUnit.Framework.Xml.NamespaceDoc">
11649 <summary>
11650 <para>
11651 The <b>MbUnit.Framework.Xml</b> contains Xml-specific assertion.
11652 The classes of this namespace are extracted from the XmlUnit project.
11653 </para>
11654 <code>
11655 /*
11656 ******************************************************************
11657 Copyright (c) 2001, Jeff Martin, Tim Bacon
11658 All rights reserved.
11659
11660 Redistribution and use in source and binary forms, with or without
11661 modification, are permitted provided that the following conditions
11662 are met:
11663
11664 * Redistributions of source code must retain the above copyright
11665 notice, this list of conditions and the following disclaimer.
11666 * Redistributions in binary form must reproduce the above
11667 copyright notice, this list of conditions and the following
11668 disclaimer in the documentation and/or other materials provided
11669 with the distribution.
11670 * Neither the name of the xmlunit.sourceforge.net nor the names
11671 of its contributors may be used to endorse or promote products
11672 derived from this software without specific prior written
11673 permission.
11674
11675 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
11676 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
11677 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
11678 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
11679 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
11680 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
11681 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
11682 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
11683 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
11684 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
11685 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
11686 POSSIBILITY OF SUCH DAMAGE.
11687
11688 ******************************************************************
11689 */
11690 </code>
11691 </summary>
11692 </member>
11693 </members>
11694</doc>