main
   1<?xml version="1.0" encoding="utf-8"?>
   2<doc>
   3  <assembly>
   4    <name>MbUnit</name>
   5  </assembly>
   6  <members>
   7    <member name="T:MbUnit.Core.MbUnitTestFrameworkExtension">
   8      <summary>A <see cref="T:Gallio.Framework.Pattern.IPatternTestFrameworkExtension" /> that registers MbUnit as a tool when the test assembly contains a reference to the MbUnit assembly.</summary>
   9    </member>
  10    <member name="M:MbUnit.Core.MbUnitTestFrameworkExtension.GetReferencedTools(Gallio.Reflection.IAssemblyInfo)">
  11      <summary>
  12        <para> Gets information about the tools that are used by the specified test assembly. The tool information will be included in the report as part of the framework node that contains the assembly. </para>
  13        <para> This method is used by authors of tools that are derived from the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" /> to provide brand and version information about the tool so that it will be visible to end users. </para>
  14        <para> If no tools are referenced by the assembly, it will be ignored by the <see cref="T:Gallio.Framework.Pattern.PatternTestExplorer" />. </para>
  15      </summary>
  16      <param name="assembly">The test assembly</param>
  17      <returns>The tool information</returns>
  18    </member>
  19    <member name="T:MbUnit.Framework.AnnotationAttribute">
  20      <summary>Associates an annotation message of the specified type with the code element.</summary>
  21    </member>
  22    <member name="T:MbUnit.Framework.ApartmentStateAttribute">
  23      <summary>
  24        <para> Sets the apartment state to be used to run the decorated test. </para>
  25        <para> If no apartment state is specified or if it is <see cref="F:System.Threading.ApartmentState.Unknown" /> the test will inherit the apartment state of its parent. Otherwise it will run in a thread with the specified apartment state. </para>
  26        <para> The test runner guarantees that the root test runs with the <see cref="F:System.Threading.ApartmentState.STA" /> apartment state. Consequently the apartment state only needs to be overridden to run a test in some mode that may differ from that which it would ordinarily inherit. </para>
  27      </summary>
  28    </member>
  29    <member name="P:MbUnit.Framework.ApartmentStateAttribute.ApartmentState">
  30      <summary>Gets the apartment state to be used to run the decorated test.</summary>
  31    </member>
  32    <member name="M:MbUnit.Framework.ApartmentStateAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
  33      <summary>
  34        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
  35        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
  36      </summary>
  37      <param name="scope">The scope</param>
  38      <param name="codeElement">The code element</param>
  39    </member>
  40    <member name="T:MbUnit.Framework.ArrayAssert">
  41      <summary>Array Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
  42    </member>
  43    <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Boolean[],System.Boolean[])">
  44      <summary>Verifies that both array have the same dimension and elements.</summary>
  45      <param name="expected" />
  46      <param name="actual" />
  47    </member>
  48    <member name="T:MbUnit.Framework.AssemblyFixtureAttribute">
  49      <summary>
  50        <para> The assembly fixture attribute is applied to a class that contains setup and teardown methods that are to be applied at the assembly level. Conceptually, the <see cref="T:MbUnit.Framework.AssemblyFixtureAttribute" /> adds new behavior to an assembly-level test fixture that contains all of the test fixtures within the assembly. </para>
  51        <para> The following attributes are typically used within an assembly fixture: <list type="bullet"><item><see cref="T:MbUnit.Framework.FixtureSetUpAttribute" />: Performs setup activities before any test fixtures within the assembly are executed.</item><item><see cref="T:MbUnit.Framework.FixtureTearDownAttribute" />: Performs teardown activities after all test fixtures within the assembly are executed.</item><item><see cref="T:MbUnit.Framework.SetUpAttribute" />: Performs setup activities before each test fixture within the assembly is executed.</item><item><see cref="T:MbUnit.Framework.TearDownAttribute" />: Performs teardown activities after eacj test fixture within the assembly is executed.</item></list></para>
  52        <para> It is also possible to use other attributes as with an ordinary <see cref="T:MbUnit.Framework.TestFixtureAttribute" />. An assembly fixture also supports data binding. When data binding is used on an assembly fixture, it will cause all test fixtures within the assembly to run once for each combination of data values used. </para>
  53      </summary>
  54    </member>
  55    <member name="M:MbUnit.Framework.AssemblyFixtureAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
  56      <summary>
  57        <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
  58        <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
  59        <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
  60      </summary>
  61      <param name="containingScope">The containing scope</param>
  62      <param name="codeElement">The code element to process</param>
  63      <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
  64    </member>
  65    <member name="M:MbUnit.Framework.AssemblyFixtureAttribute.SetTestSemantics(Gallio.Framework.Pattern.PatternTest,Gallio.Reflection.ITypeInfo)">
  66      <summary>
  67        <para> Applies semantic actions to the <see cref="P:Gallio.Framework.Pattern.PatternTest.TestActions" /> member of a test to set the test's runtime behavior. </para>
  68        <para> This method is called after <see cref="M:Gallio.Framework.Pattern.TestTypePatternAttribute.InitializeTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)" />. </para>
  69      </summary>
  70      <param name="test">The test</param>
  71      <param name="type">The test type</param>
  72    </member>
  73    <member name="M:MbUnit.Framework.AssemblyFixtureAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
  74      <summary>Verifies that the attribute is being used correctly.</summary>
  75      <param name="containingScope">The containing scope</param>
  76      <param name="type">The type</param>
  77    </member>
  78    <member name="T:MbUnit.Framework.AssemblyResolverAttribute">
  79      <summary>Registers a custom assembly resolver. This class cannot be inherited.</summary>
  80    </member>
  81    <member name="P:MbUnit.Framework.AssemblyResolverAttribute.AssemblyResolverType">
  82      <summary>Gets the assembly resolver type.</summary>
  83    </member>
  84    <member name="M:MbUnit.Framework.AssemblyResolverAttribute.Initialize(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
  85      <summary>Performs early initialization for the specified assembly.</summary>
  86      <param name="frameworkScope">The framework-level scope that will eventually contain the assembly-level test</param>
  87      <param name="assembly">The assembly to process</param>
  88    </member>
  89    <member name="T:MbUnit.Framework.Assert">
  90      <summary>Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
  91    </member>
  92    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
  93      <summary>Verifies that two doubles are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
  94      <param name="expected">The expected value</param>
  95      <param name="actual">The actual value</param>
  96      <param name="delta">The maximum acceptable difference between the the expected and the actual</param>
  97      <param name="message">The message printed out upon failure</param>
  98    </member>
  99    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
 100      <summary>Verifies that two doubles are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 101      <param name="expected">The expected value</param>
 102      <param name="actual">The actual value</param>
 103      <param name="delta">The maximum acceptable difference between the the expected and the actual</param>
 104    </member>
 105    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
 106      <summary>Verifies that two floats are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 107      <param name="message">The message printed out upon failure</param>
 108      <param name="expected">The expected value</param>
 109      <param name="actual">The actual value</param>
 110      <param name="delta">The maximum acceptable difference between the the expected and the actual</param>
 111    </member>
 112    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
 113      <summary>Verifies that two floats are equal considering a delta. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 114      <param name="expected">The expected value</param>
 115      <param name="actual">The actual value</param>
 116      <param name="delta">The maximum acceptable difference between the the expected and the actual</param>
 117    </member>
 118    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
 119      <summary>Verifies that two decimals are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 120      <param name="message">The message printed out upon failure</param>
 121      <param name="expected">The expected value</param>
 122      <param name="actual">The actual value</param>
 123    </member>
 124    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 125      <summary>Verifies that two decimals are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 126      <param name="expected">The expected value</param>
 127      <param name="actual">The actual value</param>
 128      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
 129      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 130    </member>
 131    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
 132      <summary>Verifies that two decimals are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 133      <param name="expected">The expected value</param>
 134      <param name="actual">The actual value</param>
 135    </member>
 136    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
 137      <summary>Verifies that two ints are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 138      <param name="message">The message printed out upon failure</param>
 139      <param name="expected">The expected value</param>
 140      <param name="actual">The actual value</param>
 141    </member>
 142    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
 143      <summary>Verifies that two ints are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 144      <param name="expected">The expected value</param>
 145      <param name="actual">The actual value</param>
 146      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
 147      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 148    </member>
 149    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
 150      <summary>Verifies that two ints are equal. If they are not equals then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 151      <param name="expected">The expected value</param>
 152      <param name="actual">The actual value</param>
 153    </member>
 154    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
 155      <summary>Verifies that two objects are equal. Two objects are considered equal if both are null, or if both have the same value. All non-numeric types are compared by using the <c>Equals</c> method. If they are not equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 156      <param name="expected">The value that is expected</param>
 157      <param name="actual">The actual value</param>
 158      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
 159      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 160    </member>
 161    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
 162      <summary>Verifies that two objects are equal. Two objects are considered equal if both are null, or if both have the same value. All non-numeric types are compared by using the <c>Equals</c> method. If they are not equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 163      <param name="expected">The value that is expected</param>
 164      <param name="actual">The actual value</param>
 165      <param name="message">The message to display if objects are not equal</param>
 166    </member>
 167    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
 168      <summary>Verifies that two objects are equal. Two objects are considered equal if both are null, or if both have the same value. All non-numeric types are compared by using the <c>Equals</c> method. If they are not equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 169      <param name="expected">The value that is expected</param>
 170      <param name="actual">The actual value</param>
 171    </member>
 172    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
 173      <summary>Asserts that two objects are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 174      <param name="expected">The expected object</param>
 175      <param name="actual">The actual object</param>
 176      <param name="message">The message to be displayed when the two objects are the same object.</param>
 177      <param name="args">Arguments to be used in formatting the message</param>
 178    </member>
 179    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
 180      <summary>Asserts that two objects are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 181      <param name="expected">The expected object</param>
 182      <param name="actual">The actual object</param>
 183      <param name="message">The message to be displayed when the objects are the same</param>
 184    </member>
 185    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
 186      <summary>Asserts that two objects are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 187      <param name="expected">The expected object</param>
 188      <param name="actual">The actual object</param>
 189    </member>
 190    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
 191      <summary>Asserts that two ints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 192      <param name="expected">The expected object</param>
 193      <param name="actual">The actual object</param>
 194      <param name="message">The message to be displayed when the two objects are the same object.</param>
 195      <param name="args">Arguments to be used in formatting the message</param>
 196    </member>
 197    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
 198      <summary>Asserts that two ints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 199      <param name="expected">The expected object</param>
 200      <param name="actual">The actual object</param>
 201      <param name="message">The message to be displayed when the objects are the same</param>
 202    </member>
 203    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
 204      <summary>Asserts that two ints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 205      <param name="expected">The expected object</param>
 206      <param name="actual">The actual object</param>
 207    </member>
 208    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 209      <summary>Asserts that two uints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 210      <param name="expected">The expected object</param>
 211      <param name="actual">The actual object</param>
 212      <param name="message">The message to be displayed when the two objects are the same object.</param>
 213      <param name="args">Arguments to be used in formatting the message</param>
 214    </member>
 215    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
 216      <summary>Asserts that two uints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 217      <param name="expected">The expected object</param>
 218      <param name="actual">The actual object</param>
 219      <param name="message">The message to be displayed when the objects are the same</param>
 220    </member>
 221    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
 222      <summary>Asserts that two uints are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 223      <param name="expected">The expected object</param>
 224      <param name="actual">The actual object</param>
 225    </member>
 226    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 227      <summary>Asserts that two decimals are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 228      <param name="expected">The expected object</param>
 229      <param name="actual">The actual object</param>
 230      <param name="message">The message to be displayed when the two objects are the same object.</param>
 231      <param name="args">Arguments to be used in formatting the message</param>
 232    </member>
 233    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
 234      <summary>Asserts that two decimals are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 235      <param name="expected">The expected object</param>
 236      <param name="actual">The actual object</param>
 237      <param name="message">The message to be displayed when the objects are the same</param>
 238    </member>
 239    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
 240      <summary>Asserts that two decimals are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 241      <param name="expected">The expected object</param>
 242      <param name="actual">The actual object</param>
 243    </member>
 244    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
 245      <summary>Asserts that two floats are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 246      <param name="expected">The expected object</param>
 247      <param name="actual">The actual object</param>
 248      <param name="message">The message to be displayed when the two objects are the same object.</param>
 249      <param name="args">Arguments to be used in formatting the message</param>
 250    </member>
 251    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
 252      <summary>Asserts that two floats are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 253      <param name="expected">The expected object</param>
 254      <param name="actual">The actual object</param>
 255      <param name="message">The message to be displayed when the objects are the same</param>
 256    </member>
 257    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
 258      <summary>Asserts that two floats are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 259      <param name="expected">The expected object</param>
 260      <param name="actual">The actual object</param>
 261    </member>
 262    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
 263      <summary>Asserts that two doubles are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 264      <param name="expected">The expected object</param>
 265      <param name="actual">The actual object</param>
 266      <param name="message">The message to be displayed when the two objects are the same object.</param>
 267      <param name="args">Arguments to be used in formatting the message</param>
 268    </member>
 269    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
 270      <summary>Asserts that two doubles are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 271      <param name="expected">The expected object</param>
 272      <param name="actual">The actual object</param>
 273      <param name="message">The message to be displayed when the objects are the same</param>
 274    </member>
 275    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
 276      <summary>Asserts that two doubles are not equal. If they are equal an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 277      <param name="expected">The expected object</param>
 278      <param name="actual">The actual object</param>
 279    </member>
 280    <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
 281      <summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 282      <param name="message">The message to be printed when the two objects are not the same object.</param>
 283      <param name="expected">The expected object</param>
 284      <param name="actual">The actual object</param>
 285    </member>
 286    <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
 287      <summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 288      <param name="expected">The expected object</param>
 289      <param name="actual">The actual object</param>
 290      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
 291      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 292    </member>
 293    <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object)">
 294      <summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 295      <param name="expected">The expected object</param>
 296      <param name="actual">The actual object</param>
 297    </member>
 298    <member name="M:MbUnit.Framework.Assert.AreValueEqual(System.Reflection.PropertyInfo,System.Object,System.Object,System.Object[])">
 299      <summary>Verifies that the value of the property described by <paramref name="pi" /> is the same in both ojects.</summary>
 300      <param name="pi">Property describing the value to test</param>
 301      <param name="expected">Reference object</param>
 302      <param name="actual">Actual object</param>
 303      <param name="indices">Index of the property.</param>
 304    </member>
 305    <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32)">
 306      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 307    </member>
 308    <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String)">
 309      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 310    </member>
 311    <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String,System.Object[])">
 312      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 313    </member>
 314    <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16)">
 315      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 316    </member>
 317    <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String)">
 318      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 319    </member>
 320    <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String,System.Object[])">
 321      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 322    </member>
 323    <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte)">
 324      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 325    </member>
 326    <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String)">
 327      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 328    </member>
 329    <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String,System.Object[])">
 330      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 331    </member>
 332    <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64)">
 333      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 334    </member>
 335    <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String)">
 336      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 337    </member>
 338    <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String,System.Object[])">
 339      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 340    </member>
 341    <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double)">
 342      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 343    </member>
 344    <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String)">
 345      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 346    </member>
 347    <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String,System.Object[])">
 348      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 349    </member>
 350    <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single)">
 351      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 352    </member>
 353    <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String)">
 354      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 355    </member>
 356    <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String,System.Object[])">
 357      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 358    </member>
 359    <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable)">
 360      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 361    </member>
 362    <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String)">
 363      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 364    </member>
 365    <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String,System.Object[])">
 366      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
 367    </member>
 368    <member name="M:MbUnit.Framework.Assert.Equals(System.Object,System.Object)">
 369      <summary>The Equals method throws an AssertionException. This is done to make sure there is no mistake by calling this function.</summary>
 370      <param name="a" />
 371      <param name="b" />
 372    </member>
 373    <member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
 374      <summary>Throws an <see cref="T:MbUnit.Framework.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
 375      <param name="format">The format of the message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
 376      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 377    </member>
 378    <member name="M:MbUnit.Framework.Assert.Fail(System.String)">
 379      <summary>Throws an <see cref="T:MbUnit.Framework.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
 380      <param name="message">The message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
 381    </member>
 382    <member name="M:MbUnit.Framework.Assert.Fail">
 383      <summary>Throws an <see cref="T:MbUnit.Framework.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
 384    </member>
 385    <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
 386      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 387      <param name="arg1">The first value, expected to be greater</param>
 388      <param name="arg2">The second value, expected to be less</param>
 389      <param name="message">The message that will be displayed on failure</param>
 390      <param name="args">Arguments to be used in formatting the message</param>
 391    </member>
 392    <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
 393      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 394      <param name="arg1">The first value, expected to be greater</param>
 395      <param name="arg2">The second value, expected to be less</param>
 396      <param name="message">The message that will be displayed on failure</param>
 397    </member>
 398    <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
 399      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 400      <param name="arg1">The first value, expected to be greater</param>
 401      <param name="arg2">The second value, expected to be less</param>
 402    </member>
 403    <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
 404      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 405      <param name="arg1">The first value, expected to be greater</param>
 406      <param name="arg2">The second value, expected to be less</param>
 407      <param name="message">The message that will be displayed on failure</param>
 408      <param name="args">Arguments to be used in formatting the message</param>
 409    </member>
 410    <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
 411      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 412      <param name="arg1">The first value, expected to be greater</param>
 413      <param name="arg2">The second value, expected to be less</param>
 414      <param name="message">The message that will be displayed on failure</param>
 415    </member>
 416    <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
 417      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 418      <param name="arg1">The first value, expected to be greater</param>
 419      <param name="arg2">The second value, expected to be less</param>
 420    </member>
 421    <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
 422      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 423      <param name="arg1">The first value, expected to be greater</param>
 424      <param name="arg2">The second value, expected to be less</param>
 425      <param name="message">The message that will be displayed on failure</param>
 426      <param name="args">Arguments to be used in formatting the message</param>
 427    </member>
 428    <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
 429      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 430      <param name="arg1">The first value, expected to be greater</param>
 431      <param name="arg2">The second value, expected to be less</param>
 432      <param name="message">The message that will be displayed on failure</param>
 433    </member>
 434    <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
 435      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 436      <param name="arg1">The first value, expected to be greater</param>
 437      <param name="arg2">The second value, expected to be less</param>
 438    </member>
 439    <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
 440      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 441      <param name="arg1">The first value, expected to be greater</param>
 442      <param name="arg2">The second value, expected to be less</param>
 443      <param name="message">The message that will be displayed on failure</param>
 444      <param name="args">Arguments to be used in formatting the message</param>
 445    </member>
 446    <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
 447      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 448      <param name="arg1">The first value, expected to be greater</param>
 449      <param name="arg2">The second value, expected to be less</param>
 450      <param name="message">The message that will be displayed on failure</param>
 451    </member>
 452    <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
 453      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 454      <param name="arg1">The first value, expected to be greater</param>
 455      <param name="arg2">The second value, expected to be less</param>
 456    </member>
 457    <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
 458      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 459      <param name="arg1">The first value, expected to be greater</param>
 460      <param name="arg2">The second value, expected to be less</param>
 461      <param name="message">The message that will be displayed on failure</param>
 462      <param name="args">Arguments to be used in formatting the message</param>
 463    </member>
 464    <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
 465      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 466      <param name="arg1">The first value, expected to be greater</param>
 467      <param name="arg2">The second value, expected to be less</param>
 468      <param name="message">The message that will be displayed on failure</param>
 469    </member>
 470    <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double)">
 471      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 472      <param name="arg1">The first value, expected to be greater</param>
 473      <param name="arg2">The second value, expected to be less</param>
 474    </member>
 475    <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
 476      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 477      <param name="arg1">The first value, expected to be greater</param>
 478      <param name="arg2">The second value, expected to be less</param>
 479      <param name="message">The message that will be displayed on failure</param>
 480      <param name="args">Arguments to be used in formatting the message</param>
 481    </member>
 482    <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
 483      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 484      <param name="arg1">The first value, expected to be greater</param>
 485      <param name="arg2">The second value, expected to be less</param>
 486      <param name="message">The message that will be displayed on failure</param>
 487    </member>
 488    <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single)">
 489      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 490      <param name="arg1">The first value, expected to be greater</param>
 491      <param name="arg2">The second value, expected to be less</param>
 492    </member>
 493    <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
 494      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 495      <param name="arg1">The first value, expected to be greater</param>
 496      <param name="arg2">The second value, expected to be less</param>
 497      <param name="message">The message that will be displayed on failure</param>
 498      <param name="args">Arguments to be used in formatting the message</param>
 499    </member>
 500    <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
 501      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 502      <param name="arg1">The first value, expected to be greater</param>
 503      <param name="arg2">The second value, expected to be less</param>
 504      <param name="message">The message that will be displayed on failure</param>
 505    </member>
 506    <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
 507      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 508      <param name="arg1">The first value, expected to be greater</param>
 509      <param name="arg2">The second value, expected to be less</param>
 510    </member>
 511    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32)">
 512      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 513    </member>
 514    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String)">
 515      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 516    </member>
 517    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
 518      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 519    </member>
 520    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16)">
 521      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 522    </member>
 523    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String)">
 524      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 525    </member>
 526    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
 527      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 528    </member>
 529    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte)">
 530      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 531    </member>
 532    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String)">
 533      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 534    </member>
 535    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
 536      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 537    </member>
 538    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64)">
 539      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 540    </member>
 541    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String)">
 542      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 543    </member>
 544    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
 545      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 546    </member>
 547    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double)">
 548      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 549    </member>
 550    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String)">
 551      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 552    </member>
 553    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String,System.Object[])">
 554      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 555    </member>
 556    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single)">
 557      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 558    </member>
 559    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String)">
 560      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 561    </member>
 562    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String,System.Object[])">
 563      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
 564    </member>
 565    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable)">
 566      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 567    </member>
 568    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String)">
 569      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 570    </member>
 571    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
 572      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 573    </member>
 574    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32)">
 575      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 576    </member>
 577    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String)">
 578      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 579    </member>
 580    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String,System.Object[])">
 581      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 582    </member>
 583    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16)">
 584      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 585    </member>
 586    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String)">
 587      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 588    </member>
 589    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String,System.Object[])">
 590      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 591    </member>
 592    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte)">
 593      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 594    </member>
 595    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String)">
 596      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 597    </member>
 598    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String,System.Object[])">
 599      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 600    </member>
 601    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64)">
 602      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 603    </member>
 604    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String)">
 605      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 606    </member>
 607    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String,System.Object[])">
 608      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 609    </member>
 610    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double)">
 611      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 612    </member>
 613    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String)">
 614      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 615    </member>
 616    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String,System.Object[])">
 617      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 618    </member>
 619    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single)">
 620      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 621    </member>
 622    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String)">
 623      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 624    </member>
 625    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String,System.Object[])">
 626      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 627    </member>
 628    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable)">
 629      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 630    </member>
 631    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String)">
 632      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 633    </member>
 634    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String,System.Object[])">
 635      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
 636    </member>
 637    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary)">
 638      <summary>Asserts that <paramref name="test" /> is in the dic <paramref name="list" />.</summary>
 639    </member>
 640    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary,System.String)">
 641      <summary>Asserts that <paramref name="test" /> is in the dic <paramref name="list" />.</summary>
 642    </member>
 643    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList)">
 644      <summary>Asserts that <paramref name="test" /> is in the list <paramref name="list" />.</summary>
 645    </member>
 646    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList,System.String)">
 647      <summary>Asserts that <paramref name="test" /> is in the list <paramref name="list" />.</summary>
 648    </member>
 649    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable,System.String)">
 650      <summary>Asserts that <paramref name="test" /> is in the enumerable collection <paramref name="enumerable" />.</summary>
 651    </member>
 652    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable)">
 653      <summary>Asserts that <paramref name="test" /> is in the enumerable collection <paramref name="enumerable" />.</summary>
 654    </member>
 655    <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
 656      <summary>Asserts that an object may be assigned a value of a given Type.</summary>
 657      <param name="expected">The expected Type.</param>
 658      <param name="actual">The object under examination</param>
 659    </member>
 660    <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
 661      <summary>Asserts that an object may be assigned a value of a given Type.</summary>
 662      <param name="expected">The expected Type.</param>
 663      <param name="actual">The object under examination</param>
 664      <param name="message">The messge to display in case of failure</param>
 665    </member>
 666    <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
 667      <summary>Asserts that an object may be assigned a value of a given Type.</summary>
 668      <param name="expected">The expected Type.</param>
 669      <param name="actual">The object under examination</param>
 670      <param name="message">The message to display in case of failure</param>
 671      <param name="args">Array of objects to be used in formatting the message</param>
 672    </member>
 673    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
 674      <summary>Assert that a string is empty - that is equal to string.Empty</summary>
 675      <param name="aString">The string to be tested</param>
 676      <param name="message">The message to be displayed on failure</param>
 677      <param name="args">Arguments to be used in formatting the message</param>
 678    </member>
 679    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String)">
 680      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
 681      <param name="aString">The string to be tested</param>
 682      <param name="message">The message to be displayed on failure</param>
 683    </member>
 684    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String)">
 685      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
 686      <param name="aString">The string to be tested</param>
 687    </member>
 688    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
 689      <summary>Assert that an array, list or other collection is empty</summary>
 690      <param name="collection">An array, list or other collection implementing ICollection</param>
 691      <param name="message">The message to be displayed on failure</param>
 692      <param name="args">Arguments to be used in formatting the message</param>
 693    </member>
 694    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
 695      <summary>Assert that an array, list or other collection is empty</summary>
 696      <param name="collection">An array, list or other collection implementing ICollection</param>
 697      <param name="message">The message to be displayed on failure</param>
 698    </member>
 699    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
 700      <summary>Assert that an array,list or other collection is empty</summary>
 701      <param name="collection">An array, list or other collection implementing ICollection</param>
 702    </member>
 703    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
 704      <summary>Asserts that a condition is false. If the condition is true the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
 705      <param name="condition">The evaluated condition</param>
 706      <param name="format">The format of the message to display if the condition is false, containing zero or more format items.</param>
 707      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 708    </member>
 709    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)">
 710      <summary>Asserts that a condition is false. If the condition is true the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
 711      <param name="condition">The evaluated condition</param>
 712    </member>
 713    <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
 714      <summary>Asserts that an object is an instance of a given type.</summary>
 715      <param name="expected">The expected Type</param>
 716      <param name="actual">The object being examined</param>
 717    </member>
 718    <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
 719      <summary>Asserts that an object is an instance of a given type.</summary>
 720      <param name="expected">The expected Type</param>
 721      <param name="actual">The object being examined</param>
 722      <param name="message">A message to display in case of failure</param>
 723    </member>
 724    <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
 725      <summary>Asserts that an object is an instance of a given type.</summary>
 726      <param name="expected">The expected Type</param>
 727      <param name="actual">The object being examined</param>
 728      <param name="message">A message to display in case of failure</param>
 729      <param name="args">An array of objects to be used in formatting the message</param>
 730    </member>
 731    <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
 732      <summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 733      <param name="aDouble">The value that is to be tested</param>
 734      <param name="message">The message to be displayed when the object is not null</param>
 735      <param name="args">Arguments to be used in formatting the message</param>
 736    </member>
 737    <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String)">
 738      <summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 739      <param name="aDouble">The object that is to be tested</param>
 740      <param name="message">The message to be displayed when the object is not null</param>
 741    </member>
 742    <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double)">
 743      <summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 744      <param name="aDouble">The object that is to be tested</param>
 745    </member>
 746    <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
 747      <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
 748      <param name="expected">The expected Type.</param>
 749      <param name="actual">The object under examination</param>
 750    </member>
 751    <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
 752      <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
 753      <param name="expected">The expected Type.</param>
 754      <param name="actual">The object under examination</param>
 755      <param name="message">The messge to display in case of failure</param>
 756    </member>
 757    <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
 758      <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
 759      <param name="expected">The expected Type.</param>
 760      <param name="actual">The object under examination</param>
 761      <param name="message">The message to display in case of failure</param>
 762      <param name="args">Array of objects to be used in formatting the message</param>
 763    </member>
 764    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
 765      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
 766      <param name="aString">The string to be tested</param>
 767      <param name="message">The message to be displayed on failure</param>
 768      <param name="args">Arguments to be used in formatting the message</param>
 769    </member>
 770    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
 771      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
 772      <param name="aString">The string to be tested</param>
 773      <param name="message">The message to be displayed on failure</param>
 774    </member>
 775    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String)">
 776      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
 777      <param name="aString">The string to be tested</param>
 778    </member>
 779    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
 780      <summary>Assert that an array, list or other collection is empty</summary>
 781      <param name="collection">An array, list or other collection implementing ICollection</param>
 782      <param name="message">The message to be displayed on failure</param>
 783      <param name="args">Arguments to be used in formatting the message</param>
 784    </member>
 785    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
 786      <summary>Assert that an array, list or other collection is empty</summary>
 787      <param name="collection">An array, list or other collection implementing ICollection</param>
 788      <param name="message">The message to be displayed on failure</param>
 789    </member>
 790    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
 791      <summary>Assert that an array,list or other collection is empty</summary>
 792      <param name="collection">An array, list or other collection implementing ICollection</param>
 793    </member>
 794    <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
 795      <summary>Asserts that an object is not an instance of a given type.</summary>
 796      <param name="expected">The expected Type</param>
 797      <param name="actual">The object being examined</param>
 798    </member>
 799    <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
 800      <summary>Asserts that an object is not an instance of a given type.</summary>
 801      <param name="expected">The expected Type</param>
 802      <param name="actual">The object being examined</param>
 803      <param name="message">A message to display in case of failure</param>
 804    </member>
 805    <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
 806      <summary>Asserts that an object is not an instance of a given type.</summary>
 807      <param name="expected">The expected Type</param>
 808      <param name="actual">The object being examined</param>
 809      <param name="message">A message to display in case of failure</param>
 810      <param name="args">An array of objects to be used in formatting the message</param>
 811    </member>
 812    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
 813      <summary>Verifies that the object that is passed in is not equal to <code>null</code> If the object is not <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 814      <param name="anObject">The object that is to be tested</param>
 815      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
 816      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 817    </member>
 818    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
 819      <summary>Verifies that the object that is passed in is not equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown with the message that is passed in.</summary>
 820      <param name="anObject">The object that is to be tested</param>
 821      <param name="message">The message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
 822    </member>
 823    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object)">
 824      <summary>Verifies that the object that is passed in is not equal to <code>null</code> If the object is not <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 825      <param name="anObject">The object that is to be tested</param>
 826    </member>
 827    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
 828      <summary>Verifies that the object that is passed in is equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 829      <param name="anObject">The object that is to be tested</param>
 830      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
 831      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 832    </member>
 833    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String)">
 834      <summary>Verifies that the object that is passed in is equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown with the message that is passed in.</summary>
 835      <param name="anObject">The object that is to be tested</param>
 836      <param name="message">The message to initialize the <see cref="T:MbUnit.Framework.AssertionException" /> with.</param>
 837    </member>
 838    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object)">
 839      <summary>Verifies that the object that is passed in is equal to <code>null</code> If the object is <code>null</code> then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 840      <param name="anObject">The object that is to be tested</param>
 841    </member>
 842    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
 843      <summary>Asserts that a condition is true. If the condition is false the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
 844      <param name="condition">The evaluated condition</param>
 845      <param name="format">The format of the message to display if the condition is false, containing zero or more format items.</param>
 846      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
 847    </member>
 848    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)">
 849      <summary>Asserts that a condition is true. If the condition is false the method throws an <see cref="T:MbUnit.Framework.AssertionException" />.</summary>
 850      <param name="condition">The evaluated condition</param>
 851    </member>
 852    <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
 853      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 854      <param name="arg1">The first value, expected to be less</param>
 855      <param name="arg2">The second value, expected to be greater</param>
 856      <param name="message">The message that will be displayed on failure</param>
 857      <param name="args">Arguments to be used in formatting the message</param>
 858    </member>
 859    <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
 860      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 861      <param name="arg1">The first value, expected to be less</param>
 862      <param name="arg2">The second value, expected to be greater</param>
 863      <param name="message">The message that will be displayed on failure</param>
 864    </member>
 865    <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32)">
 866      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 867      <param name="arg1">The first value, expected to be less</param>
 868      <param name="arg2">The second value, expected to be greater</param>
 869    </member>
 870    <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
 871      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 872      <param name="arg1">The first value, expected to be less</param>
 873      <param name="arg2">The second value, expected to be greater</param>
 874      <param name="message">The message that will be displayed on failure</param>
 875      <param name="args">Arguments to be used in formatting the message</param>
 876    </member>
 877    <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
 878      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 879      <param name="arg1">The first value, expected to be less</param>
 880      <param name="arg2">The second value, expected to be greater</param>
 881      <param name="message">The message that will be displayed on failure</param>
 882    </member>
 883    <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
 884      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 885      <param name="arg1">The first value, expected to be less</param>
 886      <param name="arg2">The second value, expected to be greater</param>
 887    </member>
 888    <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
 889      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 890      <param name="arg1">The first value, expected to be less</param>
 891      <param name="arg2">The second value, expected to be greater</param>
 892      <param name="message">The message that will be displayed on failure</param>
 893      <param name="args">Arguments to be used in formatting the message</param>
 894    </member>
 895    <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
 896      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 897      <param name="arg1">The first value, expected to be less</param>
 898      <param name="arg2">The second value, expected to be greater</param>
 899      <param name="message">The message that will be displayed on failure</param>
 900    </member>
 901    <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
 902      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 903      <param name="arg1">The first value, expected to be less</param>
 904      <param name="arg2">The second value, expected to be greater</param>
 905    </member>
 906    <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
 907      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 908      <param name="arg1">The first value, expected to be less</param>
 909      <param name="arg2">The second value, expected to be greater</param>
 910      <param name="message">The message that will be displayed on failure</param>
 911      <param name="args">Arguments to be used in formatting the message</param>
 912    </member>
 913    <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
 914      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 915      <param name="arg1">The first value, expected to be less</param>
 916      <param name="arg2">The second value, expected to be greater</param>
 917      <param name="message">The message that will be displayed on failure</param>
 918    </member>
 919    <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64)">
 920      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 921      <param name="arg1">The first value, expected to be less</param>
 922      <param name="arg2">The second value, expected to be greater</param>
 923    </member>
 924    <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
 925      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 926      <param name="arg1">The first value, expected to be less</param>
 927      <param name="arg2">The second value, expected to be greater</param>
 928      <param name="message">The message that will be displayed on failure</param>
 929      <param name="args">Arguments to be used in formatting the message</param>
 930    </member>
 931    <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
 932      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 933      <param name="arg1">The first value, expected to be less</param>
 934      <param name="arg2">The second value, expected to be greater</param>
 935      <param name="message">The message that will be displayed on failure</param>
 936    </member>
 937    <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double)">
 938      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 939      <param name="arg1">The first value, expected to be less</param>
 940      <param name="arg2">The second value, expected to be greater</param>
 941    </member>
 942    <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
 943      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 944      <param name="arg1">The first value, expected to be less</param>
 945      <param name="arg2">The second value, expected to be greater</param>
 946      <param name="message">The message that will be displayed on failure</param>
 947      <param name="args">Arguments to be used in formatting the message</param>
 948    </member>
 949    <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
 950      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 951      <param name="arg1">The first value, expected to be less</param>
 952      <param name="arg2">The second value, expected to be greater</param>
 953      <param name="message">The message that will be displayed on failure</param>
 954    </member>
 955    <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single)">
 956      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 957      <param name="arg1">The first value, expected to be less</param>
 958      <param name="arg2">The second value, expected to be greater</param>
 959    </member>
 960    <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
 961      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 962      <param name="arg1">The first value, expected to be less</param>
 963      <param name="arg2">The second value, expected to be greater</param>
 964      <param name="message">The message that will be displayed on failure</param>
 965      <param name="args">Arguments to be used in formatting the message</param>
 966    </member>
 967    <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
 968      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 969      <param name="arg1">The first value, expected to be less</param>
 970      <param name="arg2">The second value, expected to be greater</param>
 971      <param name="message">The message that will be displayed on failure</param>
 972    </member>
 973    <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
 974      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Framework.AssertionException" /> is thrown.</summary>
 975      <param name="arg1">The first value, expected to be less</param>
 976      <param name="arg2">The second value, expected to be greater</param>
 977    </member>
 978    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32)">
 979      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 980    </member>
 981    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String)">
 982      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 983    </member>
 984    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
 985      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 986    </member>
 987    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16)">
 988      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 989    </member>
 990    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String)">
 991      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 992    </member>
 993    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
 994      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 995    </member>
 996    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte)">
 997      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
 998    </member>
 999    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String)">
1000      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1001    </member>
1002    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
1003      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1004    </member>
1005    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64)">
1006      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1007    </member>
1008    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String)">
1009      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1010    </member>
1011    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
1012      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1013    </member>
1014    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double)">
1015      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1016    </member>
1017    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String)">
1018      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1019    </member>
1020    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String,System.Object[])">
1021      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1022    </member>
1023    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single)">
1024      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1025    </member>
1026    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String)">
1027      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1028    </member>
1029    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String,System.Object[])">
1030      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1031    </member>
1032    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable)">
1033      <summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
1034    </member>
1035    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String)">
1036      <summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
1037    </member>
1038    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1039      <summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
1040    </member>
1041    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32)">
1042      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1043    </member>
1044    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String)">
1045      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1046    </member>
1047    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String,System.Object[])">
1048      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1049    </member>
1050    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16)">
1051      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1052    </member>
1053    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String)">
1054      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1055    </member>
1056    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String,System.Object[])">
1057      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1058    </member>
1059    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte)">
1060      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1061    </member>
1062    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String)">
1063      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1064    </member>
1065    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String,System.Object[])">
1066      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1067    </member>
1068    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64)">
1069      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1070    </member>
1071    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String)">
1072      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1073    </member>
1074    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String,System.Object[])">
1075      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1076    </member>
1077    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double)">
1078      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1079    </member>
1080    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String)">
1081      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1082    </member>
1083    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String,System.Object[])">
1084      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1085    </member>
1086    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single)">
1087      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1088    </member>
1089    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String)">
1090      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1091    </member>
1092    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String,System.Object[])">
1093      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1094    </member>
1095    <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable)">
1096      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1097    </member>
1098    <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String)">
1099      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1100    </member>
1101    <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1102      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
1103    </member>
1104    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int32,System.Int32,System.Int32)">
1105      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1106    </member>
1107    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int16,System.Int16,System.Int16)">
1108      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1109    </member>
1110    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Byte,System.Byte,System.Byte)">
1111      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1112    </member>
1113    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int64,System.Int64,System.Int64)">
1114      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1115    </member>
1116    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Double,System.Double,System.Double)">
1117      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1118    </member>
1119    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Single,System.Single,System.Single)">
1120      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1121    </member>
1122    <member name="M:MbUnit.Framework.Assert.NotBetween(System.IComparable,System.IComparable,System.IComparable)">
1123      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
1124    </member>
1125    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary,System.String)">
1126      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the dic <paramref name="list" />.</summary>
1127    </member>
1128    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary)">
1129      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the dic <paramref name="list" />.</summary>
1130    </member>
1131    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList,System.String)">
1132      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the list <paramref name="list" />.</summary>
1133    </member>
1134    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList)">
1135      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the list <paramref name="list" />.</summary>
1136    </member>
1137    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable,System.String)">
1138      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the enumerable collection <paramref name="enumerable" />.</summary>
1139    </member>
1140    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable)">
1141      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the enumerable collection <paramref name="enumerable" />.</summary>
1142    </member>
1143    <member name="M:MbUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
1144      <summary>override the default ReferenceEquals to throw an AssertionException. This implementation makes sure there is no mistake in calling this function as part of Assert.</summary>
1145      <param name="a" />
1146      <param name="b" />
1147    </member>
1148    <member name="T:MbUnit.Framework.AssertionException">
1149      <summary>The exception type used to signal MbUnit assertion failures.</summary>
1150    </member>
1151    <member name="T:MbUnit.Framework.AuthorAttribute">
1152      <summary>Associates the author's name and email address with a test fixture, test method, test parameter or other test component.</summary>
1153    </member>
1154    <member name="P:MbUnit.Framework.AuthorAttribute.AuthorEmail">
1155      <summary>Gets or sets the author's email address or an empty string if none.</summary>
1156    </member>
1157    <member name="P:MbUnit.Framework.AuthorAttribute.AuthorHomepage">
1158      <summary>Gets or sets the author's homepage or an empty string if none.</summary>
1159    </member>
1160    <member name="P:MbUnit.Framework.AuthorAttribute.AuthorName">
1161      <summary>Gets or sets the author's name.</summary>
1162    </member>
1163    <member name="M:MbUnit.Framework.AuthorAttribute.Apply(Gallio.Model.MetadataMap)">
1164      <summary>Applies metadata contributions the metadata map of a test component.</summary>
1165      <param name="metadata">The metadata map</param>
1166    </member>
1167    <member name="T:MbUnit.Framework.BindAttribute">
1168      <summary>The bind attribute overrides the default binding rules for a test parameter by specifying a different data source, a binding path or an index. At most one such attribute may appear on any given test parameter.</summary>
1169    </member>
1170    <member name="P:MbUnit.Framework.BindAttribute.Index">
1171      <summary>Gets the binding index, or null if none.</summary>
1172    </member>
1173    <member name="P:MbUnit.Framework.BindAttribute.Path">
1174      <summary>Gets the binding path, or null if none.</summary>
1175    </member>
1176    <member name="P:MbUnit.Framework.BindAttribute.Source">
1177      <summary>
1178        <para> Gets or sets the name of the data source to bind, or null to bind the default data source for the test parameter. </para>
1179        <para> The default source for a test parameter is the anonymous data source defined within the scope of the test parameter or by its enclosing test. </para>
1180      </summary>
1181    </member>
1182    <member name="M:MbUnit.Framework.BindAttribute.DecorateTestParameter(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ISlotInfo)">
1183      <summary>
1184        <para> Applies decorations to a <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" />. </para>
1185        <para> A typical use of this method is to augment the test parameter with additional metadata or to add additional behaviors to the test parameter. </para>
1186      </summary>
1187      <param name="slotScope">The slot scope</param>
1188      <param name="slot">The slot</param>
1189    </member>
1190    <member name="T:MbUnit.Framework.CategoryAttribute">
1191      <summary>Associates a category name with a test fixture, test method, test parameter or other test component. The category name can be used to classify tests and build test suites of related tests.</summary>
1192    </member>
1193    <member name="P:MbUnit.Framework.CategoryAttribute.CategoryName">
1194      <summary>Gets the category name.</summary>
1195    </member>
1196    <member name="M:MbUnit.Framework.CategoryAttribute.Apply(Gallio.Model.MetadataMap)">
1197      <summary>Applies metadata contributions the metadata map of a test component.</summary>
1198      <param name="metadata">The metadata map</param>
1199    </member>
1200    <member name="T:MbUnit.Framework.CollectionAssert">
1201      <summary>Assertion helper for the <see cref="T:System.Collections.ICollection" /> class. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1202    </member>
1203    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type)">
1204      <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
1205      <param name="collection">ICollection of objects to be considered</param>
1206      <param name="expectedType">System.Type that all objects in collection must be instances of</param>
1207    </member>
1208    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String)">
1209      <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
1210      <param name="collection">ICollection of objects to be considered</param>
1211      <param name="expectedType">System.Type that all objects in collection must be instances of</param>
1212      <param name="message">The message that will be displayed on failure</param>
1213    </member>
1214    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String,System.Object[])">
1215      <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
1216      <param name="collection">ICollection of objects to be considered</param>
1217      <param name="expectedType">System.Type that all objects in collection must be instances of</param>
1218      <param name="message">The message that will be displayed on failure</param>
1219      <param name="args">Arguments to be used in formatting the message</param>
1220    </member>
1221    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection)">
1222      <summary>Asserts that all items contained in collection are not equal to null.</summary>
1223      <param name="collection">ICollection of objects to be considered</param>
1224    </member>
1225    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String)">
1226      <summary>Asserts that all items contained in collection are not equal to null.</summary>
1227      <param name="collection">ICollection of objects to be considered</param>
1228      <param name="message">The message that will be displayed on failure</param>
1229    </member>
1230    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String,System.Object[])">
1231      <summary>Asserts that all items contained in collection are not equal to null.</summary>
1232      <param name="collection">ICollection of objects to be considered</param>
1233      <param name="message">The message that will be displayed on failure</param>
1234      <param name="args">Arguments to be used in formatting the message</param>
1235    </member>
1236    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection)">
1237      <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
1238      <param name="collection">ICollection of objects to be considered</param>
1239    </member>
1240    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String)">
1241      <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
1242      <param name="collection">ICollection of objects to be considered</param>
1243      <param name="message">The message that will be displayed on failure</param>
1244    </member>
1245    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String,System.Object[])">
1246      <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
1247      <param name="collection">ICollection of objects to be considered</param>
1248      <param name="message">The message that will be displayed on failure</param>
1249      <param name="args">Arguments to be used in formatting the message</param>
1250    </member>
1251    <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Collections.ICollection,System.Collections.ICollection)">
1252      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
1253      <param name="expected">Instance containing the expected value.</param>
1254      <param name="actual">Instance containing the tested value.</param>
1255    </member>
1256    <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Int32,System.Collections.ICollection)">
1257      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
1258      <param name="expected">Expected value.</param>
1259      <param name="actual">Instance containing the tested value.</param>
1260    </member>
1261    <member name="M:MbUnit.Framework.CollectionAssert.AreElementsEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
1262      <summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
1263      <param name="expected">Expected value.</param>
1264      <param name="actual">Instance containing the tested value.</param>
1265    </member>
1266    <member name="M:MbUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection)">
1267      <summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
1268      <param name="expected">Expected value.</param>
1269      <param name="actual">Instance containing the tested value.</param>
1270    </member>
1271    <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
1272      <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
1273      <param name="expected">The first ICollection of objects to be considered</param>
1274      <param name="actual">The second ICollection of objects to be considered</param>
1275    </member>
1276    <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
1277      <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
1278      <param name="expected">The first ICollection of objects to be considered</param>
1279      <param name="actual">The second ICollection of objects to be considered</param>
1280      <param name="message">The message that will be displayed on failure</param>
1281    </member>
1282    <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
1283      <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
1284      <param name="expected">The first ICollection of objects to be considered</param>
1285      <param name="actual">The second ICollection of objects to be considered</param>
1286      <param name="message">The message that will be displayed on failure</param>
1287      <param name="args">Arguments to be used in formatting the message</param>
1288    </member>
1289    <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Collections.ICollection,System.Collections.ICollection)">
1290      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
1291      <param name="expected">Instance containing the expected value.</param>
1292      <param name="actual">Instance containing the tested value.</param>
1293    </member>
1294    <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Boolean,System.Collections.ICollection)">
1295      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
1296      <param name="expected">Expected value.</param>
1297      <param name="actual">Instance containing the tested value.</param>
1298    </member>
1299    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection)">
1300      <summary>Asserts that expected and actual are not exactly equal.</summary>
1301      <param name="expected">The first ICollection of objects to be considered</param>
1302      <param name="actual">The second ICollection of objects to be considered</param>
1303    </member>
1304    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
1305      <summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
1306      <param name="expected">The first ICollection of objects to be considered</param>
1307      <param name="actual">The second ICollection of objects to be considered</param>
1308      <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
1309    </member>
1310    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
1311      <summary>Asserts that expected and actual are not exactly equal.</summary>
1312      <param name="expected">The first ICollection of objects to be considered</param>
1313      <param name="actual">The second ICollection of objects to be considered</param>
1314      <param name="message">The message that will be displayed on failure</param>
1315    </member>
1316    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
1317      <summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
1318      <param name="expected">The first ICollection of objects to be considered</param>
1319      <param name="actual">The second ICollection of objects to be considered</param>
1320      <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
1321      <param name="message">The message that will be displayed on failure</param>
1322    </member>
1323    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
1324      <summary>Asserts that expected and actual are not exactly equal.</summary>
1325      <param name="expected">The first ICollection of objects to be considered</param>
1326      <param name="actual">The second ICollection of objects to be considered</param>
1327      <param name="message">The message that will be displayed on failure</param>
1328      <param name="args">Arguments to be used in formatting the message</param>
1329    </member>
1330    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
1331      <summary>Asserts that expected and actual are not exactly equal. If comparer is not null then it will be used to compare the objects.</summary>
1332      <param name="expected">The first ICollection of objects to be considered</param>
1333      <param name="actual">The second ICollection of objects to be considered</param>
1334      <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
1335      <param name="message">The message that will be displayed on failure</param>
1336      <param name="args">Arguments to be used in formatting the message</param>
1337    </member>
1338    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
1339      <summary>Asserts that expected and actual are not equivalent.</summary>
1340      <param name="expected">The first ICollection of objects to be considered</param>
1341      <param name="actual">The second ICollection of objects to be considered</param>
1342    </member>
1343    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
1344      <summary>Asserts that expected and actual are not equivalent.</summary>
1345      <param name="expected">The first ICollection of objects to be considered</param>
1346      <param name="actual">The second ICollection of objects to be considered</param>
1347      <param name="message">The message that will be displayed on failure</param>
1348    </member>
1349    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
1350      <summary>Asserts that expected and actual are not equivalent.</summary>
1351      <param name="expected">The first ICollection of objects to be considered</param>
1352      <param name="actual">The second ICollection of objects to be considered</param>
1353      <param name="message">The message that will be displayed on failure</param>
1354      <param name="args">Arguments to be used in formatting the message</param>
1355    </member>
1356    <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Collections.ICollection,System.Collections.ICollection)">
1357      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
1358      <param name="expected">Instance containing the expected value.</param>
1359      <param name="actual">Instance containing the tested value.</param>
1360    </member>
1361    <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Object,System.Collections.ICollection)">
1362      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
1363      <param name="expected">Expected value.</param>
1364      <param name="actual">Instance containing the tested value.</param>
1365    </member>
1366    <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object)">
1367      <summary>Asserts that collection contains actual as an item.</summary>
1368      <param name="collection">ICollection of objects to be considered</param>
1369      <param name="actual">Object to be found within collection</param>
1370    </member>
1371    <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String)">
1372      <summary>Asserts that collection contains actual as an item.</summary>
1373      <param name="collection">ICollection of objects to be considered</param>
1374      <param name="actual">Object to be found within collection</param>
1375      <param name="message">The message that will be displayed on failure</param>
1376    </member>
1377    <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String,System.Object[])">
1378      <summary>Asserts that collection contains actual as an item.</summary>
1379      <param name="collection">ICollection of objects to be considered</param>
1380      <param name="actual">Object to be found within collection</param>
1381      <param name="message">The message that will be displayed on failure</param>
1382      <param name="args">Arguments to be used in formatting the message</param>
1383    </member>
1384    <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object)">
1385      <summary>Asserts that collection does not contain actual as an item.</summary>
1386      <param name="collection">ICollection of objects to be considered</param>
1387      <param name="actual">Object that cannot exist within collection</param>
1388    </member>
1389    <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String)">
1390      <summary>Asserts that collection does not contain actual as an item.</summary>
1391      <param name="collection">ICollection of objects to be considered</param>
1392      <param name="actual">Object that cannot exist within collection</param>
1393      <param name="message">The message that will be displayed on failure</param>
1394    </member>
1395    <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String,System.Object[])">
1396      <summary>Asserts that collection does not contain actual as an item.</summary>
1397      <param name="collection">ICollection of objects to be considered</param>
1398      <param name="actual">Object that cannot exist within collection</param>
1399      <param name="message">The message that will be displayed on failure</param>
1400      <param name="args">Arguments to be used in formatting the message</param>
1401    </member>
1402    <member name="M:MbUnit.Framework.CollectionAssert.IsCountCorrect(System.Collections.ICollection)">
1403      <summary>Verifies that the <see cref="P:System.Collections.ICollection.Count" /> property is synchronized with the number of iterated elements.</summary>
1404      <param name="col">Collection to test</param>
1405      <exception cref="T:System.ArgumentNullException">
1406        <paramref name="col" /> is a null reference (Nothing in Visual Basic) </exception>
1407    </member>
1408    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
1409      <summary>Asserts that subset is not a subset of superset.</summary>
1410      <param name="subset">The ICollection subset to be considered</param>
1411      <param name="superset">The ICollection superset to be considered</param>
1412    </member>
1413    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
1414      <summary>Asserts that subset is not a subset of superset.</summary>
1415      <param name="subset">The ICollection subset to be considered</param>
1416      <param name="superset">The ICollection superset to be considered</param>
1417      <param name="message">The message that will be displayed on failure</param>
1418    </member>
1419    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
1420      <summary>Asserts that subset is not a subset of superset.</summary>
1421      <param name="subset">The ICollection subset to be considered</param>
1422      <param name="superset">The ICollection superset to be considered</param>
1423      <param name="message">The message that will be displayed on failure</param>
1424      <param name="args">Arguments to be used in formatting the message</param>
1425    </member>
1426    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSynchronized(System.Collections.ICollection)">
1427      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is false.</summary>
1428      <param name="actual">Instance containing the expected value.</param>
1429    </member>
1430    <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
1431      <summary>Asserts that subset is a subset of superset.</summary>
1432      <param name="subset">The ICollection subset to be considered</param>
1433      <param name="superset">The ICollection superset to be considered</param>
1434    </member>
1435    <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
1436      <summary>Asserts that subset is a subset of superset.</summary>
1437      <param name="subset">The ICollection subset to be considered</param>
1438      <param name="superset">The ICollection superset to be considered</param>
1439      <param name="message">The message that will be displayed on failure</param>
1440    </member>
1441    <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
1442      <summary>Asserts that subset is a subset of superset.</summary>
1443      <param name="subset">The ICollection subset to be considered</param>
1444      <param name="superset">The ICollection superset to be considered</param>
1445      <param name="message">The message that will be displayed on failure</param>
1446      <param name="args">Arguments to be used in formatting the message</param>
1447    </member>
1448    <member name="M:MbUnit.Framework.CollectionAssert.IsSynchronized(System.Collections.ICollection)">
1449      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is true.</summary>
1450      <param name="actual">Instance containing the expected value.</param>
1451    </member>
1452    <member name="T:MbUnit.Framework.ColumnAttribute">
1453      <summary>
1454        <para> Provides a column of literal values as a data source. </para>
1455        <para> This attribute is equivalent to providing a sequence of values using <see cref="T:MbUnit.Framework.RowAttribute" /> with 1 element in each. </para>
1456      </summary>
1457    </member>
1458    <member name="P:MbUnit.Framework.ColumnAttribute.Values">
1459      <summary>Gets the array of values in the column.</summary>
1460    </member>
1461    <member name="M:MbUnit.Framework.ColumnAttribute.PopulateDataSource(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
1462      <summary>Populates the data source with the contributions of this attribute.</summary>
1463      <param name="scope">The scope</param>
1464      <param name="dataSource">The data source</param>
1465      <param name="codeElement">The code element</param>
1466    </member>
1467    <member name="T:MbUnit.Framework.CombinatorialJoinAttribute">
1468      <summary>
1469        <para> Sets the join strategy of a test to be combinatorial. </para>
1470        <para> The test will be executed using all possible combinations of values from each data source. </para>
1471        <para> If there are two data sources, A and B with values A1, A2, B1 and B2, then the test will be run four times with inputs: (A1, B1), (A1, B2), (A2, B1) and (A2, B2). </para>
1472      </summary>
1473    </member>
1474    <member name="M:MbUnit.Framework.CombinatorialJoinAttribute.GetJoinStrategy">
1475      <summary>Gets the join strategy to use.</summary>
1476      <returns>The join strategy</returns>
1477    </member>
1478    <member name="T:MbUnit.Framework.ContentAttribute">
1479      <summary>An abstract base class for data source attributes that obtain contents from a local file, manifest resource, or inline data. At most one location type may be used. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1480    </member>
1481    <member name="P:MbUnit.Framework.ContentAttribute.Contents">
1482      <summary>Gets or sets the inline data contents as a string.</summary>
1483    </member>
1484    <member name="P:MbUnit.Framework.ContentAttribute.FilePath">
1485      <summary>Gets or sets the path of a local file relative to the current working directory from which the file contents should be read.</summary>
1486    </member>
1487    <member name="P:MbUnit.Framework.ContentAttribute.IsDynamic">
1488      <summary>Returns true if the contents are dynamic, or false if they are static. Static contents can only change if the test assembly is recompiled.</summary>
1489    </member>
1490    <member name="P:MbUnit.Framework.ContentAttribute.ResourcePath">
1491      <summary>
1492        <para> Gets or sets the path of a manifest resource from which the contents should be read. The path will be resolved within the assembly containing the <see cref="P:MbUnit.Framework.ContentAttribute.ResourceScope" /> type or the test fixture type if none if provided. </para>
1493        <para> During resolution, a resource name is constructed from the resource path by translating backslashes to periods. If the named resource is found within the scoped assembly manifest, it is used. Otherwise, the name is prepended with the scoped type's namespace and second lookup is attempted. If this final attempt fails, then an error is raised at runtime. </para>
1494        <para> Examples: <list type="bullet"><item>If the <see cref="P:MbUnit.Framework.ContentAttribute.ResourceScope" nolink="true" /> is <c>MyNamespace.MyType</c> within assembly <c>MyAssembly.dll</c> and if <see cref="P:MbUnit.Framework.ContentAttribute.ResourcePath" /> is <c>"Resources\Image.gif"</c>, then resolution will first check whether <c>Resources.Image.gif</c> in <c>MyAssembly.dll</c> is a valid resource. If not found, it will consider <c>MyNamespace.Resources.Image.gif</c>. If still not found, then a runtime error will be raised.</item><item>If no <see cref="P:MbUnit.Framework.ContentAttribute.ResourceScope" nolink="true" /> is provided, then the containing test fixture type will be used as the resource scope. The above resolution strategy still applies.</item></list></para>
1495      </summary>
1496    </member>
1497    <member name="P:MbUnit.Framework.ContentAttribute.ResourceScope">
1498      <summary>
1499        <para> Gets or sets a <see cref="T:System.Type" /> that is used to locate the assembly and namespace within which to resolve a manifest resource in combination with the <see cref="P:MbUnit.Framework.ContentAttribute.ResourcePath" /> property. </para>
1500        <para> If no value is specified, the test fixture type is used as the resource scope. </para>
1501      </summary>
1502    </member>
1503    <member name="M:MbUnit.Framework.ContentAttribute.GetDataLocationName">
1504      <summary>
1505        <para> Gets the name of the location that is providing the data, or null if none. </para>
1506        <para> The name will be the filename or resource path if specified, or a special locale-aware string (such as "&lt;inline&gt;") if the contents were specified inline via the <see cref="P:MbUnit.Framework.ContentAttribute.Contents" /> property. </para>
1507      </summary>
1508    </member>
1509    <member name="M:MbUnit.Framework.ContentAttribute.OpenStream(Gallio.Reflection.ICodeElementInfo)">
1510      <summary>Opens the contents as a stream.</summary>
1511      <param name="codeElement">The code element to which the attribute was applied</param>
1512      <returns>The stream</returns>
1513    </member>
1514    <member name="M:MbUnit.Framework.ContentAttribute.OpenTextReader(Gallio.Reflection.ICodeElementInfo)">
1515      <summary>Opens the contents as a text reader.</summary>
1516      <param name="codeElement">The code element to which the attribute was applied</param>
1517      <returns>The text reader</returns>
1518    </member>
1519    <member name="M:MbUnit.Framework.ContentAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1520      <summary>Verifies that the attribute is being used correctly.</summary>
1521      <param name="scope">The scope</param>
1522      <param name="codeElement">The code element</param>
1523    </member>
1524    <member name="T:MbUnit.Framework.CsvDataAttribute">
1525      <summary>
1526        <para> Provides data from Comma Separated Values contents. </para>
1527        <para> If the CSV document has a header, then it is interpreted as the names of the columns. Columns with names in brackets, such as "[ExpectedException]", are interpreted as containing metadata values associated with the named key. </para>
1528      </summary>
1529    </member>
1530    <member name="P:MbUnit.Framework.CsvDataAttribute.CommentPrefix">
1531      <summary>
1532        <para> Gets or sets a character that indicates that a line in the source represents a comment. May be set to '\0' (null) to disable comment handling. </para>
1533        <para> Comment lines are excluded from the record set. </para>
1534      </summary>
1535      <value>The default value is '#' (pound).</value>
1536    </member>
1537    <member name="P:MbUnit.Framework.CsvDataAttribute.FieldDelimiter">
1538      <summary>Gets or sets the field delimiter character.</summary>
1539      <value>The default value is ',' (comma).</value>
1540    </member>
1541    <member name="P:MbUnit.Framework.CsvDataAttribute.HasHeader">
1542      <summary>Gets or sets whether the CSV document has a header that should be used to provide aliases for indexed columns.</summary>
1543      <value>The default value is 'false' which indicates that the file does not have a header.</value>
1544    </member>
1545    <member name="M:MbUnit.Framework.CsvDataAttribute.PopulateDataSource(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
1546      <summary>Populates the data source with the contributions of this attribute.</summary>
1547      <param name="scope">The scope</param>
1548      <param name="dataSource">The data source</param>
1549      <param name="codeElement">The code element</param>
1550    </member>
1551    <member name="T:MbUnit.Framework.DataAttribute">
1552      <summary>The abstract base type for MbUnit attributes that contribute values to data sources along with metadata such a description or expected exception type. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1553    </member>
1554    <member name="P:MbUnit.Framework.DataAttribute.Description">
1555      <summary>Gets or sets a description of the values provided by the data source.</summary>
1556    </member>
1557    <member name="P:MbUnit.Framework.DataAttribute.ExpectedException">
1558      <summary>Gets or sets the type of exception that should be thrown when the values provided by the data source are consumed by test.</summary>
1559    </member>
1560    <member name="M:MbUnit.Framework.DataAttribute.GetMetadata">
1561      <summary>Gets the metadata for the data source.</summary>
1562      <returns>The metadata keys and values</returns>
1563    </member>
1564    <member name="T:MbUnit.Framework.DependsOnAssemblyAttribute">
1565      <summary>Creates a dependency from this test assembly, test fixture or test method on all tests in some other test assembly. If any test in the other test assembly test fails then this test will not run. Moreover, the dependency forces this test to run after those it depends upon.</summary>
1566    </member>
1567    <member name="P:MbUnit.Framework.DependsOnAssemblyAttribute.TestAssemblyName">
1568      <summary>Gets the dependent test assembly name.</summary>
1569    </member>
1570    <member name="M:MbUnit.Framework.DependsOnAssemblyAttribute.GetDependency(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1571      <summary>Gets the code element that declares the tests on which this test should depend.</summary>
1572      <param name="scope">The scope</param>
1573      <param name="codeElement">The code element</param>
1574      <returns>The code element representing the dependency</returns>
1575    </member>
1576    <member name="T:MbUnit.Framework.DependsOnAttribute">
1577      <summary>Creates a dependency from this test assembly, test fixture or test method on some other test fixture or test method. If the other test fixture or test method fails then this test will not run. Moreover, the dependency forces this test to run after those it depends upon.</summary>
1578    </member>
1579    <member name="P:MbUnit.Framework.DependsOnAttribute.TestFixtureType">
1580      <summary>Gets the dependent test fixture type, or null if the dependency is on another test method of this test fixture.</summary>
1581    </member>
1582    <member name="P:MbUnit.Framework.DependsOnAttribute.TestMethodName">
1583      <summary>Gets the dependent test method name, or null if the dependency is on the whole test fixture.</summary>
1584    </member>
1585    <member name="M:MbUnit.Framework.DependsOnAttribute.GetDependency(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1586      <summary>Gets the code element that declares the tests on which this test should depend.</summary>
1587      <param name="scope">The scope</param>
1588      <param name="codeElement">The code element</param>
1589      <returns>The code element representing the dependency</returns>
1590    </member>
1591    <member name="T:MbUnit.Framework.DescriptionAttribute">
1592      <summary>Associates a description with a test fixture, test method, test parameter or other test component. The description provides useful documentation to users when browsing the tests.</summary>
1593    </member>
1594    <member name="P:MbUnit.Framework.DescriptionAttribute.Description">
1595      <summary>Gets or sets the description.</summary>
1596    </member>
1597    <member name="M:MbUnit.Framework.DescriptionAttribute.Apply(Gallio.Model.MetadataMap)">
1598      <summary>Applies metadata contributions the metadata map of a test component.</summary>
1599      <param name="metadata">The metadata map</param>
1600    </member>
1601    <member name="T:MbUnit.Framework.ExpectedArgumentExceptionAttribute">
1602      <summary>Declares that the associated test is expected to throw an <see cref="T:System.ArgumentException" />. The expected contents of the exception message may optionally be specified.</summary>
1603    </member>
1604    <member name="T:MbUnit.Framework.ExpectedArgumentNullExceptionAttribute">
1605      <summary>Declares that the associated test is expected to throw an <see cref="T:System.ArgumentNullException" />. The expected contents of the exception message may optionally be specified.</summary>
1606    </member>
1607    <member name="T:MbUnit.Framework.ExpectedArgumentOutOfRangeExceptionAttribute">
1608      <summary>Declares that the associated test is expected to throw an <see cref="T:System.ArgumentOutOfRangeException" />. The expected contents of the exception message may optionally be specified.</summary>
1609    </member>
1610    <member name="T:MbUnit.Framework.ExpectedExceptionAttribute">
1611      <summary>Declares that the associated test is expected to throw an exception of a particular type. The expected contents of the exception message may optionally be specified.</summary>
1612    </member>
1613    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
1614      <summary>Gets the expected exception type.</summary>
1615    </member>
1616    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.Message">
1617      <summary>Gets or sets the expected exception message, or null if none specified.</summary>
1618    </member>
1619    <member name="M:MbUnit.Framework.ExpectedExceptionAttribute.DecorateMethodTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
1620      <summary>
1621        <para> Applies decorations to a method-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
1622        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
1623      </summary>
1624      <param name="methodScope">The method scope</param>
1625      <param name="method">The method</param>
1626    </member>
1627    <member name="T:MbUnit.Framework.ExplicitAttribute">
1628      <summary>
1629        <para> Indicates that a test should only be run explicitly. The test will still appear in the test tree but it will not run and it will not appear in the test results unless it is explicitly selected for execution. </para>
1630        <para> A test is considered to be explicitly selected when the filter used to run the tests matches the test or its descendants but none of its ancestors. For example, if the filter matches a test case but not its containing test fixture then the test case will be deemed to be explicitly selected. Otherwise the test case will be implicitly selected by virtue of the fact that the filter matched one of its ancestors. </para>
1631        <para> This attribute can be used to exclude from normal execution any tests that are particularly expensive or require manual supervision by an operator. </para>
1632      </summary>
1633    </member>
1634    <member name="P:MbUnit.Framework.ExplicitAttribute.Reason">
1635      <summary>Gets the reason that the test should only run explicitly.</summary>
1636    </member>
1637    <member name="M:MbUnit.Framework.ExplicitAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1638      <summary>
1639        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
1640        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
1641      </summary>
1642      <param name="scope">The scope</param>
1643      <param name="codeElement">The code element</param>
1644    </member>
1645    <member name="T:MbUnit.Framework.FactoryAttribute">
1646      <summary>
1647        <para> Specifies a factory member that will provide values for a data-driven test. The factory may be an instance or static member of the fixture class or a static member of some other class. </para>
1648        <para> Refer to <see cref="T:Gallio.Framework.Data.FactoryDataSet" /> and <see cref="T:Gallio.Framework.Data.FactoryKind" /> for more information about how the factory data set works and the kinds of factories that are supported. </para>
1649      </summary>
1650    </member>
1651    <member name="P:MbUnit.Framework.FactoryAttribute.ColumnCount">
1652      <summary>Gets or sets the number of columns produced by the factory, or 0 if unknown. Defaults to 0.</summary>
1653      <value>The number of columns</value>
1654      <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="value" /> is less than zero</exception>
1655    </member>
1656    <member name="P:MbUnit.Framework.FactoryAttribute.Kind">
1657      <summary>Gets or sets the kind of the factory. Defaults to <see cref="F:Gallio.Framework.Data.FactoryKind.Auto" />.</summary>
1658      <value>The kind of the factory.</value>
1659    </member>
1660    <member name="P:MbUnit.Framework.FactoryAttribute.MemberName">
1661      <summary>Gets the factory member name, never null.</summary>
1662    </member>
1663    <member name="P:MbUnit.Framework.FactoryAttribute.Type">
1664      <summary>Gets the declaring type of the factory, or null if it is assumed to be the fixture class.</summary>
1665    </member>
1666    <member name="M:MbUnit.Framework.FactoryAttribute.PopulateDataSource(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
1667      <summary>Populates the data source with the contributions of this attribute.</summary>
1668      <param name="scope">The scope</param>
1669      <param name="dataSource">The data source</param>
1670      <param name="codeElement">The code element</param>
1671    </member>
1672    <member name="T:MbUnit.Framework.FixtureInitializerAttribute">
1673      <summary>
1674        <para> The fixture initializer attribute is applied to a method that is to be invoked after a fixture instance has been created to complete its initialization. </para>
1675        <para> This attribute provides a mechanism for completing the initialization of a fixture if the work cannot be completed entirely within the constructor. For example, data binding might be used to set fields and property values of the fixture instance. Consequently post-construction initialization may be required. </para>
1676        <para>
1677          <see cref="T:MbUnit.Framework.FixtureInitializerAttribute" /> allows initialization to occur earlier in the test lifecycle than <see cref="T:MbUnit.Framework.FixtureSetUpAttribute" />. </para>
1678      </summary>
1679    </member>
1680    <member name="M:MbUnit.Framework.FixtureInitializerAttribute.DecorateContainingScope(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
1681      <summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
1682      <param name="containingScope">The containing scope</param>
1683      <param name="method">The method to process</param>
1684    </member>
1685    <member name="T:MbUnit.Framework.FixtureSetUpAttribute">
1686      <summary>The fixture set up attribute is applied to a method that is to be invoked when a fixture instance is being set up before any of its tests are executed.</summary>
1687    </member>
1688    <member name="M:MbUnit.Framework.FixtureSetUpAttribute.DecorateContainingScope(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
1689      <summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
1690      <param name="containingScope">The containing scope</param>
1691      <param name="method">The method to process</param>
1692    </member>
1693    <member name="T:MbUnit.Framework.FixtureTearDownAttribute">
1694      <summary>The fixture tear down attribute is applied to a method that is to be invoked when a fixture instance is being torn down after all of its tests have been executed.</summary>
1695    </member>
1696    <member name="M:MbUnit.Framework.FixtureTearDownAttribute.DecorateContainingScope(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
1697      <summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
1698      <param name="containingScope">The containing scope</param>
1699      <param name="method">The method to process</param>
1700    </member>
1701    <member name="T:MbUnit.Framework.GenericAssert">
1702      <summary>Assertion class This class cannot be inherited.</summary>
1703    </member>
1704    <member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0},System.String,System.Object[])">
1705      <summary>Assert that an array, list or other collection is empty</summary>
1706      <param name="collection">An array, list or other collection implementing ICollection</param>
1707      <param name="message">The message to be displayed on failure</param>
1708      <param name="args">Arguments to be used in formatting the message</param>
1709    </member>
1710    <member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0},System.String)">
1711      <summary>Assert that an array, list or other collection is empty</summary>
1712      <param name="collection">An array, list or other collection implementing ICollection</param>
1713      <param name="message">The message to be displayed on failure</param>
1714    </member>
1715    <member name="M:MbUnit.Framework.GenericAssert.IsEmpty``1(System.Collections.Generic.ICollection{``0})">
1716      <summary>Assert that an array,list or other collection is empty</summary>
1717      <param name="collection">An array, list or other collection implementing ICollection</param>
1718    </member>
1719    <member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0},System.String,System.Object[])">
1720      <summary>Assert that an array, list or other collection is empty</summary>
1721      <param name="collection">An array, list or other collection implementing ICollection</param>
1722      <param name="message">The message to be displayed on failure</param>
1723      <param name="args">Arguments to be used in formatting the message</param>
1724    </member>
1725    <member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0},System.String)">
1726      <summary>Assert that an array, list or other collection is empty</summary>
1727      <param name="collection">An array, list or other collection implementing ICollection</param>
1728      <param name="message">The message to be displayed on failure</param>
1729    </member>
1730    <member name="M:MbUnit.Framework.GenericAssert.IsNotEmpty``1(System.Collections.Generic.ICollection{``0})">
1731      <summary>Assert that an array,list or other collection is empty</summary>
1732      <param name="collection">An array, list or other collection implementing ICollection</param>
1733    </member>
1734    <member name="T:MbUnit.Framework.HeaderAttribute">
1735      <summary>Defines names as aliases for the columns in an indexed data source such as those that have been populated by <see cref="T:MbUnit.Framework.RowAttribute" /> or <see cref="T:MbUnit.Framework.ColumnAttribute" />. The names may subsequently be used in data binding expressions in place of their corresponding column indices.</summary>
1736    </member>
1737    <member name="P:MbUnit.Framework.HeaderAttribute.ColumnNames">
1738      <summary>Gets the array of column names.</summary>
1739    </member>
1740    <member name="M:MbUnit.Framework.HeaderAttribute.PopulateDataSource(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
1741      <summary>Populates the data source with the contributions of this attribute.</summary>
1742      <param name="scope">The scope</param>
1743      <param name="dataSource">The data source</param>
1744      <param name="codeElement">The code element</param>
1745    </member>
1746    <member name="T:MbUnit.Framework.IgnoreAttribute">
1747      <summary>
1748        <para> Indicates that a test is to be ignored by the framework and will not be run. The test will still appear in test reports along with the reason that it was ignored, if provided. </para>
1749        <para> This attribute can be used to disable tests that are broken or expensive without commenting them out or removing them from the source code. </para>
1750      </summary>
1751    </member>
1752    <member name="P:MbUnit.Framework.IgnoreAttribute.Reason">
1753      <summary>Gets the reason that the test has been ignored, or an empty string if none.</summary>
1754    </member>
1755    <member name="M:MbUnit.Framework.IgnoreAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1756      <summary>
1757        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
1758        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
1759      </summary>
1760      <param name="scope">The scope</param>
1761      <param name="codeElement">The code element</param>
1762    </member>
1763    <member name="T:MbUnit.Framework.ImportanceAttribute">
1764      <summary>Associates a <see cref="T:MbUnit.Framework.Importance" /> with a test fixture, test method, test parameter or other test component.</summary>
1765    </member>
1766    <member name="P:MbUnit.Framework.ImportanceAttribute.Importance">
1767      <summary>Gets or sets the importance.</summary>
1768    </member>
1769    <member name="M:MbUnit.Framework.ImportanceAttribute.Apply(Gallio.Model.MetadataMap)">
1770      <summary>Applies metadata contributions the metadata map of a test component.</summary>
1771      <param name="metadata">The metadata map</param>
1772    </member>
1773    <member name="T:MbUnit.Framework.InterimAssert">
1774      <summary>This is an interim assertion class intended to be used within MbUnit v3 tests. We'll refactor these assertions when the new constraint framework is developed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1775    </member>
1776    <member name="M:MbUnit.Framework.InterimAssert.AreDistinct``1(``0[])">
1777      <summary>Asserts that all of the values in the objects array are distinct by equality and hashcode.</summary>
1778      <typeparam name="T">The type of object</typeparam>
1779      <param name="items">The objects</param>
1780      <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="items" /> is null</exception>
1781    </member>
1782    <member name="M:MbUnit.Framework.InterimAssert.DoesNotThrow(Gallio.Action)">
1783      <summary>Asserts that the specified block of code does not throw an exception.</summary>
1784      <param name="action">The block of code to run</param>
1785    </member>
1786    <member name="M:MbUnit.Framework.InterimAssert.DoesNotThrow(Gallio.Action,System.String)">
1787      <summary>Asserts that the specified block of code does not throw an exception.</summary>
1788      <param name="action">The block of code to run</param>
1789      <param name="message">The failure message</param>
1790    </member>
1791    <member name="M:MbUnit.Framework.InterimAssert.DoesNotThrow(Gallio.Action,System.String,System.Object[])">
1792      <summary>Asserts that the specified block of code does not throw an exception.</summary>
1793      <param name="action">The block of code to run</param>
1794      <param name="messageFormat">The failure message format string</param>
1795      <param name="messageArgs">The failure message arguments</param>
1796    </member>
1797    <member name="M:MbUnit.Framework.InterimAssert.WithKeyedPairs``3(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``2},Gallio.Action{``0,``1,``2})">
1798      <summary>Evaluates an assertion with matched pairs drawn from each dictionary that have identical keys. Fails if the collections have different sizes or if one is null but not the other.</summary>
1799      <typeparam name="TKey">The key type</typeparam>
1800      <typeparam name="TExpectedValue">The expected value type</typeparam>
1801      <typeparam name="TActualValue">The expected value type</typeparam>
1802      <param name="expectedValues">The enumeration of expected values</param>
1803      <param name="actualValues">The enumeration of actual values</param>
1804      <param name="assertion">The assertion to evaluate over all pairs</param>
1805    </member>
1806    <member name="M:MbUnit.Framework.InterimAssert.WithKeyedPairs``3(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``2},Gallio.Action{``1,``2})">
1807      <summary>Evaluates an assertion with matched pairs drawn from each dictionary that have identical keys. Fails if the collections have different sizes or if one is null but not the other.</summary>
1808      <typeparam name="TKey">The key type</typeparam>
1809      <typeparam name="TExpectedValue">The expected value type</typeparam>
1810      <typeparam name="TActualValue">The actual value type</typeparam>
1811      <param name="expectedValues">The enumeration of expected values</param>
1812      <param name="actualValues">The enumeration of actual values</param>
1813      <param name="assertion">The assertion to evaluate over all pairs</param>
1814    </member>
1815    <member name="M:MbUnit.Framework.InterimAssert.WithPairs``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Gallio.Action{``0,``1})">
1816      <summary>Evaluates an assertion with matched pairs drawn from each collection. Fails if the collections have different sizes or if one is null but not the other.</summary>
1817      <typeparam name="TExpected">The expected value type</typeparam>
1818      <typeparam name="TActual">The actual value type</typeparam>
1819      <param name="expectedValues">The enumeration of expected values</param>
1820      <param name="actualValues">The enumeration of actual values</param>
1821      <param name="assertion">The assertion to evaluate over all pairs</param>
1822    </member>
1823    <member name="T:MbUnit.Framework.JoinAttribute">
1824      <summary>An abstract class for attributes that specify the join strategy of a test. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1825    </member>
1826    <member name="M:MbUnit.Framework.JoinAttribute.GetJoinStrategy">
1827      <summary>Gets the join strategy to use.</summary>
1828      <returns>The join strategy</returns>
1829    </member>
1830    <member name="M:MbUnit.Framework.JoinAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1831      <summary>
1832        <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
1833        <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
1834        <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
1835      </summary>
1836      <param name="scope">The scope</param>
1837      <param name="codeElement">The code element to process</param>
1838    </member>
1839    <member name="M:MbUnit.Framework.JoinAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1840      <summary>Verifies that the attribute is being used correctly.</summary>
1841      <param name="scope">The scope</param>
1842      <param name="codeElement">The code element</param>
1843      <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
1844    </member>
1845    <member name="T:MbUnit.Framework.MetadataAttribute">
1846      <summary>Associates custom metadata with a test fixture, test method, test parameter or other test component. The metadata can be used for documentation, classification or dynamic customization of tests.</summary>
1847    </member>
1848    <member name="P:MbUnit.Framework.MetadataAttribute.MetadataKey">
1849      <summary>Gets the metadata key.</summary>
1850    </member>
1851    <member name="P:MbUnit.Framework.MetadataAttribute.MetadataValue">
1852      <summary>Gets the metadata value.</summary>
1853    </member>
1854    <member name="M:MbUnit.Framework.MetadataAttribute.Apply(Gallio.Model.MetadataMap)">
1855      <summary>Applies metadata contributions the metadata map of a test component.</summary>
1856      <param name="metadata">The metadata map</param>
1857    </member>
1858    <member name="T:MbUnit.Framework.NameAttribute">
1859      <summary>Overrides the name of a test or test parameter.</summary>
1860    </member>
1861    <member name="P:MbUnit.Framework.NameAttribute.Name">
1862      <summary>Gets the overridden name.</summary>
1863    </member>
1864    <member name="M:MbUnit.Framework.NameAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1865      <summary>
1866        <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
1867        <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
1868        <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
1869      </summary>
1870      <param name="scope">The scope</param>
1871      <param name="codeElement">The code element to process</param>
1872    </member>
1873    <member name="M:MbUnit.Framework.NameAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1874      <summary>Verifies that the attribute is being used correctly.</summary>
1875      <param name="scope">The scope</param>
1876      <param name="codeElement">The code element</param>
1877      <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
1878    </member>
1879    <member name="T:MbUnit.Framework.PairwiseJoinAttribute">
1880      <summary>
1881        <para> Sets the join strategy of a test to be pairwise. </para>
1882        <para> The test will be executed using values drawn from each data source and combined so that all possible pairings of values from each data source are produced. This constraint vastly reduces the number of combinations because we only consider all interactions among pairs of variables rather than among all variables at once. This strategy still provides a high degree of variability among combinations and has a high likelihood of finding bugs while incurring much less cost than testing all possible combinations. </para>
1883        <para> If there are three data sources, A, B and C with values A1, A2, B1, B2, C1 and C2 then the test will be run four times with inputs: (A1, B1, C1), (A2, B2, C1), (A1, B2, C2), (A2, B1, C2). Compare this with the eight times that a standard cross-product combinatorial join strategy would have required. </para>
1884      </summary>
1885    </member>
1886    <member name="M:MbUnit.Framework.PairwiseJoinAttribute.GetJoinStrategy">
1887      <summary>Gets the join strategy to use.</summary>
1888      <returns>The join strategy</returns>
1889    </member>
1890    <member name="T:MbUnit.Framework.ParameterAttribute">
1891      <summary>
1892        <para> Declares that a property, field, method parameter, constructor parameter, generic type parameter or generic method parameter represents a test parameter. </para>
1893        <para> This attribute is optional for a method parameter, constructor parameter, generic type parameter or generic method parameter. For a property or field, this attribute is required unless the property or field has at least one associated data source, in which case the attribute can be omitted. </para>
1894      </summary>
1895    </member>
1896    <member name="T:MbUnit.Framework.PendingAttribute">
1897      <summary>
1898        <para> Indicates that a test has pending prerequisites so it will not be run. The test will still appear in test reports along with an explanation of the reason it it pending, if provided. </para>
1899        <para> This attribute can be used to disable tests that cannot run because the subject under test is missing certain prerequisite functionality. It may also serve as a placeholder for test that have yet to be implemented. </para>
1900      </summary>
1901    </member>
1902    <member name="P:MbUnit.Framework.PendingAttribute.Reason">
1903      <summary>Gets the reason that the test is pending.</summary>
1904    </member>
1905    <member name="M:MbUnit.Framework.PendingAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1906      <summary>
1907        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
1908        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
1909      </summary>
1910      <param name="scope">The scope</param>
1911      <param name="codeElement">The code element</param>
1912    </member>
1913    <member name="T:MbUnit.Framework.ReflectionAssert">
1914      <summary>Reflection Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1915    </member>
1916    <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Type[])">
1917      <summary>Asserts that the type has a public instance constructor with a signature defined by parameters.</summary>
1918    </member>
1919    <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Reflection.BindingFlags,System.Type[])">
1920      <summary>Asserts that the type has a constructor, with the specified bindind flags, with a signature defined by parameters.</summary>
1921    </member>
1922    <member name="M:MbUnit.Framework.ReflectionAssert.HasDefaultConstructor(System.Type)">
1923      <summary>Asserts that the type has a default public constructor</summary>
1924    </member>
1925    <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.String)">
1926      <summary>Asserts that the type has a public field method with a signature defined by parameters.</summary>
1927    </member>
1928    <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.Reflection.BindingFlags,System.String)">
1929      <summary>Asserts that the type has a field, with the specified bindind flags, with a signature defined by parameters.</summary>
1930    </member>
1931    <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.String,System.Type[])">
1932      <summary>Asserts that the type has a public instance method with a signature defined by parameters.</summary>
1933    </member>
1934    <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.Reflection.BindingFlags,System.String,System.Type[])">
1935      <summary>Asserts that the type has a method, with the specified bindind flags, with a signature defined by parameters.</summary>
1936    </member>
1937    <member name="M:MbUnit.Framework.ReflectionAssert.IsAssignableFrom(System.Type,System.Type)">
1938      <summary>Asserts whether an instance of the <paramref name="parent" /> can be assigned from an instance of <paramref name="child" />.</summary>
1939      <param name="parent">Parent <see cref="T:System.Type" /> instance.</param>
1940      <param name="child">Child <see cref="T:System.Type" /> instance.</param>
1941    </member>
1942    <member name="M:MbUnit.Framework.ReflectionAssert.IsInstanceOf(System.Type,System.Object)">
1943      <summary>Asserts whether <paramref name="child" /> is an instance of the <paramref name="type" />.</summary>
1944      <param name="type">
1945        <see cref="T:System.Type" /> instance.</param>
1946      <param name="child">Child instance.</param>
1947    </member>
1948    <member name="T:MbUnit.Framework.RepeatAttribute">
1949      <summary>This attribute decorates a test method and causes it to be invoked repeatedly.</summary>
1950    </member>
1951    <member name="M:MbUnit.Framework.RepeatAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
1952      <summary>
1953        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
1954        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
1955      </summary>
1956      <param name="scope">The scope</param>
1957      <param name="codeElement">The code element</param>
1958    </member>
1959    <member name="T:MbUnit.Framework.RowAttribute">
1960      <summary>Provides a row of literal values as a data source.</summary>
1961    </member>
1962    <member name="P:MbUnit.Framework.RowAttribute.Values">
1963      <summary>Gets the array of values in the row.</summary>
1964    </member>
1965    <member name="M:MbUnit.Framework.RowAttribute.PopulateDataSource(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
1966      <summary>Populates the data source with the contributions of this attribute.</summary>
1967      <param name="scope">The scope</param>
1968      <param name="dataSource">The data source</param>
1969      <param name="codeElement">The code element</param>
1970    </member>
1971    <member name="T:MbUnit.Framework.SecurityAssert">
1972      <summary>Security Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1973    </member>
1974    <member name="M:MbUnit.Framework.SecurityAssert.IsAuthenticated(System.Security.Principal.IIdentity)">
1975      <summary>Asserts that <paramref name="identity" /> is authenticated.</summary>
1976    </member>
1977    <member name="M:MbUnit.Framework.SecurityAssert.IsNotAuthenticated(System.Security.Principal.IIdentity)">
1978      <summary>Asserts that <paramref name="identity" /> is not authenticated.</summary>
1979    </member>
1980    <member name="M:MbUnit.Framework.SecurityAssert.WindowIsAuthenticated">
1981      <summary>Asserts that the current windows identity is authenticated.</summary>
1982    </member>
1983    <member name="M:MbUnit.Framework.SecurityAssert.WindowIsNotAuthenticated">
1984      <summary>Asserts that the current windows identity is not authenticated.</summary>
1985    </member>
1986    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInAdministrator">
1987      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.Administrator" /> role.</summary>
1988    </member>
1989    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInGuest">
1990      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.Guest" /> role.</summary>
1991    </member>
1992    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInPowerUser">
1993      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.PowerUser" /> role.</summary>
1994    </member>
1995    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInRole(System.Security.Principal.WindowsBuiltInRole)">
1996      <summary>Asserts that the current windows identity is in <param name="role" />.</summary>
1997    </member>
1998    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInUser">
1999      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.User" /> role.</summary>
2000    </member>
2001    <member name="T:MbUnit.Framework.SequentialJoinAttribute">
2002      <summary>
2003        <para> Sets the join strategy of a test to be sequential. </para>
2004        <para> The test will be executed using values drawn from each data source and combined sequentially with elements from each data source chosen in order. </para>
2005        <para> If there are two data sources, A and B with values A1, A2, B1 and B2, then the test will be run twice with inputs: (A1, B1) and (A2, B2). </para>
2006      </summary>
2007    </member>
2008    <member name="M:MbUnit.Framework.SequentialJoinAttribute.GetJoinStrategy">
2009      <summary>Gets the join strategy to use.</summary>
2010      <returns>The join strategy</returns>
2011    </member>
2012    <member name="T:MbUnit.Framework.SetUpAttribute">
2013      <summary>The setup attribute is applied to a method that is to be invoked before each test in a fixture executes. The method will run once for each test. This class cannot be inherited.</summary>
2014    </member>
2015    <member name="T:MbUnit.Framework.StringAssert">
2016      <summary>String Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2017    </member>
2018    <member name="M:MbUnit.Framework.StringAssert.AreEqualIgnoreCase(System.String,System.String)">
2019      <summary>Asserts that two strings are equal, ignoring the case</summary>
2020      <param name="s1">Expected string</param>
2021      <param name="s2">Actual string</param>
2022    </member>
2023    <member name="M:MbUnit.Framework.StringAssert.DoesNotContain(System.String,System.Char[])">
2024      <summary>Asserts the string does not contain c</summary>
2025      <param name="s">String to test.</param>
2026      <param name="anyOf">Variable list of characeters.</param>
2027    </member>
2028    <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.String)">
2029      <summary>Asserts the regular expression reg makes a full match on s</summary>
2030      <param name="s">String to test.</param>
2031      <param name="reg">Regular expression</param>
2032    </member>
2033    <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.Text.RegularExpressions.Regex)">
2034      <summary>Asserts the regular expression regex makes a full match on <paramref name="s" />.</summary>
2035      <param name="s">String to test.</param>
2036      <param name="regex">Regular expression</param>
2037    </member>
2038    <member name="M:MbUnit.Framework.StringAssert.IsEmpty(System.String)">
2039      <summary>Asserts that the string is non null and empty</summary>
2040      <param name="s">String to test.</param>
2041    </member>
2042    <member name="M:MbUnit.Framework.StringAssert.IsNonEmpty(System.String)">
2043      <summary>Asserts that the string is non null and non empty</summary>
2044      <param name="s">String to test.</param>
2045    </member>
2046    <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.String)">
2047      <summary>Asserts the regular expression reg makes a match on s</summary>
2048      <param name="s">String to test.</param>
2049      <param name="reg">Regular expression</param>
2050    </member>
2051    <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.Text.RegularExpressions.Regex)">
2052      <summary>Asserts the regular expression regex makes a match on s</summary>
2053      <param name="s">String to test.</param>
2054      <param name="regex">A <see cref="T:System.Text.RegularExpressions.Regex" /> instance.</param>
2055    </member>
2056    <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.String)">
2057      <summary>Asserts the regular expression reg makes a match on s</summary>
2058      <param name="s">String to test.</param>
2059      <param name="reg">Regular expression</param>
2060    </member>
2061    <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.Text.RegularExpressions.Regex)">
2062      <summary>Asserts the regular expression regex makes a match on s</summary>
2063      <param name="s">String to test.</param>
2064      <param name="regex">A <see cref="T:System.Text.RegularExpressions.Regex" /> instance.</param>
2065    </member>
2066    <member name="T:MbUnit.Framework.TearDownAttribute">
2067      <summary>The tear down attribute is applied to a method that is to be invoked after each test in a fixture executes. The method will run once for each test. This class cannot be inherited.</summary>
2068    </member>
2069    <member name="T:MbUnit.Framework.TestAttribute">
2070      <summary>
2071        <para> The test attribute is applied to a method that represents a single test case within a fixture. By default, if the method throws an unexpected exception, the test will be deemed to have failed. Otherwise, the test will pass. </para>
2072        <para> The default behavior may be modified by test decorator attributes that may alter the execution environment of the test, catch and reinterpret any exceptions it throws, or impose additional constraints upon its execution. </para>
2073        <para> Output from the test, such as text written to the console, is captured by the framework and will be included in the test report. Additional information can also be logged during test execution using the <see cref="T:Gallio.Framework.Log" /> class. </para>
2074      </summary>
2075    </member>
2076    <member name="M:MbUnit.Framework.TestAttribute.SetTestSemantics(Gallio.Framework.Pattern.PatternTest,Gallio.Reflection.IMethodInfo)">
2077      <summary>
2078        <para> Applies semantic actions to the <see cref="P:Gallio.Framework.Pattern.PatternTest.TestActions" /> member of a test to set the test's runtime behavior. </para>
2079        <para> This method is called after <see cref="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.InitializeTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)" />. </para>
2080      </summary>
2081      <param name="test">The test</param>
2082      <param name="method">The test method</param>
2083    </member>
2084    <member name="T:MbUnit.Framework.TestDecoratorAttribute">
2085      <summary>
2086        <para> A test decorator applies actions to be performed around the initialization, setup, execution, teardown and disposal lifecycle of a test (in that order). </para>
2087        <para> This abstract class provides a convenient way to implement new test decorators of your own. If you need more control over how the test is decorated, you may prefer subclassing <see cref="T:Gallio.Framework.Pattern.TestDecoratorPatternAttribute" /> directly instead. </para>
2088        <para> When multiple test decorators are applied to a test, they are installed in order according to the <see cref="P:Gallio.Framework.Pattern.DecoratorPatternAttribute.Order" /> property. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2089    </member>
2090    <member name="M:MbUnit.Framework.TestDecoratorAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
2091      <summary>
2092        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
2093        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
2094      </summary>
2095      <param name="scope">The scope</param>
2096      <param name="codeElement">The code element</param>
2097    </member>
2098    <member name="M:MbUnit.Framework.TestDecoratorAttribute.Dispose(Gallio.Framework.Pattern.PatternTestInstanceState)">
2099      <summary>Disposes the test.</summary>
2100      <param name="testInstanceState">The test instance state, not null</param>
2101    </member>
2102    <member name="M:MbUnit.Framework.TestDecoratorAttribute.Execute(Gallio.Framework.Pattern.PatternTestInstanceState)">
2103      <summary>Executes the test.</summary>
2104      <param name="testInstanceState">The test instance state, not null</param>
2105    </member>
2106    <member name="M:MbUnit.Framework.TestDecoratorAttribute.Initialize(Gallio.Framework.Pattern.PatternTestInstanceState)">
2107      <summary>Initializes the test.</summary>
2108      <param name="testInstanceState">The test instance state, not null</param>
2109    </member>
2110    <member name="M:MbUnit.Framework.TestDecoratorAttribute.SetUp(Gallio.Framework.Pattern.PatternTestInstanceState)">
2111      <summary>Sets up the test.</summary>
2112      <param name="testInstanceState">The test instance state, not null</param>
2113    </member>
2114    <member name="M:MbUnit.Framework.TestDecoratorAttribute.TearDown(Gallio.Framework.Pattern.PatternTestInstanceState)">
2115      <summary>Tears down the test.</summary>
2116      <param name="testInstanceState">The test instance state, not null</param>
2117    </member>
2118    <member name="T:MbUnit.Framework.TestFixtureAttribute">
2119      <summary>The test fixture attribute is applied to a class that contains a suite of related test cases. If an error occurs while initializing the fixture or if at least one of the test cases within the fixture fails, then the fixture itself will be deemed to have failed. Otherwise the fixture will pass. Output from the fixture, such as text written to the console, is captured by the framework and will be included in the test report.</summary>
2120    </member>
2121    <member name="T:MbUnit.Framework.TestsOnAttribute">
2122      <summary>Associates the name of the type under test with a test fixture, test method, test parameter or other test component. The type under test helps to describe which type is primarily being exercised by the test so that we can quickly identify which tests to run after making changes to a given type.</summary>
2123    </member>
2124    <member name="P:MbUnit.Framework.TestsOnAttribute.TypeName">
2125      <summary>Gets the full name or assembly qualified name of the type under test.</summary>
2126      <value>The name of the type under test as obtained by <see cref="P:System.Type.FullName" /> or <see cref="P:System.Type.AssemblyQualifiedName" />.</value>
2127    </member>
2128    <member name="M:MbUnit.Framework.TestsOnAttribute.Apply(Gallio.Model.MetadataMap)">
2129      <summary>Applies metadata contributions the metadata map of a test component.</summary>
2130      <param name="metadata">The metadata map</param>
2131    </member>
2132    <member name="T:MbUnit.Framework.ThreadedRepeatAttribute">
2133      <summary>This attribute decorates a test method and causes it to be invoked repeatedly on multiple concurrent threads.</summary>
2134    </member>
2135    <member name="M:MbUnit.Framework.ThreadedRepeatAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
2136      <summary>
2137        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
2138        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
2139      </summary>
2140      <param name="scope">The scope</param>
2141      <param name="codeElement">The code element</param>
2142    </member>
2143    <member name="T:MbUnit.Framework.TimeoutAttribute">
2144      <summary>Sets the maximum amount of time that a test or fixture is permitted to run.</summary>
2145    </member>
2146    <member name="P:MbUnit.Framework.TimeoutAttribute.TimeoutSeconds">
2147      <summary>Gets the timeout in seconds.</summary>
2148    </member>
2149    <member name="M:MbUnit.Framework.TimeoutAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
2150      <summary>
2151        <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
2152        <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
2153      </summary>
2154      <param name="scope">The scope</param>
2155      <param name="codeElement">The code element</param>
2156    </member>
2157    <member name="T:MbUnit.Framework.Importance">
2158      <summary>Specifies the test's relative importance which can be used for classifying tests to be executed.</summary>
2159    </member>
2160    <member name="F:MbUnit.Framework.Importance.Critical">
2161      <summary>Critical importance.</summary>
2162    </member>
2163    <member name="F:MbUnit.Framework.Importance.Severe">
2164      <summary>Severe importance. Less important than <see cref="F:MbUnit.Framework.Importance.Critical" />.</summary>
2165    </member>
2166    <member name="F:MbUnit.Framework.Importance.Serious">
2167      <summary>Serious importance. Less important than <see cref="F:MbUnit.Framework.Importance.Severe" />.</summary>
2168    </member>
2169    <member name="F:MbUnit.Framework.Importance.Default">
2170      <summary>Default importance.</summary>
2171    </member>
2172    <member name="F:MbUnit.Framework.Importance.NoOneReallyCaresAbout">
2173      <summary>Not important.</summary>
2174    </member>
2175    <member name="T:MbUnit.Framework.ContractVerifiers.ContractVerifier`1">
2176      <summary>
2177        <para> An abstract base class for test fixtures that verify contracts. </para>
2178        <para> A contract verifier embodied tests designed to ensure that a particular type meets a particular contract. To use a contract verifier, create a subclass of the appropriate subclass of <see cref="T:MbUnit.Framework.ContractVerifiers.ContractVerifier`1" /> and implement the required methods. The subclass will be a test fixture that verifies the specified contract. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2179      <typeparam name="T">The type that implements the contract that is to be verified</typeparam>
2180    </member>
2181    <member name="T:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1">
2182      <summary>
2183        <para> Verifies the equality contract for an equatable type. </para>
2184        <para> Built-in verifications: <list type="bullet"><item>Equality and difference according to <see cref="M:System.Object.Equals(System.Object)" /></item><item>Equality and difference according to <see cref="M:System.IEquatable`1.Equals(`0)" /></item><item>Equality and difference according to the '==' and '!=' operators</item><item>Equal objects have the same hashcode according to <see cref="M:System.Object.GetHashCode" /></item></list></para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2185    </member>
2186    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.EquatableEquals">
2187      <summary>Verifies <see cref="M:System.IEquatable`1.Equals(`0)" />.</summary>
2188    </member>
2189    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.GetDistinctInstances">
2190      <summary>
2191        <para> Gets distinct instances of <typeparamref name="T" />. </para>
2192        <para> Each instance within the sequence should be distinct from all of the others within the same sequence. However, this method should return sequences that are equal to each other each time. </para>
2193        <para> The sequence should contain at least 2 distinct instances. </para>
2194      </summary>
2195      <returns>The distinct instances</returns>
2196    </member>
2197    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.ObjectEquals">
2198      <summary>Verifies <see cref="M:System.Object.Equals(System.Object)" />.</summary>
2199    </member>
2200    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.ObjectGetHashCode">
2201      <summary>Verifies <see cref="M:System.Object.GetHashCode" />.</summary>
2202    </member>
2203    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.OperatorEquals">
2204      <summary>Verifies the "==" operator.</summary>
2205    </member>
2206    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.OperatorNotEquals">
2207      <summary>Verifies the "!=" operator.</summary>
2208    </member>
2209    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.VerifyEqualityContract(Gallio.Func{`0,`0,System.Boolean})">
2210      <summary>Ensures that an equality operations is correctly implemented.</summary>
2211      <param name="equals">The equality operation</param>
2212    </member>
2213    <member name="M:MbUnit.Framework.ContractVerifiers.EqualityContractVerifier`1.VerifyHashCodeContract(Gallio.Func{`0,System.Int32})">
2214      <summary>Ensures that a hash code operation is correctly implemented.</summary>
2215      <param name="getHashCode">The hash code operation</param>
2216    </member>
2217    <member name="T:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1">
2218      <summary>
2219        <para> Verifies the equality contract for an exception type. </para>
2220        <para> Built-in verifications: <list type="bullet"><item>The exception has the <see cref="T:System.SerializableAttribute" /> attribute.</item><item>The exception type has a protected serialization constructor similar to <see cref="M:System.Exception.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />.</item><item>If the exception type has standard constructors similar to <see cref="M:System.Exception.#ctor" />, <see cref="M:System.Exception.#ctor(System.String)" /> or <see cref="M:System.Exception.#ctor(System.String,System.Exception)" />, then verifies that they are well defined. If any of these constructions are not intended to be defined, override the appropriate test method to disable it.</item></list></para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2221    </member>
2222    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.AssertMessageAndInnerExceptionPreservedByRoundTripSerialization(`0)">
2223      <summary>Verifies that the <see cref="P:System.Exception.Message" /> and <see cref="P:System.Exception.InnerException" /> properties are preserved by round-trip serialization.</summary>
2224      <param name="instance">The instance</param>
2225    </member>
2226    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.CreateInstanceUsingDefaultConstructor">
2227      <summary>Creates an exception instance using the default constructor. Returns null if not supported.</summary>
2228      <returns>The instance, or null if not supported</returns>
2229    </member>
2230    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.CreateInstanceUsingStandardMessageAndInnerExceptionConstructor(System.String,System.Exception)">
2231      <summary>Creates an exception instance using the standard 2 argument constructor with a message string and inner exception. Returns null if not supported.</summary>
2232      <param name="message">The message text</param>
2233      <param name="innerException">The inner exception</param>
2234      <returns>The instance, or null if not supported</returns>
2235    </member>
2236    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.CreateInstanceUsingStandardMessageConstructor(System.String)">
2237      <summary>Creates an exception instance using the standard 1 argument constructor with a message string. Returns null if not supported.</summary>
2238      <param name="message">The message text</param>
2239      <returns>The instance, or null if not supported</returns>
2240    </member>
2241    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.DefaultConstructorIsWellDefined">
2242      <summary>Ensures that the exception has a well-defined default constructor.</summary>
2243    </member>
2244    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.HasSerializableAttribute">
2245      <summary>Ensures that the exception has a <see cref="T:System.SerializableAttribute" /> attribute.</summary>
2246    </member>
2247    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.HasSerializationConstructor">
2248      <summary>Ensures that the exception has a non-public serialization constructor.</summary>
2249    </member>
2250    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.RoundTripSerialize(`0)">
2251      <summary>Performs round-trip serialization of the exception and returns the result.</summary>
2252      <param name="instance">The instance</param>
2253      <returns>The instance produced after serialization and deserialization</returns>
2254    </member>
2255    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.StandardMessageAndInnerExceptionConstructorIsWellDefined(System.String,System.Boolean)">
2256      <summary>Ensures that the exception has a well-defined two argument message and inner exception constructor.</summary>
2257    </member>
2258    <member name="M:MbUnit.Framework.ContractVerifiers.ExceptionContractVerifier`1.StandardMessageConstructorIsWellDefined(System.String)">
2259      <summary>Ensures that the exception has a well-defined single argument message constructor.</summary>
2260    </member>
2261    <member name="T:MbUnit.Framework.ContractVerifiers.IDistinctInstanceProvider`1">
2262      <summary>Provides distinct instances of a particular type.</summary>
2263      <typeparam name="T">The type of object to provide</typeparam>
2264    </member>
2265    <member name="M:MbUnit.Framework.ContractVerifiers.IDistinctInstanceProvider`1.GetDistinctInstances">
2266      <summary>
2267        <para> Gets distinct instances of <typeparamref name="T" />. </para>
2268        <para> Each instance within the sequence should be distinct from all of the others within the same sequence. However, this method should return sequences that are equal to each other each time. </para>
2269        <para> The sequence should contain at least 2 distinct instances. </para>
2270      </summary>
2271      <returns>The distinct instances</returns>
2272    </member>
2273    <member name="T:MbUnit.Framework.Reflection.ReflectionException">
2274      <summary>Indicates that a reflection operation performed by <see cref="T:MbUnit.Framework.Reflection.Reflector" /> failed.</summary>
2275    </member>
2276    <member name="T:MbUnit.Framework.Reflection.Reflector">
2277      <summary>Helps to test non-public classes and class members.</summary>
2278    </member>
2279    <member name="M:MbUnit.Framework.Reflection.Reflector.CreateInstance(System.String,System.String)">
2280      <summary>Create Instance</summary>
2281      <param name="assemblyName">Full assembly path.</param>
2282      <param name="typeName">Type Name such as (System.String)</param>
2283      <returns>Newly created object.</returns>
2284    </member>
2285    <member name="M:MbUnit.Framework.Reflection.Reflector.CreateInstance(System.String,System.String,System.Object[])">
2286      <summary>Create Instance</summary>
2287      <param name="assemblyName">Full assembly path.</param>
2288      <param name="typeName">Type Name such as (System.String)</param>
2289      <param name="args">Constructor parameters.</param>
2290      <returns>Newly created object.</returns>
2291    </member>
2292    <member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.Object,System.String)">
2293      <summary>Get public, non-public, or static field value.</summary>
2294      <param name="obj">Object where field is defined.</param>
2295      <param name="fieldName">Field name.</param>
2296      <returns>Field value</returns>
2297    </member>
2298    <member name="M:MbUnit.Framework.Reflection.Reflector.GetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String)">
2299      <summary>Get field value.</summary>
2300      <param name="access">Specify field access modifier.</param>
2301      <param name="obj">Object where field is defined.</param>
2302      <param name="fieldName">Field name.</param>
2303      <returns>Field value</returns>
2304    </member>
2305    <member name="M:MbUnit.Framework.Reflection.Reflector.GetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean)">
2306      <summary>Get field value.</summary>
2307      <param name="access">Specify field access modifier.</param>
2308      <param name="obj">Object where field is defined.</param>
2309      <param name="fieldName">Field name.</param>
2310      <param name="lookInBase">Specify if need to look in Base classes.</param>
2311      <returns>Field value</returns>
2312    </member>
2313    <member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String)">
2314      <summary>Get public, non-public, or static field value.</summary>
2315      <param name="fieldName">Field name.</param>
2316      <returns>Field value</returns>
2317    </member>
2318    <member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String,MbUnit.Framework.Reflection.AccessModifier)">
2319      <summary>Get field value.</summary>
2320      <param name="fieldName">Field name.</param>
2321      <param name="access">Specify field access modifier.</param>
2322      <returns>Field value</returns>
2323    </member>
2324    <member name="M:MbUnit.Framework.Reflection.Reflector.GetField(System.String,MbUnit.Framework.Reflection.AccessModifier,System.Boolean)">
2325      <summary>Get field value.</summary>
2326      <param name="fieldName">Field name.</param>
2327      <param name="access">Specify field access modifier.</param>
2328      <param name="lookInBase">Specify if need to look in Base classes.</param>
2329      <returns>Field value</returns>
2330    </member>
2331    <member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(System.Object,System.String)">
2332      <summary>Get Property Value</summary>
2333      <param name="obj">Object where property is defined.</param>
2334      <param name="propertyName">Property Name.</param>
2335      <returns>Property Value.</returns>
2336    </member>
2337    <member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String)">
2338      <summary>Get Property Value</summary>
2339      <param name="access">Specify property access modifier.</param>
2340      <param name="obj">Object that has the property.</param>
2341      <param name="propertyName">Property Name.</param>
2342      <returns>Property Value.</returns>
2343    </member>
2344    <member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean)">
2345      <summary>Get Property Value</summary>
2346      <param name="access">Specify property access modifier.</param>
2347      <param name="obj">Object that has the property.</param>
2348      <param name="propertyName">Property Name.</param>
2349      <param name="lookInBase">Set to true if need look for the property in base classes.</param>
2350      <returns>Property Value.</returns>
2351    </member>
2352    <member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(System.String)">
2353      <summary>Get Property Value</summary>
2354      <param name="propertyName">Property Name.</param>
2355      <returns>Property Value.</returns>
2356    </member>
2357    <member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String)">
2358      <summary>Get Property Value</summary>
2359      <param name="access">Specify property access modifier.</param>
2360      <param name="propertyName">Property Name.</param>
2361      <returns>Property Value.</returns>
2362    </member>
2363    <member name="M:MbUnit.Framework.Reflection.Reflector.GetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Boolean)">
2364      <summary>Get Property Value</summary>
2365      <param name="access">Specify property access modifier.</param>
2366      <param name="propertyName">Property Name.</param>
2367      <param name="lookInBase">Specify if need to look in Base classes.</param>
2368      <returns>Property Value.</returns>
2369    </member>
2370    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.Object,System.String)">
2371      <summary>Execute a NonPublic method with arguments on a object</summary>
2372      <param name="obj">Object where method is defined.</param>
2373      <param name="methodName">Method to call</param>
2374      <returns>The object the method should return.</returns>
2375    </member>
2376    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.Object,System.String,System.Object[])">
2377      <summary>Execute a NonPublic method with arguments on a object</summary>
2378      <param name="obj">Object where method is defined.</param>
2379      <param name="methodName">Method to call</param>
2380      <param name="methodParams">Method's parameters.</param>
2381      <returns>The object the method should return.</returns>
2382    </member>
2383    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object[])">
2384      <summary>Execute a NonPublic method with arguments on a object</summary>
2385      <param name="access">Specify method access modifier.</param>
2386      <param name="obj">Object where method is defined.</param>
2387      <param name="methodName">Method to call</param>
2388      <param name="methodParams">Method's parameters.</param>
2389      <returns>The object the method should return.</returns>
2390    </member>
2391    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Boolean,System.Object[])">
2392      <summary>Execute a NonPublic method with arguments on a object</summary>
2393      <param name="access">Specify method access modifier.</param>
2394      <param name="obj">Object where method is defined.</param>
2395      <param name="methodName">Method to call</param>
2396      <param name="lookInBase">Speicifies if to search for the method in the base classes or not.</param>
2397      <param name="methodParams">Method's parameters.</param>
2398      <returns>The object the method should return.</returns>
2399    </member>
2400    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.String)">
2401      <summary>Execute a NonPublic method with arguments on a object</summary>
2402      <param name="methodName">Method to call</param>
2403      <returns>The object the method should return.</returns>
2404    </member>
2405    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(System.String,System.Object[])">
2406      <summary>Execute a NonPublic method with arguments on a object</summary>
2407      <param name="methodName">Method to call</param>
2408      <param name="methodParams">Method's parameters.</param>
2409      <returns>The object the method should return.</returns>
2410    </member>
2411    <member name="M:MbUnit.Framework.Reflection.Reflector.InvokeMethod(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object[])">
2412      <summary>Execute a NonPublic method with arguments on a object</summary>
2413      <param name="methodName">Method to call</param>
2414      <param name="access">Specify method access modifier.</param>
2415      <param name="methodParams">Method's parameters.</param>
2416      <returns>The object the method should return.</returns>
2417    </member>
2418    <member name="M:MbUnit.Framework.Reflection.Reflector.SetField(System.Object,System.String,System.Object)">
2419      <summary>Set field value.</summary>
2420      <param name="obj">Object where field is defined.</param>
2421      <param name="fieldName">Field Name.</param>
2422      <param name="fieldValue">Field Value.</param>
2423    </member>
2424    <member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object)">
2425      <summary>Set field value.</summary>
2426      <param name="access">Specify field access modifier.</param>
2427      <param name="obj">Object where field is defined.</param>
2428      <param name="fieldName">Field Name.</param>
2429      <param name="fieldValue">Field Value.</param>
2430    </member>
2431    <member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object,System.Boolean)">
2432      <summary>Set field value.</summary>
2433      <param name="access">Specify field access modifier.</param>
2434      <param name="obj">Object where field is defined.</param>
2435      <param name="fieldName">Field Name.</param>
2436      <param name="fieldValue">Field Value.</param>
2437      <param name="lookInBase">Specify if need to look in Base classes.</param>
2438    </member>
2439    <member name="M:MbUnit.Framework.Reflection.Reflector.SetField(System.String,System.Object)">
2440      <summary>Set field value.</summary>
2441      <param name="fieldName">Field Name.</param>
2442      <param name="fieldValue">Field Value.</param>
2443    </member>
2444    <member name="M:MbUnit.Framework.Reflection.Reflector.SetField(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object)">
2445      <summary>Set field value.</summary>
2446      <param name="fieldName">Field Name.</param>
2447      <param name="fieldValue">Field Value.</param>
2448      <param name="access">Specify field access modifier.</param>
2449    </member>
2450    <member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(System.Object,System.String,System.Object)">
2451      <summary>Set Property value.</summary>
2452      <param name="obj">Object where property is defined.</param>
2453      <param name="propertyName">Property Name.</param>
2454      <param name="propertyValue">Property Value.</param>
2455    </member>
2456    <member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object)">
2457      <summary>Set Property value.</summary>
2458      <param name="access">Specify property access modifier.</param>
2459      <param name="obj">Object where property is defined.</param>
2460      <param name="propertyName">Property Name.</param>
2461      <param name="propertyValue">Property Value.</param>
2462    </member>
2463    <member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.Object,System.String,System.Object,System.Boolean)">
2464      <summary>Set Property value.</summary>
2465      <param name="access">Specify property access modifier.</param>
2466      <param name="obj">Object where property is defined.</param>
2467      <param name="propertyName">Property Name.</param>
2468      <param name="propertyValue">Property Value.</param>
2469      <param name="lookInBase">Set to true if need look for the property in base classes.</param>
2470    </member>
2471    <member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(System.String,System.Object)">
2472      <summary>Set Property value.</summary>
2473      <param name="propertyName">Property Name.</param>
2474      <param name="propertyValue">Property Value.</param>
2475    </member>
2476    <member name="M:MbUnit.Framework.Reflection.Reflector.SetProperty(MbUnit.Framework.Reflection.AccessModifier,System.String,System.Object)">
2477      <summary>Set Property value.</summary>
2478      <param name="access">Specify property access modifier.</param>
2479      <param name="propertyName">Property Name.</param>
2480      <param name="propertyValue">Property Value.</param>
2481    </member>
2482    <member name="T:MbUnit.Framework.Reflection.AccessModifier">
2483      <summary>Access modifier of a class or class member.</summary>
2484    </member>
2485    <member name="F:MbUnit.Framework.Reflection.AccessModifier.Public">
2486      <summary>public</summary>
2487    </member>
2488    <member name="F:MbUnit.Framework.Reflection.AccessModifier.NonPublic">
2489      <summary>protected, internal, private</summary>
2490    </member>
2491    <member name="F:MbUnit.Framework.Reflection.AccessModifier.Static">
2492      <summary>static</summary>
2493    </member>
2494    <member name="F:MbUnit.Framework.Reflection.AccessModifier.Default">
2495      <summary>default that includes public, protected, internal, private, and static</summary>
2496    </member>
2497    <member name="T:MbUnit.Framework.Reflection.MemberType">
2498      <summary>Member types of a class.</summary>
2499    </member>
2500    <member name="F:MbUnit.Framework.Reflection.MemberType.Method">
2501      <summary>Method</summary>
2502    </member>
2503    <member name="F:MbUnit.Framework.Reflection.MemberType.Field">
2504      <summary>Field or variable</summary>
2505    </member>
2506    <member name="F:MbUnit.Framework.Reflection.MemberType.Property">
2507      <summary>Property</summary>
2508    </member>
2509    <member name="T:MbUnit.Framework.Xml.XmlSerializationAssert">
2510      <summary>Assertions based on Xml serialization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2511    </member>
2512    <member name="M:MbUnit.Framework.Xml.XmlSerializationAssert.AreEqualAfterRoundTrip``1(``0)">
2513      <summary>Performs XML serialization then deserialization of the specified object then compares the object to ensure that it equals the original.</summary>
2514      <typeparam name="T">The type of object to serialize</typeparam>
2515      <param name="obj">The object</param>
2516      <returns>The deserialized object after serialization</returns>
2517      <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
2518    </member>
2519    <member name="M:MbUnit.Framework.Xml.XmlSerializationAssert.IsXmlSerializable(System.Type)">
2520      <summary>Asserts that an <see cref="T:System.Xml.Serialization.XmlSerializer" /> can be produced for a <see cref="T:System.Type" />.</summary>
2521      <param name="t">The type to check</param>
2522    </member>
2523    <member name="M:MbUnit.Framework.Xml.XmlSerializationAssert.RoundTrip``1(``0)">
2524      <summary>Performs XML serialization then deserialization of the specified object.</summary>
2525      <typeparam name="T">The type of object to serialize</typeparam>
2526      <param name="obj">The object</param>
2527      <returns>The deserialized object after serialization</returns>
2528      <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
2529    </member>
2530  </members>
2531</doc>