main
   1<?xml version="1.0" encoding="utf-8"?>
   2<doc>
   3  <assembly>
   4    <name>MbUnit.Framework</name>
   5  </assembly>
   6  <members>
   7    <member name="T:MbUnit.Core.AssemblyEventArgs">
   8      <summary>Event argument that contains an assembly.</summary>
   9    </member>
  10    <member name="P:MbUnit.Core.Fixture.IsIgnored">
  11      <summary>Returns true if the entire test fixture is ignored.</summary>
  12    </member>
  13    <member name="T:MbUnit.Core.MethodSignature">
  14      <summary>TODO - Add class summary</summary>
  15    </member>
  16    <member name="T:MbUnit.Core.ResourceHelper">
  17      <summary>Static helper functions for retreiving resources This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
  18    </member>
  19    <member name="M:MbUnit.Core.ResourceHelper.CreateImages(System.String)">
  20      <summary>Creates and saves the images in the directory with the specified path.</summary>
  21      <param name="path">The directory path in which to save the images</param>
  22    </member>
  23    <member name="T:MbUnit.Core.RunPipe">
  24      <summary>This class represents the execution pipe of a test. It contains a sequence of <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</summary>
  25    </member>
  26    <member name="T:MbUnit.Core.RunPipeEventArgs">
  27      <summary>TODO - Add class summary</summary>
  28    </member>
  29    <member name="T:MbUnit.Core.TypeEventArgs">
  30      <summary>Event argument that carries a <see cref="P:MbUnit.Core.TypeEventArgs.Type" /> instance.</summary>
  31    </member>
  32    <member name="T:MbUnit.Core.TypeHelper">
  33      <summary>Helper static class for Type related tasks This class cannot be inherited.</summary>
  34    </member>
  35    <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type)">
  36      <summary>Creates an instance of the type <paramref name="t" /> using the default Method.</summary>
  37      <param name="t">type to instanciate</param>
  38      <returns>type <paramref name="t" /> instance</returns>
  39    </member>
  40    <member name="M:MbUnit.Core.TypeHelper.CreateInstance(System.Type,System.Object[])">
  41      <summary>Creates an instance of the type <paramref name="t" /> using the Method that matches the signature defined by <paramref name="args" /></summary>
  42      <param name="t">type to instanciate</param>
  43      <param name="args">argument of the Method</param>
  44      <returns>type <paramref name="t" /> instance initialized using <paramref name="args" /></returns>
  45    </member>
  46    <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethod(System.Type,System.Type)">
  47      <summary>Gets the first method of the type <paramref name="t" /> that is tagged by a <paramref name="customAttributeType" /> instance.</summary>
  48      <param name="t">type to test</param>
  49      <param name="customAttributeType">custom attribute type to search</param>
  50      <returns>First method of <paramref name="t" /> that that is tagged by a <paramref name="customAttributeType" /> instance, null if no method is tagged by the specified attribute type.</returns>
  51      <exception cref="T:System.ArgumentNullException">
  52        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
  53    </member>
  54    <member name="M:MbUnit.Core.TypeHelper.GetAttributedMethods(System.Type,System.Type)">
  55      <summary>Gets all methods of the type <paramref name="t" /> that are tagged by a <paramref name="customAttributeType" /> instance.</summary>
  56      <param name="t">type to test</param>
  57      <param name="customAttributeType">custom attribute type to search</param>
  58      <returns>
  59        <see cref="T:System.Reflection.MethodInfo" /> collection of type <paramref name="t" /> that that are tagged by a <paramref name="customAttributeType" /> instance.</returns>
  60      <exception cref="T:System.ArgumentNullException">
  61        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
  62    </member>
  63    <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Type[])">
  64      <summary>Retreives the <see cref="T:System.Reflection.MethodInfo" /> that matches the signature.</summary>
  65      <param name="t">type to test</param>
  66      <param name="types">Method parameter types</param>
  67      <returns>The <see cref="T:System.Reflection.MethodInfo" /> instance of <paramref name="t" /> matching the signature.</returns>
  68      <exception cref="T:System.ArgumentNullException">
  69        <paramref name="t" /> is a null reference</exception>
  70      <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException"> No Method of type <paramref name="t" /> match the signature defined by <paramref name="types" />. </exception>
  71    </member>
  72    <member name="M:MbUnit.Core.TypeHelper.GetConstructor(System.Type,System.Object[])">
  73      <summary>Retreives the <see cref="T:System.Reflection.MethodInfo" /> that matches the signature, given the list of arguments.</summary>
  74      <param name="t">type to test</param>
  75      <param name="args">Method arguments from which the signature is deduced</param>
  76      <returns>The <see cref="T:System.Reflection.MethodInfo" /> instance of <paramref name="t" /> matching the signature defined by the list of arguments.</returns>
  77      <exception cref="T:System.ArgumentNullException">
  78        <paramref name="t" /> is a null reference</exception>
  79      <exception cref="T:System.ArgumentNullException"> One of the args item is a null reference </exception>
  80      <exception cref="T:MbUnit.Core.Exceptions.MethodNotFoundException"> No Method of type <paramref name="t" /> match the signature defined by <paramref name="args" />. </exception>
  81    </member>
  82    <member name="M:MbUnit.Core.TypeHelper.GetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
  83      <summary>Gets the first instance of <paramref name="customAttributeType" /> from the method <paramref name="mi" /> custom attributes.</summary>
  84      <param name="mi">Method to test</param>
  85      <param name="customAttributeType">custom attribute type to search</param>
  86      <returns>First instance of <paramref name="customAttributeTyp" /> from the method <paramref name="mi" /> custom attributes.</returns>
  87      <exception cref="T:System.ArgumentNullException">
  88        <paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
  89      <exception cref="T:System.ArgumentException">
  90        <paramref name="mi" /> is not tagged by an attribute of type <paramref name="customAttributeType" /></exception>
  91    </member>
  92    <member name="M:MbUnit.Core.TypeHelper.GetIndexer(System.Type,System.Type[])">
  93      <summary>Retreives the indexer that matches the signature</summary>
  94      <param name="t">type that holds the indexer</param>
  95      <param name="args">indexer arguments</param>
  96    </member>
  97    <member name="M:MbUnit.Core.TypeHelper.GetValue(System.Reflection.PropertyInfo,System.Object,System.Object[])">
  98      <summary>Gets the value of the property <paramref name="pi" />.</summary>
  99      <param name="pi">property</param>
 100      <param name="o">object instnace</param>
 101      <param name="args">property arguments (in case of an indexer</param>
 102      <returns>property value</returns>
 103    </member>
 104    <member name="M:MbUnit.Core.TypeHelper.HasConstructor(System.Type,System.Type[])">
 105      <summary>Gets a value indicating if the type <paramref name="t" /> contains a Method with the signature defined by <paramref name="types" />.</summary>
 106      <param name="t">type to test</param>
 107      <param name="types">arguments of the Method</param>
 108      <returns>true if <paramref name="t" /> contains a Method matching types</returns>
 109      <exception cref="T:System.ArgumentNullException">t is a null reference</exception>
 110    </member>
 111    <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Type,System.Type)">
 112      <summary>Gets a value indicating if the <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
 113      <param name="t">method to test</param>
 114      <param name="customAttributeType">custom attribute type to search</param>
 115      <returns>true if <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
 116      <exception cref="T:System.ArgumentNullException">
 117        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
 118    </member>
 119    <member name="M:MbUnit.Core.TypeHelper.HasCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
 120      <summary>Gets a value indicating if the method info <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> instance.</summary>
 121      <param name="t">method to test</param>
 122      <param name="customAttributeType">custom attribute type to search</param>
 123      <returns>true if <paramref name="t" /> is tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
 124      <exception cref="T:System.ArgumentNullException">
 125        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
 126    </member>
 127    <member name="M:MbUnit.Core.TypeHelper.HasIndexer(System.Type,System.Type[])">
 128      <summary>Gets a value indicating if the type <paramref name="t" /> has an indexer that takes <paramref name="args" /> arguments.</summary>
 129      <param name="t">type that holds the indexer</param>
 130      <param name="args">indexer arguments</param>
 131      <returns>true if an indexer that matched the signature was found, false otherwise</returns>
 132    </member>
 133    <member name="M:MbUnit.Core.TypeHelper.HasMethodCustomAttribute(System.Type,System.Type)">
 134      <summary>Gets a value indicating the class type <paramref name="t" /> has a method that is tagged by a <paramref name="customAttributeType" /> instance.</summary>
 135      <param name="t">type to test</param>
 136      <param name="customAttributeType">custom attribute type to search</param>
 137      <returns>true if class type <paramref name="t" /> has a method tagged by a <paramref name="customAttributeType" /> attribute, false otherwise.</returns>
 138      <exception cref="T:System.ArgumentNullException">
 139        <paramref name="t" /> or <paramref name="customAttributeType" /> is a null reference </exception>
 140    </member>
 141    <member name="M:MbUnit.Core.TypeHelper.ParametersMatch(System.Reflection.ParameterInfo[],System.Type[])">
 142      <summary>Gets a value indicating if the <paramref name="parameters" /> match the <paramref name="types" /></summary>
 143      <param name="parameters">property or method paramter info</param>
 144      <param name="types">tested signature</param>
 145    </member>
 146    <member name="M:MbUnit.Core.TypeHelper.ShowMethodAttributes(System.Type)">
 147      <summary>Output the methods and their custom attributes to the console. (Debugging method)</summary>
 148      <param name="t">type to visit</param>
 149      <exception cref="T:System.ArgumentNullException">
 150        <paramref name="t" /> is a null reference </exception>
 151      <exception cref="T:System.ArgumentException">
 152        <paramref name="t" /> is anot a class type. </exception>
 153    </member>
 154    <member name="M:MbUnit.Core.TypeHelper.TryGetFirstCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type)">
 155      <summary>Gets the first instance of <paramref name="customAttributeType" /> from the method <paramref name="mi" /> custom attributes.</summary>
 156      <param name="mi">Method to test</param>
 157      <param name="customAttributeType">custom attribute type to search</param>
 158      <returns>First instance of <paramref name="customAttributeTyp" /> from the method <paramref name="mi" /> custom attributes; otherwize a null reference</returns>
 159      <exception cref="T:System.ArgumentNullException">
 160        <paramref name="mi" /> or <paramref name="customAttributeType" /> is a null reference </exception>
 161    </member>
 162    <member name="T:MbUnit.Core.AssemblyEventHandler">
 163      <summary>Assembly event delegate</summary>
 164    </member>
 165    <member name="T:MbUnit.Core.TypeEventHandler">
 166      <summary>Type event delegate</summary>
 167    </member>
 168    <member name="T:MbUnit.Core.Collections.AssemblyCollection">
 169      <summary>A collection of elements of type Assembly This class cannot be inherited.</summary>
 170    </member>
 171    <member name="P:MbUnit.Core.Collections.AssemblyCollection.Item(System.Int32)">
 172      <summary>Gets or sets the Assembly at the given index in this AssemblyCollection.</summary>
 173    </member>
 174    <member name="M:MbUnit.Core.Collections.AssemblyCollection.Add(System.Reflection.Assembly)">
 175      <summary>Adds an instance of type Assembly to the end of this AssemblyCollection.</summary>
 176      <param name="value">The Assembly to be added to the end of this AssemblyCollection.</param>
 177    </member>
 178    <member name="M:MbUnit.Core.Collections.AssemblyCollection.Contains(System.Reflection.Assembly)">
 179      <summary>Determines whether a specfic Assembly value is in this AssemblyCollection.</summary>
 180      <param name="value">The Assembly value to locate in this AssemblyCollection.</param>
 181      <returns>true if value is found in this AssemblyCollection; false otherwise.</returns>
 182    </member>
 183    <member name="M:MbUnit.Core.Collections.AssemblyCollection.GetEnumerator">
 184      <summary>Returns an enumerator that can iterate through the elements of this AssemblyCollection.</summary>
 185      <returns>An object that implements System.Collections.IEnumerator.</returns>
 186    </member>
 187    <member name="M:MbUnit.Core.Collections.AssemblyCollection.Remove(System.Reflection.Assembly)">
 188      <summary>Removes the first occurrence of a specific Assembly from this AssemblyCollection.</summary>
 189      <param name="value">The Assembly value to remove from this AssemblyCollection.</param>
 190    </member>
 191    <member name="T:MbUnit.Core.Collections.AssemblyCollection.Enumerator">
 192      <summary>Type-specific enumeration class, used by AssemblyCollection.GetEnumerator. This class cannot be inherited.</summary>
 193    </member>
 194    <member name="T:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary">
 195      <summary>A dictionary with keys of type Assembly and values of type TypeCollection This class cannot be inherited.</summary>
 196    </member>
 197    <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Item(System.Reflection.Assembly)">
 198      <summary>Gets or sets the TypeCollection associated with the given Assembly</summary>
 199      <param name="key">The Assembly whose value to get or set.</param>
 200    </member>
 201    <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Keys">
 202      <summary>Gets a collection containing the keys in this AssemblyTypeCollectionDictionary.</summary>
 203    </member>
 204    <member name="P:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Values">
 205      <summary>Gets a collection containing the values in this AssemblyTypeCollectionDictionary.</summary>
 206    </member>
 207    <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Add(System.Reflection.Assembly)">
 208      <summary>Adds an element with the specified key and value to this AssemblyTypeCollectionDictionary.</summary>
 209      <param name="key">The Assembly key of the element to add.</param>
 210    </member>
 211    <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Contains(System.Reflection.Assembly)">
 212      <summary>Determines whether this AssemblyTypeCollectionDictionary contains a specific key.</summary>
 213      <param name="key">The Assembly key to locate in this AssemblyTypeCollectionDictionary.</param>
 214      <returns>true if this AssemblyTypeCollectionDictionary contains an element with the specified key; otherwise, false.</returns>
 215    </member>
 216    <member name="M:MbUnit.Core.Collections.AssemblyFixtureCollectionDictionary.Remove(System.Reflection.Assembly)">
 217      <summary>Removes the element with the specified key from this AssemblyTypeCollectionDictionary.</summary>
 218      <param name="key">The Assembly key of the element to remove.</param>
 219    </member>
 220    <member name="M:MbUnit.Core.Collections.FixtureCollection.Add(MbUnit.Core.Fixture)">
 221      <summary>Adds an instance of type Fixture to the end of this FixtureCollection.</summary>
 222      <param name="value">The Fixture to be added to the end of this FixtureCollection.</param>
 223    </member>
 224    <member name="M:MbUnit.Core.Collections.FixtureCollection.Contains(MbUnit.Core.Fixture)">
 225      <summary>Determines whether a specfic Fixture value is in this FixtureCollection.</summary>
 226      <param name="value">The Fixture value to locate in this FixtureCollection.</param>
 227      <returns>true if value is found in this FixtureCollection; false otherwise.</returns>
 228    </member>
 229    <member name="M:MbUnit.Core.Collections.FixtureCollection.GetEnumerator">
 230      <summary>Returns an enumerator that can iterate through the elements of this FixtureCollection.</summary>
 231      <returns>An object that implements System.Collections.IEnumerator.</returns>
 232    </member>
 233    <member name="M:MbUnit.Core.Collections.FixtureCollection.Remove(MbUnit.Core.Fixture)">
 234      <summary>Removes the first occurrence of a specific Fixture from this FixtureCollection.</summary>
 235      <param name="value">The Fixture value to remove from this FixtureCollection.</param>
 236    </member>
 237    <member name="T:MbUnit.Core.Collections.FixtureCollection.Enumerator">
 238      <summary>Type-specific enumeration class, used by FixtureCollection.GetEnumerator. This class cannot be inherited.</summary>
 239    </member>
 240    <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection">
 241      <summary>A collection of elements of type IFixtureFactory This class cannot be inherited.</summary>
 242    </member>
 243    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Add(MbUnit.Core.IFixtureFactory)">
 244      <summary>Adds an instance of type IFixtureFactory to the end of this FixtureFactoryCollection.</summary>
 245      <param name="value">The IFixtureFactory to be added to the end of this FixtureFactoryCollection.</param>
 246    </member>
 247    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Contains(MbUnit.Core.IFixtureFactory)">
 248      <summary>Determines whether a specfic IFixtureFactory value is in this FixtureFactoryCollection.</summary>
 249      <param name="value">The IFixtureFactory value to locate in this FixtureFactoryCollection.</param>
 250      <returns>true if value is found in this FixtureFactoryCollection; false otherwise.</returns>
 251    </member>
 252    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.GetEnumerator">
 253      <summary>Returns an enumerator that can iterate through the elements of this FixtureFactoryCollection.</summary>
 254      <returns>An object that implements System.Collections.IEnumerator.</returns>
 255    </member>
 256    <member name="M:MbUnit.Core.Collections.FixtureFactoryCollection.Remove(MbUnit.Core.IFixtureFactory)">
 257      <summary>Removes the first occurrence of a specific IFixtureFactory from this FixtureFactoryCollection.</summary>
 258      <param name="value">The IFixtureFactory value to remove from this FixtureFactoryCollection.</param>
 259    </member>
 260    <member name="T:MbUnit.Core.Collections.FixtureFactoryCollection.Enumerator">
 261      <summary>Type-specific enumeration class, used by FixtureFactoryCollection.GetEnumerator. This class cannot be inherited.</summary>
 262    </member>
 263    <member name="T:MbUnit.Core.Collections.RunCollection">
 264      <summary>A collection of elements of type IRun This class cannot be inherited.</summary>
 265    </member>
 266    <member name="P:MbUnit.Core.Collections.RunCollection.Item(System.Int32)">
 267      <summary>Gets or sets the IRun at the given index in this RunCollection.</summary>
 268    </member>
 269    <member name="M:MbUnit.Core.Collections.RunCollection.Add(MbUnit.Core.Runs.IRun)">
 270      <summary>Adds an instance of type IRun to the end of this RunCollection.</summary>
 271      <param name="value">The IRun to be added to the end of this RunCollection.</param>
 272    </member>
 273    <member name="M:MbUnit.Core.Collections.RunCollection.Contains(MbUnit.Core.Runs.IRun)">
 274      <summary>Determines whether a specfic IRun value is in this RunCollection.</summary>
 275      <param name="value">The IRun value to locate in this RunCollection.</param>
 276      <returns>true if value is found in this RunCollection; false otherwise.</returns>
 277    </member>
 278    <member name="M:MbUnit.Core.Collections.RunCollection.GetEnumerator">
 279      <summary>Returns an enumerator that can iterate through the elements of this RunCollection.</summary>
 280      <returns>An object that implements System.Collections.IEnumerator.</returns>
 281    </member>
 282    <member name="M:MbUnit.Core.Collections.RunCollection.Remove(MbUnit.Core.Runs.IRun)">
 283      <summary>Removes the first occurrence of a specific IRun from this RunCollection.</summary>
 284      <param name="value">The IRun value to remove from this RunCollection.</param>
 285    </member>
 286    <member name="T:MbUnit.Core.Collections.RunCollection.Enumerator">
 287      <summary>Type-specific enumeration class, used by RunCollection.GetEnumerator. This class cannot be inherited.</summary>
 288    </member>
 289    <member name="T:MbUnit.Core.Collections.RunInvokerCollection">
 290      <summary>A collection of elements of type IRunInvoker This class cannot be inherited.</summary>
 291    </member>
 292    <member name="P:MbUnit.Core.Collections.RunInvokerCollection.Item(System.Int32)">
 293      <summary>Gets or sets the IRunInvoker at the given index in this IRunInvokerCollection.</summary>
 294    </member>
 295    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Add(MbUnit.Core.Invokers.IRunInvoker)">
 296      <summary>Adds an instance of type IRunInvoker to the end of this IRunInvokerCollection.</summary>
 297      <param name="value">The IRunInvoker to be added to the end of this IRunInvokerCollection.</param>
 298    </member>
 299    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Contains(MbUnit.Core.Invokers.IRunInvoker)">
 300      <summary>Determines whether a specfic IRunInvoker value is in this IRunInvokerCollection.</summary>
 301      <param name="value">The IRunInvoker value to locate in this IRunInvokerCollection.</param>
 302      <returns>true if value is found in this IRunInvokerCollection; false otherwise.</returns>
 303    </member>
 304    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.GetEnumerator">
 305      <summary>Returns an enumerator that can iterate through the elements of this IRunInvokerCollection.</summary>
 306      <returns>An object that implements System.Collections.IEnumerator.</returns>
 307    </member>
 308    <member name="M:MbUnit.Core.Collections.RunInvokerCollection.Remove(MbUnit.Core.Invokers.IRunInvoker)">
 309      <summary>Removes the first occurrence of a specific IRunInvoker from this IRunInvokerCollection.</summary>
 310      <param name="value">The IRunInvoker value to remove from this IRunInvokerCollection.</param>
 311    </member>
 312    <member name="T:MbUnit.Core.Collections.RunInvokerCollection.Enumerator">
 313      <summary>Type-specific enumeration class, used by IRunInvokerCollection.GetEnumerator. This class cannot be inherited.</summary>
 314    </member>
 315    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection">
 316      <summary>A collection of elements of type RunInvokerVertex This class cannot be inherited.</summary>
 317    </member>
 318    <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollection.Item(System.Int32)">
 319      <summary>Gets or sets the RunInvokerVertex at the given index in this RunInvokerVertexCollection.</summary>
 320    </member>
 321    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Add(MbUnit.Core.Invokers.RunInvokerVertex)">
 322      <summary>Adds an instance of type RunInvokerVertex to the end of this RunInvokerVertexCollection.</summary>
 323      <param name="value">The RunInvokerVertex to be added to the end of this RunInvokerVertexCollection.</param>
 324    </member>
 325    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Contains(MbUnit.Core.Invokers.RunInvokerVertex)">
 326      <summary>Determines whether a specfic RunInvokerVertex value is in this RunInvokerVertexCollection.</summary>
 327      <param name="value">The RunInvokerVertex value to locate in this RunInvokerVertexCollection.</param>
 328      <returns>true if value is found in this RunInvokerVertexCollection; false otherwise.</returns>
 329    </member>
 330    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.GetEnumerator">
 331      <summary>Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollection.</summary>
 332      <returns>An object that implements System.Collections.IEnumerator.</returns>
 333    </member>
 334    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollection.Remove(MbUnit.Core.Invokers.RunInvokerVertex)">
 335      <summary>Removes the first occurrence of a specific RunInvokerVertex from this RunInvokerVertexCollection.</summary>
 336      <param name="value">The RunInvokerVertex value to remove from this RunInvokerVertexCollection.</param>
 337    </member>
 338    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollection.Enumerator">
 339      <summary>Type-specific enumeration class, used by RunInvokerVertexCollection.GetEnumerator. This class cannot be inherited.</summary>
 340    </member>
 341    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection">
 342      <summary>A collection of elements of type RunInvokerVertexCollection This class cannot be inherited.</summary>
 343    </member>
 344    <member name="P:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Item(System.Int32)">
 345      <summary>Gets or sets the RunInvokerVertexCollection at the given index in this RunInvokerVertexCollectionCollection.</summary>
 346    </member>
 347    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Add(MbUnit.Core.Collections.RunInvokerVertexCollection)">
 348      <summary>Adds an instance of type RunInvokerVertexCollection to the end of this RunInvokerVertexCollectionCollection.</summary>
 349      <param name="value">The RunInvokerVertexCollection to be added to the end of this RunInvokerVertexCollectionCollection.</param>
 350    </member>
 351    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Contains(MbUnit.Core.Collections.RunInvokerVertexCollection)">
 352      <summary>Determines whether a specfic RunInvokerVertexCollection value is in this RunInvokerVertexCollectionCollection.</summary>
 353      <param name="value">The RunInvokerVertexCollection value to locate in this RunInvokerVertexCollectionCollection.</param>
 354      <returns>true if value is found in this RunInvokerVertexCollectionCollection; false otherwise.</returns>
 355    </member>
 356    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.GetEnumerator">
 357      <summary>Returns an enumerator that can iterate through the elements of this RunInvokerVertexCollectionCollection.</summary>
 358      <returns>An object that implements System.Collections.IEnumerator.</returns>
 359    </member>
 360    <member name="M:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Remove(MbUnit.Core.Collections.RunInvokerVertexCollection)">
 361      <summary>Removes the first occurrence of a specific RunInvokerVertexCollection from this RunInvokerVertexCollectionCollection.</summary>
 362      <param name="value">The RunInvokerVertexCollection value to remove from this RunInvokerVertexCollectionCollection.</param>
 363    </member>
 364    <member name="T:MbUnit.Core.Collections.RunInvokerVertexCollectionCollection.Enumerator">
 365      <summary>Type-specific enumeration class, used by RunInvokerVertexCollectionCollection.GetEnumerator. This class cannot be inherited.</summary>
 366    </member>
 367    <member name="T:MbUnit.Core.Collections.RunPipeCollection">
 368      <summary>A collection of elements of type RunPipe This class cannot be inherited.</summary>
 369    </member>
 370    <member name="P:MbUnit.Core.Collections.RunPipeCollection.Item(System.Int32)">
 371      <summary>Gets or sets the RunPipe at the given index in this RunPipeCollection.</summary>
 372    </member>
 373    <member name="M:MbUnit.Core.Collections.RunPipeCollection.Add(MbUnit.Core.RunPipe)">
 374      <summary>Adds an instance of type RunPipe to the end of this RunPipeCollection.</summary>
 375      <param name="value">The RunPipe to be added to the end of this RunPipeCollection.</param>
 376    </member>
 377    <member name="M:MbUnit.Core.Collections.RunPipeCollection.Contains(MbUnit.Core.RunPipe)">
 378      <summary>Determines whether a specfic RunPipe value is in this RunPipeCollection.</summary>
 379      <param name="value">The RunPipe value to locate in this RunPipeCollection.</param>
 380      <returns>true if value is found in this RunPipeCollection; false otherwise.</returns>
 381    </member>
 382    <member name="M:MbUnit.Core.Collections.RunPipeCollection.GetEnumerator">
 383      <summary>Returns an enumerator that can iterate through the elements of this RunPipeCollection.</summary>
 384      <returns>An object that implements System.Collections.IEnumerator.</returns>
 385    </member>
 386    <member name="M:MbUnit.Core.Collections.RunPipeCollection.Remove(MbUnit.Core.RunPipe)">
 387      <summary>Removes the first occurrence of a specific RunPipe from this RunPipeCollection.</summary>
 388      <param name="value">The RunPipe value to remove from this RunPipeCollection.</param>
 389    </member>
 390    <member name="T:MbUnit.Core.Collections.RunPipeCollection.Enumerator">
 391      <summary>Type-specific enumeration class, used by RunPipeCollection.GetEnumerator. This class cannot be inherited.</summary>
 392    </member>
 393    <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection">
 394      <summary>A collection of elements of type IRunPipeListener This class cannot be inherited.</summary>
 395    </member>
 396    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Add(MbUnit.Core.IRunPipeListener)">
 397      <summary>Adds an instance of type IRunPipeListener to the end of this RunPipeListenerCollection.</summary>
 398      <param name="value">The IRunPipeListener to be added to the end of this RunPipeListenerCollection.</param>
 399    </member>
 400    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Contains(MbUnit.Core.IRunPipeListener)">
 401      <summary>Determines whether a specfic IRunPipeListener value is in this RunPipeListenerCollection.</summary>
 402      <param name="value">The IRunPipeListener value to locate in this RunPipeListenerCollection.</param>
 403      <returns>true if value is found in this RunPipeListenerCollection; false otherwise.</returns>
 404    </member>
 405    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.GetEnumerator">
 406      <summary>Returns an enumerator that can iterate through the elements of this RunPipeListenerCollection.</summary>
 407      <returns>An object that implements System.Collections.IEnumerator.</returns>
 408    </member>
 409    <member name="M:MbUnit.Core.Collections.RunPipeListenerCollection.Remove(MbUnit.Core.IRunPipeListener)">
 410      <summary>Removes the first occurrence of a specific IRunPipeListener from this RunPipeListenerCollection.</summary>
 411      <param name="value">The IRunPipeListener value to remove from this RunPipeListenerCollection.</param>
 412    </member>
 413    <member name="T:MbUnit.Core.Collections.RunPipeListenerCollection.Enumerator">
 414      <summary>Type-specific enumeration class, used by RunPipeListenerCollection.GetEnumerator. This class cannot be inherited.</summary>
 415    </member>
 416    <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection">
 417      <summary>A collection of elements of type RunPipeStarter This class cannot be inherited.</summary>
 418    </member>
 419    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Add(MbUnit.Core.RunPipeStarter)">
 420      <summary>Adds an instance of type RunPipeStarter to the end of this RunPipeStarterCollection.</summary>
 421      <param name="value">The RunPipeStarter to be added to the end of this RunPipeStarterCollection.</param>
 422    </member>
 423    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Contains(MbUnit.Core.RunPipeStarter)">
 424      <summary>Determines whether a specfic RunPipeStarter value is in this RunPipeStarterCollection.</summary>
 425      <param name="value">The RunPipeStarter value to locate in this RunPipeStarterCollection.</param>
 426      <returns>true if value is found in this RunPipeStarterCollection; false otherwise.</returns>
 427    </member>
 428    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.GetEnumerator">
 429      <summary>Returns an enumerator that can iterate through the elements of this RunPipeStarterCollection.</summary>
 430      <returns>An object that implements System.Collections.IEnumerator.</returns>
 431    </member>
 432    <member name="M:MbUnit.Core.Collections.RunPipeStarterCollection.Remove(MbUnit.Core.RunPipeStarter)">
 433      <summary>Removes the first occurrence of a specific RunPipeStarter from this RunPipeStarterCollection.</summary>
 434      <param name="value">The RunPipeStarter value to remove from this RunPipeStarterCollection.</param>
 435    </member>
 436    <member name="T:MbUnit.Core.Collections.RunPipeStarterCollection.Enumerator">
 437      <summary>Type-specific enumeration class, used by RunPipeStarterCollection.GetEnumerator. This class cannot be inherited.</summary>
 438    </member>
 439    <member name="T:MbUnit.Core.Collections.RunVertexDictionary">
 440      <summary>A dictionary with keys of type IRun and values of type RunVertex This class cannot be inherited.</summary>
 441    </member>
 442    <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Item(MbUnit.Core.Runs.IRun)">
 443      <summary>Gets or sets the RunVertex associated with the given IRun</summary>
 444      <param name="key">The IRun whose value to get or set.</param>
 445    </member>
 446    <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Keys">
 447      <summary>Gets a collection containing the keys in this RunVertexDictionary.</summary>
 448    </member>
 449    <member name="P:MbUnit.Core.Collections.RunVertexDictionary.Values">
 450      <summary>Gets a collection containing the values in this RunVertexDictionary.</summary>
 451    </member>
 452    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Add(MbUnit.Core.Runs.IRun,MbUnit.Core.Runs.RunVertex)">
 453      <summary>Adds an element with the specified key and value to this RunVertexDictionary.</summary>
 454      <param name="key">The IRun key of the element to add.</param>
 455      <param name="value">The RunVertex value of the element to add.</param>
 456    </member>
 457    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Contains(MbUnit.Core.Runs.IRun)">
 458      <summary>Determines whether this RunVertexDictionary contains a specific key.</summary>
 459      <param name="key">The IRun key to locate in this RunVertexDictionary.</param>
 460      <returns>true if this RunVertexDictionary contains an element with the specified key; otherwise, false.</returns>
 461    </member>
 462    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.ContainsValue(MbUnit.Core.Runs.RunVertex)">
 463      <summary>Determines whether this RunVertexDictionary contains a specific value.</summary>
 464      <param name="value">The RunVertex value to locate in this RunVertexDictionary.</param>
 465      <returns>true if this RunVertexDictionary contains an element with the specified value; otherwise, false.</returns>
 466    </member>
 467    <member name="M:MbUnit.Core.Collections.RunVertexDictionary.Remove(MbUnit.Core.Runs.IRun)">
 468      <summary>Removes the element with the specified key from this RunVertexDictionary.</summary>
 469      <param name="key">The IRun key of the element to remove.</param>
 470    </member>
 471    <member name="T:MbUnit.Core.Collections.ThreadCollection">
 472      <summary>A collection of elements of type Thread This class cannot be inherited.</summary>
 473    </member>
 474    <member name="P:MbUnit.Core.Collections.ThreadCollection.Item(System.Int32)">
 475      <summary>Gets or sets the Thread at the given index in this ThreadCollection.</summary>
 476    </member>
 477    <member name="M:MbUnit.Core.Collections.ThreadCollection.Add(System.Threading.Thread)">
 478      <summary>Adds an instance of type Thread to the end of this ThreadCollection.</summary>
 479      <param name="value">The Thread to be added to the end of this ThreadCollection.</param>
 480    </member>
 481    <member name="M:MbUnit.Core.Collections.ThreadCollection.Contains(System.Threading.Thread)">
 482      <summary>Determines whether a specfic Thread value is in this ThreadCollection.</summary>
 483      <param name="value">The Thread value to locate in this ThreadCollection.</param>
 484      <returns>true if value is found in this ThreadCollection; false otherwise.</returns>
 485    </member>
 486    <member name="M:MbUnit.Core.Collections.ThreadCollection.GetEnumerator">
 487      <summary>Returns an enumerator that can iterate through the elements of this ThreadCollection.</summary>
 488      <returns>An object that implements System.Collections.IEnumerator.</returns>
 489    </member>
 490    <member name="M:MbUnit.Core.Collections.ThreadCollection.Remove(System.Threading.Thread)">
 491      <summary>Removes the first occurrence of a specific Thread from this ThreadCollection.</summary>
 492      <param name="value">The Thread value to remove from this ThreadCollection.</param>
 493    </member>
 494    <member name="T:MbUnit.Core.Collections.ThreadCollection.Enumerator">
 495      <summary>Type-specific enumeration class, used by ThreadCollection.GetEnumerator. This class cannot be inherited.</summary>
 496    </member>
 497    <member name="T:MbUnit.Core.Collections.TypeCollection">
 498      <summary>A collection of elements of type Type This class cannot be inherited.</summary>
 499    </member>
 500    <member name="P:MbUnit.Core.Collections.TypeCollection.Item(System.Int32)">
 501      <summary>Gets or sets the Type at the given index in this TypeCollection.</summary>
 502    </member>
 503    <member name="M:MbUnit.Core.Collections.TypeCollection.Add(System.Type)">
 504      <summary>Adds an instance of type Type to the end of this TypeCollection.</summary>
 505      <param name="value">The Type to be added to the end of this TypeCollection.</param>
 506    </member>
 507    <member name="M:MbUnit.Core.Collections.TypeCollection.Contains(System.Type)">
 508      <summary>Determines whether a specfic Type value is in this TypeCollection.</summary>
 509      <param name="value">The Type value to locate in this TypeCollection.</param>
 510      <returns>true if value is found in this TypeCollection; false otherwise.</returns>
 511    </member>
 512    <member name="M:MbUnit.Core.Collections.TypeCollection.GetEnumerator">
 513      <summary>Returns an enumerator that can iterate through the elements of this TypeCollection.</summary>
 514      <returns>An object that implements System.Collections.IEnumerator.</returns>
 515    </member>
 516    <member name="M:MbUnit.Core.Collections.TypeCollection.Remove(System.Type)">
 517      <summary>Removes the first occurrence of a specific Type from this TypeCollection.</summary>
 518      <param name="value">The Type value to remove from this TypeCollection.</param>
 519    </member>
 520    <member name="T:MbUnit.Core.Collections.TypeCollection.Enumerator">
 521      <summary>Type-specific enumeration class, used by TypeCollection.GetEnumerator. This class cannot be inherited.</summary>
 522    </member>
 523    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute">
 524      <summary>Allows control of command line parsing. Attach this attribute to instance fields of types used as the destination of command line argument parsing.</summary>
 525    </member>
 526    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultLongName">
 527      <summary>Returns true if the argument did not have an explicit long name specified.</summary>
 528    </member>
 529    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.DefaultShortName">
 530      <summary>Returns true if the argument did not have an explicit short name specified.</summary>
 531    </member>
 532    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.LongName">
 533      <summary>The long name of the argument.</summary>
 534    </member>
 535    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.ShortName">
 536      <summary>The short name of the argument.</summary>
 537    </member>
 538    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentAttribute.Type">
 539      <summary>The error checking to be done on the argument.</summary>
 540    </member>
 541    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser">
 542      <summary>Parser for command line arguments.</summary>
 543    </member>
 544    <member name="P:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Usage">
 545      <summary>A user friendly usage string describing the command line argument syntax.</summary>
 546    </member>
 547    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineArgumentParser.Parse(System.String[],System.Object)">
 548      <summary>Parses an argument list.</summary>
 549      <param name="args">The arguments to parse.</param>
 550      <param name="destination">The destination of the parsed arguments.</param>
 551      <returns>true if no parse errors were encountered.</returns>
 552    </member>
 553    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineUtility">
 554      <summary>Useful Stuff. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
 555    </member>
 556    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineUtility.NewLine">
 557      <summary>The System Defined new line string. This field is constant and read-only.</summary>
 558    </member>
 559    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.CommandLineArgumentsUsage(System.Type)">
 560      <summary>Returns a Usage string for command line argument parsing. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
 561      <param name="argumentType">The type of the arguments to display usage for.</param>
 562      <returns>Printable string containing a user friendly description of command line arguments.</returns>
 563    </member>
 564    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object)">
 565      <summary>Parses Command Line Arguments. Errors are output on Console.Error. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
 566      <param name="arguments">The actual arguments.</param>
 567      <param name="destination">The resulting parsed arguments.</param>
 568    </member>
 569    <member name="M:MbUnit.Core.Cons.CommandLine.CommandLineUtility.ParseCommandLineArguments(System.String[],System.Object,MbUnit.Core.Cons.CommandLine.ErrorReporter)">
 570      <summary>Parses Command Line Arguments. Use CommandLineArgumentAttributes to control parsing behaviour.</summary>
 571      <param name="arguments">The actual arguments.</param>
 572      <param name="destination">The resulting parsed arguments.</param>
 573      <param name="reporter">The destination for parse errors.</param>
 574    </member>
 575    <member name="T:MbUnit.Core.Cons.CommandLine.DefaultCommandLineArgumentAttribute">
 576      <summary>Indicates that this argument is the default argument. '/' or '-' prefix only the argument value is specified.</summary>
 577    </member>
 578    <member name="T:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType">
 579      <summary>Used to control parsing of command line arguments.</summary>
 580    </member>
 581    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Required">
 582      <summary>Indicates that this field is required. An error will be displayed if it is not present when parsing arguments.</summary>
 583    </member>
 584    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Unique">
 585      <summary>Only valid in conjunction with Multiple. Duplicate values will result in an error.</summary>
 586    </member>
 587    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.Multiple">
 588      <summary>Inidicates that the argument may be specified more than once. Only valid if the argument is a collection</summary>
 589    </member>
 590    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.AtMostOnce">
 591      <summary>The default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once.</summary>
 592    </member>
 593    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.LastOccurenceWins">
 594      <summary>For non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list.</summary>
 595    </member>
 596    <member name="F:MbUnit.Core.Cons.CommandLine.CommandLineArgumentType.MultipleUnique">
 597      <summary>The default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported.</summary>
 598    </member>
 599    <member name="T:MbUnit.Core.Cons.CommandLine.ErrorReporter">
 600      <summary>A delegate used in error reporting.</summary>
 601    </member>
 602    <member name="T:MbUnit.Core.Exceptions.AssertionException">
 603      <summary>Base class for MbUnit exceptions</summary>
 604    </member>
 605    <member name="T:MbUnit.Core.Exceptions.CompilationException">
 606      <summary>Exception thrown when not finding a vertex.</summary>
 607    </member>
 608    <member name="P:MbUnit.Core.Exceptions.CompilationException.Message">
 609      <summary>The exception message</summary>
 610    </member>
 611    <member name="T:MbUnit.Core.Exceptions.MissingResourceException">
 612      <summary>Exception thrown when a specified resource cannot be found.</summary>
 613    </member>
 614    <member name="T:MbUnit.Core.Exceptions.MultipleCultureException">
 615      <summary>Exception throwed when not finding a vertex.</summary>
 616    </member>
 617    <member name="T:MbUnit.Core.Filters.CategoryFixtureFilter">
 618      <summary>Filter class for FixtureCategory attribute. This class cannot be inherited.</summary>
 619    </member>
 620    <member name="M:MbUnit.Core.Filters.CategoryFixtureFilter.Filter(System.Type)">
 621      <summary>Tests if a fixture has a category attribute matching a pattern.</summary>
 622      <param name="fixture">The fixture to test.</param>
 623      <returns>true if the fixture has a matching category attribute, otherwise false.</returns>
 624    </member>
 625    <member name="T:MbUnit.Core.Framework.DecoratorPatternAttribute">
 626      <summary>This is the base class for attributes that can decorate tests. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
 627    </member>
 628    <member name="T:MbUnit.Core.Framework.FixtureDecoratorPatternAttribute">
 629      <summary>This is the base class for attributes that can decorate fixtures. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
 630    </member>
 631    <member name="T:MbUnit.Core.Framework.NonTestPatternAttribute">
 632      <summary>Base class for attributes that tag method that are usualy used to set up, provide data, tear down tests, etc...</summary>
 633    </member>
 634    <member name="T:MbUnit.Core.Framework.PatternAttribute">
 635      <summary>Base class for all attributes that are part of the MbUnit framework.</summary>
 636    </member>
 637    <member name="T:MbUnit.Core.Framework.TestFixturePatternAttribute">
 638      <summary>Base class for attributes that define test fixtures. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
 639    </member>
 640    <member name="P:MbUnit.Core.Framework.TestFixturePatternAttribute.TimeOut">
 641      <summary>Gets or sets the fixture timeout in minutes.</summary>
 642      <value>Time out minutes.</value>
 643    </member>
 644    <member name="T:MbUnit.Core.Framework.TestPatternAttribute">
 645      <summary>Base class for attributes that define unit test.</summary>
 646    </member>
 647    <member name="T:MbUnit.Core.Invokers.DecoratorRunInvoker">
 648      <summary>Decorator invorkers are used to modify the way a fixute method is executed. Popular examples of such is the <see cref="T:MbUnit.Core.Invokers.ExpectedExceptionRunInvoker" /> or the <see cref="T:MbUnit.Core.Invokers.RepeatRunInvoker" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
 649    </member>
 650    <member name="T:MbUnit.Core.Invokers.ExplicitRunInvoker">
 651      <summary>Invoker for tests decorated with the ExplicitAttribute.</summary>
 652    </member>
 653    <member name="M:MbUnit.Core.Invokers.ExplicitRunInvoker.Execute(System.Object,System.Collections.IList)">
 654      <summary>Execute method for the invoker.</summary>
 655      <param name="o" />
 656      <param name="args" />
 657    </member>
 658    <member name="T:MbUnit.Core.Invokers.InvokerEventArgs">
 659      <summary>TODO - Add class summary</summary>
 660    </member>
 661    <member name="T:MbUnit.Core.Invokers.MethodRunInvoker">
 662      <summary>An invoker that wraps up the call to a fixture method.</summary>
 663    </member>
 664    <member name="T:MbUnit.Core.Invokers.RunInvokerVertex">
 665      <summary>A <see cref="T:QuickGraph.Concepts.IVertex" /> implementation, containing a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</summary>
 666    </member>
 667    <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.HasInvoker">
 668      <summary>Gets a value indicating if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached to it.</summary>
 669      <value>true if the vertex has a <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached.</value>
 670    </member>
 671    <member name="P:MbUnit.Core.Invokers.RunInvokerVertex.Invoker">
 672      <summary>Gets the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> attached to the vertex.</summary>
 673      <value>The <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> instance attached to the vertex</value>
 674      <exception cref="T:System.InvalidOperationException"> the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> is a null reference </exception>
 675    </member>
 676    <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ReadGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
 677      <summary>Not implemented.</summary>
 678      <exception cref="T:System.InvalidOperationException">always thrown</exception>
 679    </member>
 680    <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.ToString">
 681      <summary>Converts the object to string</summary>
 682      <returns>String representation of the vertex</returns>
 683    </member>
 684    <member name="M:MbUnit.Core.Invokers.RunInvokerVertex.WriteGraphData(QuickGraph.Concepts.Serialization.IGraphSerializationInfo)">
 685      <summary>Serializes informations to the <see cref="T:QuickGraph.Concepts.Serialization.IGraphSerializationInfo" /> instance.</summary>
 686      <param name="info">serialization device</param>
 687      <exception cref="T:System.ArgumentNullException">info is a null reference</exception>
 688    </member>
 689    <member name="T:MbUnit.Core.Invokers.RunInvokerVertexProvider">
 690      <summary>Internal use This class cannot be inherited.</summary>
 691    </member>
 692    <member name="T:MbUnit.Core.Invokers.IRunInvoker">
 693      <summary>This interface defines a method invoker object.</summary>
 694    </member>
 695    <member name="P:MbUnit.Core.Invokers.IRunInvoker.Generator">
 696      <summary>Gets a reference to the <see cref="T:MbUnit.Core.Runs.IRun" /> instance that generated the invoker.</summary>
 697      <value>Reference to the <see cref="T:MbUnit.Core.Runs.IRun" /> instance that generated the invoker.</value>
 698    </member>
 699    <member name="P:MbUnit.Core.Invokers.IRunInvoker.Name">
 700      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /></summary>
 701      <value>A descriptive name of the <see cref="T:MbUnit.Core.Invokers.IRunInvoker" />.</value>
 702    </member>
 703    <member name="M:MbUnit.Core.Invokers.IRunInvoker.ContainsMemberInfo(System.Reflection.MemberInfo)">
 704      <summary>Gets a value indicating if the instance is related to <paramref name="memberInfo" /></summary>
 705      <param name="memberInfo">A <see cref="T:System.Reflection.MethodInfo" /> instance</param>
 706      <returns>true if the instance is related to the member info; otherwize false</returns>
 707    </member>
 708    <member name="M:MbUnit.Core.Invokers.IRunInvoker.Execute(System.Object,System.Collections.IList)">
 709      <summary>Executes the wrapped method</summary>
 710      <param name="o">Test fixture instance</param>
 711      <param name="args">Method arguments</param>
 712      <returns>Return value of the invoked method. If the method returns void, null is returned.</returns>
 713    </member>
 714    <member name="T:MbUnit.Core.Monitoring.MemoryStatus">
 715      <summary>Describes the status of the memory. This class cannot be inherited.</summary>
 716    </member>
 717    <member name="T:MbUnit.Core.Monitoring.TimeMonitor">
 718      <summary>A high performance timer This class cannot be inherited.</summary>
 719    </member>
 720    <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Duration">
 721      <summary>Gets the timed duration value in seconds</summary>
 722      <value>Timer duration</value>
 723    </member>
 724    <member name="P:MbUnit.Core.Monitoring.TimeMonitor.Now">
 725      <summary>Gets the current duration value without stopping the timer</summary>
 726      <value>Current duration value</value>
 727    </member>
 728    <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Start">
 729      <summary>Starts the timer</summary>
 730    </member>
 731    <member name="M:MbUnit.Core.Monitoring.TimeMonitor.Stop">
 732      <summary>Stops the timer</summary>
 733    </member>
 734    <member name="T:MbUnit.Core.Remoting.AssemblyWatcher">
 735      <summary>AssemblyWatcher keeps track of one or more assemblies to see if they have changed. It incorporates a delayed notification and uses a standard event to notify any interested parties about the change. The path to the assembly is provided as an argument to the event handler so that one routine can be used to handle events from multiple watchers.</summary>
 736    </member>
 737    <member name="M:MbUnit.Core.Remoting.CacheFolderHelper.DeleteDir(System.IO.DirectoryInfo)">
 738      <summary>Helper method to delete the cache dir. This method deals with a bug that occurs when pdb files are marked read-only.</summary>
 739      <param name="cacheDir" />
 740    </member>
 741    <member name="M:MbUnit.Core.Remoting.ConfigUtils.MergeDependentAssembly(System.Xml.XmlDocument,System.Reflection.AssemblyName,System.String,System.String)">
 742      <summary>Merge a 'dependentAssembly' directive into a given config document. If any entries exist for the same assembly they will be deleted before the new entry is merged.</summary>
 743      <param name="doc">The config document to merge</param>
 744      <param name="assemblyName">The Assembly that should be used</param>
 745      <param name="versionRange">The range of compatable versions (eg. "1.0.0.0-3.0.0.0")</param>
 746      <param name="codeBase">The codebase to use.</param>
 747    </member>
 748    <member name="T:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary">
 749      <summary>A dictionary with keys of type Guid and values of type TestTreeNode</summary>
 750    </member>
 751    <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Item(System.Guid)">
 752      <summary>Gets or sets the TestTreeNode associated with the given Guid</summary>
 753      <param name="key">The Guid whose value to get or set.</param>
 754    </member>
 755    <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Keys">
 756      <summary>Gets a collection containing the keys in this GuidTestTreeNodeDictionary.</summary>
 757    </member>
 758    <member name="P:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Values">
 759      <summary>Gets a collection containing the values in this GuidTestTreeNodeDictionary.</summary>
 760    </member>
 761    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Add(MbUnit.Core.Remoting.TestTreeNode)">
 762      <summary>Adds an element with the specified key and value to this GuidTestTreeNodeDictionary.</summary>
 763      <param name="value">The TestTreeNode value of the element to add.</param>
 764    </member>
 765    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Contains(System.Guid)">
 766      <summary>Determines whether this GuidTestTreeNodeDictionary contains a specific key.</summary>
 767      <param name="key">The Guid key to locate in this GuidTestTreeNodeDictionary.</param>
 768      <returns>true if this GuidTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
 769    </member>
 770    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.ContainsKey(System.Guid)">
 771      <summary>Determines whether this GuidTestTreeNodeDictionary contains a specific key.</summary>
 772      <param name="key">The Guid key to locate in this GuidTestTreeNodeDictionary.</param>
 773      <returns>true if this GuidTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
 774    </member>
 775    <member name="M:MbUnit.Core.Remoting.GuidTestTreeNodeDictionary.Remove(System.Guid)">
 776      <summary>Removes the element with the specified key from this GuidTestTreeNodeDictionary.</summary>
 777      <param name="key">The Guid key of the element to remove.</param>
 778    </member>
 779    <member name="T:MbUnit.Core.Remoting.GuidTreeNodeDictionary">
 780      <summary>A dictionary with keys of type Guid and values of type TreeNode</summary>
 781    </member>
 782    <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Item(System.Guid)">
 783      <summary>Gets or sets the TreeNode associated with the given Guid</summary>
 784      <param name="key">The Guid whose value to get or set.</param>
 785    </member>
 786    <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Keys">
 787      <summary>Gets a collection containing the keys in this GuidTreeNodeDictionary.</summary>
 788    </member>
 789    <member name="P:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Values">
 790      <summary>Gets a collection containing the values in this GuidTreeNodeDictionary.</summary>
 791    </member>
 792    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Add(System.Windows.Forms.TreeNode)">
 793      <summary>Adds an element with the specified key and value to this GuidTreeNodeDictionary.</summary>
 794      <param name="value">The TreeNode value of the element to add.</param>
 795    </member>
 796    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Contains(System.Guid)">
 797      <summary>Determines whether this GuidTreeNodeDictionary contains a specific key.</summary>
 798      <param name="key">The Guid key to locate in this GuidTreeNodeDictionary.</param>
 799      <returns>true if this GuidTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
 800    </member>
 801    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.ContainsKey(System.Guid)">
 802      <summary>Determines whether this GuidTreeNodeDictionary contains a specific key.</summary>
 803      <param name="key">The Guid key to locate in this GuidTreeNodeDictionary.</param>
 804      <returns>true if this GuidTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
 805    </member>
 806    <member name="M:MbUnit.Core.Remoting.GuidTreeNodeDictionary.Remove(System.Guid)">
 807      <summary>Removes the element with the specified key from this GuidTreeNodeDictionary.</summary>
 808      <param name="key">The Guid key of the element to remove.</param>
 809    </member>
 810    <member name="T:MbUnit.Core.Remoting.LongLivingMarshalByRefObject">
 811      <summary>Long living object. (Extracted from NUnit source)</summary>
 812    </member>
 813    <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Clear">
 814      <summary>Clears the internal representation of the tree</summary>
 815    </member>
 816    <member name="M:MbUnit.Core.Remoting.NamespaceTestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
 817      <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
 818    </member>
 819    <member name="M:MbUnit.Core.Remoting.RemoteTestEngine.AddConsoleListener">
 820      <summary>Supports verbose output option of console app. Added as part of fix to issue MBUNIT-28.</summary>
 821    </member>
 822    <member name="P:MbUnit.Core.Remoting.SeparateTestDomain.ShadowCopyFiles">
 823      <summary>Gets or sets a value indicating the assemblies have to be shadow copied</summary>
 824    </member>
 825    <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.ConfigureCachePath(System.AppDomainSetup)">
 826      <summary>Set the location for caching and delete any old cache info</summary>
 827      <param name="setup">Our domain</param>
 828    </member>
 829    <member name="M:MbUnit.Core.Remoting.SeparateTestDomain.MakeDomain(System.String,System.String,System.String,System.String)">
 830      <summary>Creates an AppDomain for the Test Assembly</summary>
 831      <param name="domainName" />
 832      <param name="appBase" />
 833      <param name="configFile" />
 834      <param name="binPath" />
 835    </member>
 836    <member name="T:MbUnit.Core.Remoting.StringTestTreeNodeDictionary">
 837      <summary>A dictionary with keys of type String and values of type TestTreeNode</summary>
 838    </member>
 839    <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Item(System.String)">
 840      <summary>Gets or sets the TestTreeNode associated with the given String</summary>
 841      <param name="key">The String whose value to get or set.</param>
 842    </member>
 843    <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Keys">
 844      <summary>Gets a collection containing the keys in this StringTestTreeNodeDictionary.</summary>
 845    </member>
 846    <member name="P:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Values">
 847      <summary>Gets a collection containing the values in this StringTestTreeNodeDictionary.</summary>
 848    </member>
 849    <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Add(System.String,MbUnit.Core.Remoting.TestTreeNode)">
 850      <summary>Adds an element with the specified key and value to this StringTestTreeNodeDictionary.</summary>
 851      <param name="key">The String key of the element to add.</param>
 852      <param name="value">The TestTreeNode value of the element to add.</param>
 853    </member>
 854    <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Contains(System.String)">
 855      <summary>Determines whether this StringTestTreeNodeDictionary contains a specific key.</summary>
 856      <param name="key">The String key to locate in this StringTestTreeNodeDictionary.</param>
 857      <returns>true if this StringTestTreeNodeDictionary contains an element with the specified key; otherwise, false.</returns>
 858    </member>
 859    <member name="M:MbUnit.Core.Remoting.StringTestTreeNodeDictionary.Remove(System.String)">
 860      <summary>Removes the element with the specified key from this StringTestTreeNodeDictionary.</summary>
 861      <param name="key">The String key of the element to remove.</param>
 862    </member>
 863    <member name="P:MbUnit.Core.Remoting.TestDomain.TestFilePath">
 864      <summary>Gets the testFilePath</summary>
 865    </member>
 866    <member name="P:MbUnit.Core.Remoting.TestDomainBase.Identifier">
 867      <summary>Gets a <see cref="T:System.Guid" /> identifying the <see cref="T:MbUnit.Core.Remoting.TestDomain" /></summary>
 868    </member>
 869    <member name="M:MbUnit.Core.Remoting.TestDomainBase.Load">
 870      <summary>Loads domain and test assembly</summary>
 871    </member>
 872    <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnLoaded">
 873      <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.Loaded" /> event.</summary>
 874    </member>
 875    <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnReLoaded">
 876      <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.ReLoaded" /> event.</summary>
 877    </member>
 878    <member name="M:MbUnit.Core.Remoting.TestDomainBase.OnUnLoaded">
 879      <summary>Raises the <see cref="E:MbUnit.Core.Remoting.TestDomainBase.UnLoaded" /> event.</summary>
 880    </member>
 881    <member name="M:MbUnit.Core.Remoting.TestDomainBase.Reload">
 882      <summary>Unload and reload test domain</summary>
 883    </member>
 884    <member name="M:MbUnit.Core.Remoting.TestDomainBase.Unload">
 885      <summary>Unload domain</summary>
 886    </member>
 887    <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection">
 888      <summary>A collection of elements of type TestTreeNode</summary>
 889    </member>
 890    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Add(MbUnit.Core.Remoting.TestTreeNode)">
 891      <summary>Adds an instance of type TestTreeNode to the end of this TestTreeNodeCollection.</summary>
 892      <param name="value">The TestTreeNode to be added to the end of this TestTreeNodeCollection.</param>
 893    </member>
 894    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Contains(MbUnit.Core.Remoting.TestTreeNode)">
 895      <summary>Determines whether a specfic TestTreeNode value is in this TestTreeNodeCollection.</summary>
 896      <param name="value">The TestTreeNode value to locate in this TestTreeNodeCollection.</param>
 897      <returns>true if value is found in this TestTreeNodeCollection; false otherwise.</returns>
 898    </member>
 899    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.GetEnumerator">
 900      <summary>Returns an enumerator that can iterate through the elements of this TestTreeNodeCollection.</summary>
 901      <returns>An object that implements System.Collections.IEnumerator.</returns>
 902    </member>
 903    <member name="M:MbUnit.Core.Remoting.TestTreeNodeCollection.Remove(MbUnit.Core.Remoting.TestTreeNode)">
 904      <summary>Removes the first occurrence of a specific TestTreeNode from this TestTreeNodeCollection.</summary>
 905      <param name="value">The TestTreeNode value to remove from this TestTreeNodeCollection.</param>
 906    </member>
 907    <member name="T:MbUnit.Core.Remoting.TestTreeNodeCollection.Enumerator">
 908      <summary>Type-specific enumeration class, used by TestTreeNodeCollection.GetEnumerator.</summary>
 909    </member>
 910    <member name="T:MbUnit.Core.Remoting.TestTreePopulator">
 911      <summary>Defines a class that can populate a tree of tests This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
 912    </member>
 913    <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Clear">
 914      <summary>Clears the internal representation of the tree</summary>
 915    </member>
 916    <member name="M:MbUnit.Core.Remoting.TestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
 917      <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
 918      <param name="nodes">Node dictionary.</param>
 919      <param name="root">The root node.</param>
 920      <param name="pipes">Collection of <see cref="T:MbUnit.Core.RunPipeStarter" />s</param>
 921      <exception cref="T:System.ArgumentNullException">
 922        <paramref name="root" /> or <paramref name="pipes" /> is a null reference (Nothing in Visual Basic) </exception>
 923    </member>
 924    <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection">
 925      <summary>A collection of elements of type TestTreePopulator</summary>
 926    </member>
 927    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Add(MbUnit.Core.Remoting.ITestTreePopulator)">
 928      <summary>Adds an instance of type TestTreePopulator to the end of this TestTreePopulatorCollection.</summary>
 929      <param name="value">The TestTreePopulator to be added to the end of this TestTreePopulatorCollection.</param>
 930    </member>
 931    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.ITestTreePopulator[])">
 932      <summary>Adds the elements of an array to the end of this TestTreePopulatorCollection.</summary>
 933      <param name="items">The array whose elements are to be added to the end of this TestTreePopulatorCollection.</param>
 934    </member>
 935    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.AddRange(MbUnit.Core.Remoting.TestTreePopulatorCollection)">
 936      <summary>Adds the elements of another TestTreePopulatorCollection to the end of this TestTreePopulatorCollection.</summary>
 937      <param name="items">The TestTreePopulatorCollection whose elements are to be added to the end of this TestTreePopulatorCollection.</param>
 938    </member>
 939    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Contains(MbUnit.Core.Remoting.ITestTreePopulator)">
 940      <summary>Determines whether a specfic TestTreePopulator value is in this TestTreePopulatorCollection.</summary>
 941      <param name="value">The TestTreePopulator value to locate in this TestTreePopulatorCollection.</param>
 942      <returns>true if value is found in this TestTreePopulatorCollection; false otherwise.</returns>
 943    </member>
 944    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.GetEnumerator">
 945      <summary>Returns an enumerator that can iterate through the elements of this TestTreePopulatorCollection.</summary>
 946      <returns>An object that implements System.Collections.IEnumerator.</returns>
 947    </member>
 948    <member name="M:MbUnit.Core.Remoting.TestTreePopulatorCollection.Remove(MbUnit.Core.Remoting.ITestTreePopulator)">
 949      <summary>Removes the first occurrence of a specific TestTreePopulator from this TestTreePopulatorCollection.</summary>
 950      <param name="value">The TestTreePopulator value to remove from this TestTreePopulatorCollection.</param>
 951    </member>
 952    <member name="T:MbUnit.Core.Remoting.TestTreePopulatorCollection.Enumerator">
 953      <summary>Type-specific enumeration class, used by TestTreePopulatorCollection.GetEnumerator.</summary>
 954    </member>
 955    <member name="P:MbUnit.Core.Remoting.TreeTestDomainCollection.Watcher">
 956      <summary>Gets the assembly watcher</summary>
 957    </member>
 958    <member name="T:MbUnit.Core.Remoting.ITestTreePopulator">
 959      <summary>Defines a class that can populate a tree of tests</summary>
 960    </member>
 961    <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Clear">
 962      <summary>Clears the internal representation of the tree</summary>
 963    </member>
 964    <member name="M:MbUnit.Core.Remoting.ITestTreePopulator.Populate(MbUnit.Core.Remoting.GuidTestTreeNodeDictionary,MbUnit.Core.Remoting.TestTreeNode,MbUnit.Core.Collections.RunPipeStarterCollection)">
 965      <summary>Populates the node using the <see cref="T:MbUnit.Core.RunPipe" /> instance contained in <paramref name="pipes" />.</summary>
 966      <param name="nodes">A node dictionary.</param>
 967      <param name="root">The root node.</param>
 968      <param name="pipes">A collection of pipes.</param>
 969      <exception cref="T:System.ArgumentNullException">
 970        <paramref name="root" /> or <paramref name="pipes" /> is a null reference (Nothing in Visual Basic) </exception>
 971    </member>
 972    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.IO.TextWriter)">
 973      <summary>Render the report result to the specified writer</summary>
 974      <param name="result">Result from the test</param>
 975      <param name="writer">Writer to write result output to</param>
 976    </member>
 977    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String)">
 978      <summary>Render the report result to a file</summary>
 979      <param name="result">Result from the test</param>
 980      <param name="fileName">Report output file name</param>
 981    </member>
 982    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String,System.String)">
 983      <summary>Render the report result to a file</summary>
 984      <param name="result">Result from the test</param>
 985      <param name="outputPath">Output directory</param>
 986      <param name="nameFormat">Default format name</param>
 987      <param name="extension">Extension of the file</param>
 988      <returns>File name of the report</returns>
 989    </member>
 990    <member name="M:MbUnit.Core.Reports.ReportBase.Render(MbUnit.Core.Reports.Serialization.ReportResult,System.String,System.String)">
 991      <summary>Render the report result to a file</summary>
 992      <param name="result">Result from the test</param>
 993      <param name="outputPath">Output directory</param>
 994      <param name="nameFormat">Default format name. If null, the default name will be used</param>
 995      <returns>File name of the report</returns>
 996    </member>
 997    <member name="T:MbUnit.Core.Reports.TextReport">
 998      <summary>Reports MbUnit result in text format. This class cannot be inherited.</summary>
 999    </member>
1000    <member name="T:MbUnit.Core.Reports.XmlReport">
1001      <summary>XML Report. This class cannot be inherited.</summary>
1002    </member>
1003    <member name="T:MbUnit.Core.Runs.CustomRun">
1004      <summary>TODO - Add class summary</summary>
1005    </member>
1006    <member name="P:MbUnit.Core.Runs.IndexerProviderRun.IsTest">
1007      <summary>Gets a value indicating the run is considered as a test or not.</summary>
1008      <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
1009    </member>
1010    <member name="P:MbUnit.Core.Runs.IndexerProviderRun.Name">
1011      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
1012      <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
1013    </member>
1014    <member name="M:MbUnit.Core.Runs.IndexerProviderRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1015      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1016      <param name="tree">Invoker tree</param>
1017      <param name="parent">parent vertex</param>
1018      <param name="t">class type that is marked by the run</param>
1019    </member>
1020    <member name="T:MbUnit.Core.Runs.ParallelRun">
1021      <summary>TODO - Add class summary This class cannot be inherited.</summary>
1022    </member>
1023    <member name="P:MbUnit.Core.Runs.Run.IsTest">
1024      <summary>Gets a value indicating the run is considered as a test or not.</summary>
1025      <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
1026    </member>
1027    <member name="P:MbUnit.Core.Runs.Run.Name">
1028      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
1029      <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
1030    </member>
1031    <member name="M:MbUnit.Core.Runs.Run.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1032      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1033      <param name="tree">Invoker tree</param>
1034      <param name="parent">parent vertex</param>
1035      <param name="t">class type that is marked by the run</param>
1036    </member>
1037    <member name="T:MbUnit.Core.Runs.SequenceRun">
1038      <summary>A sequence of IRuns This class cannot be inherited.</summary>
1039    </member>
1040    <member name="M:MbUnit.Core.Runs.SequenceRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1041      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1042      <param name="tree">Invoker tree.</param>
1043      <param name="parent">Parent vertex.</param>
1044      <param name="t">The <see cref="T:System.Type" /> to search for.</param>
1045    </member>
1046    <member name="T:MbUnit.Core.Runs.TestFixtureRun">
1047      <summary>Test fixture run with support for decoration by <see cref="T:MbUnit.Framework.TestFixtureExtensionAttribute" />. This class cannot be inherited.</summary>
1048    </member>
1049    <member name="M:MbUnit.Core.Runs.TestFixtureRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1050      <summary>Builds the test run invoker tree.</summary>
1051      <param name="tree" />
1052      <param name="parent" />
1053      <param name="t" />
1054    </member>
1055    <member name="T:MbUnit.Core.Runs.IRun">
1056      <summary>This interface defines a type of test/non test run that is used to define the <see cref="T:MbUnit.Core.Framework.TestFixturePatternAttribute" /> logic.</summary>
1057    </member>
1058    <member name="P:MbUnit.Core.Runs.IRun.IsTest">
1059      <summary>Gets a value indicating the run is considered as a test or not.</summary>
1060      <value>true if the <see cref="T:MbUnit.Core.Runs.IRun" /> instance is a test</value>
1061    </member>
1062    <member name="P:MbUnit.Core.Runs.IRun.Name">
1063      <summary>Gets a descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></summary>
1064      <value>A descriptive name of the <see cref="T:MbUnit.Core.Runs.IRun" /></value>
1065    </member>
1066    <member name="M:MbUnit.Core.Runs.IRun.Reflect(MbUnit.Core.Invokers.RunInvokerTree,MbUnit.Core.Invokers.RunInvokerVertex,System.Type)">
1067      <summary>Populates the <see cref="T:MbUnit.Core.Invokers.RunInvokerTree" /> invoker graph with <see cref="T:MbUnit.Core.Invokers.IRunInvoker" /> generated by the run.</summary>
1068      <param name="tree">Invoker tree</param>
1069      <param name="parent">parent vertex</param>
1070      <param name="t">class type that is marked by the run</param>
1071    </member>
1072    <member name="T:MbUnit.Framework.ArrayAssert">
1073      <summary>Array Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1074    </member>
1075    <member name="M:MbUnit.Framework.ArrayAssert.AreEqual(System.Boolean[],System.Boolean[])">
1076      <summary>Verifies that both array have the same dimension and elements.</summary>
1077      <param name="expected" />
1078      <param name="actual" />
1079    </member>
1080    <member name="T:MbUnit.Framework.Assert">
1081      <summary>Class containing generic assert methods for the comparison of values and object references, the existence of objects within a collection type and basic object properties - for example, whether or not it is assignable to. Also contains a set of Fail asserts which will automatically fail a test straight away. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1082    </member>
1083    <member name="P:MbUnit.Framework.Assert.AssertCount">
1084      <summary>Number of Asserts made so far this test run</summary>
1085    </member>
1086    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
1087      <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal given a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1088      <param name="expected">The expected value</param>
1089      <param name="actual">The actual value</param>
1090      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1091      <param name="message">The message printed out upon failure</param>
1092      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1093      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1094    </member>
1095    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
1096      <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with no explanation for the failure. Use <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)" /> if you want to provide an explanation.</summary>
1097      <param name="expected">The expected value</param>
1098      <param name="actual">The actual value</param>
1099      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1100      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1101      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1102    </member>
1103    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
1104      <summary>Verifies that two doubles, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the expected value is infinity then the delta value is ignored. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1105      <param name="expected">The expected value</param>
1106      <param name="actual">The actual value</param>
1107      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1108      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1109      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1110      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1111      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />. Exception message is generated through <paramref name="format" /> and <paramref name="args" />.</exception>
1112    </member>
1113    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
1114      <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1115      <param name="expected">The expected value</param>
1116      <param name="actual">The actual value</param>
1117      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1118      <param name="message">The message printed out upon failure</param>
1119      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1120      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1121    </member>
1122    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
1123      <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1124      <param name="expected">The expected value</param>
1125      <param name="actual">The actual value</param>
1126      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1127      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1128      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1129      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1130      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />. Exception message is generated through <paramref name="format" /> and <paramref name="args" />.</exception>
1131    </member>
1132    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
1133      <summary>Verifies that two floats, <paramref name="expected" /> and <paramref name="actual" />, are equal considering a <paramref name="delta" />. If the <paramref name="expected" /> value is infinity then the <paramref name="delta" /> value is ignored. If they are not equals then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1134      <param name="expected">The expected value</param>
1135      <param name="actual">The actual value</param>
1136      <param name="delta">The maximum acceptable difference between <paramref name="expected" /> and <paramref name="actual" /></param>
1137      <exception cref="T:System.ArgumentException">Thrown if <paramref name="delta" /> has been given a negative value.</exception>
1138      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not values within the given <paramref name="delta" />.</exception>
1139    </member>
1140    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
1141      <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1142      <param name="expected">The expected value</param>
1143      <param name="actual">The actual value</param>
1144      <param name="message">The message printed out upon failure</param>
1145      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">
1146        <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1147    </member>
1148    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
1149      <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1150      <param name="expected">The expected value</param>
1151      <param name="actual">The actual value</param>
1152      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1153      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1154      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1155    </member>
1156    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
1157      <summary>Verifies that two decimals, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1158      <param name="expected">The expected value</param>
1159      <param name="actual">The actual value</param>
1160      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1161    </member>
1162    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
1163      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with the given <paramref name="message" />.</summary>
1164      <param name="expected">The expected value</param>
1165      <param name="actual">The actual value</param>
1166      <param name="message">The message printed out upon failure</param>
1167      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1168    </member>
1169    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
1170      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1171      <param name="expected">The expected value</param>
1172      <param name="actual">The actual value</param>
1173      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1174      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1175      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1176    </member>
1177    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
1178      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1179      <param name="expected">The expected value</param>
1180      <param name="actual">The actual value</param>
1181      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1182    </member>
1183    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
1184      <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then a <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1185      <param name="expected">The expected value</param>
1186      <param name="actual">The actual value</param>
1187      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1188      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1189      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException"> Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1190    </member>
1191    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
1192      <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown with a given <paramref name="message" />.</summary>
1193      <param name="expected">The expected value</param>
1194      <param name="actual">The actual value</param>
1195      <param name="message">The message printed out upon failure</param>
1196      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1197    </member>
1198    <member name="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
1199      <summary>Verifies that two objects, <paramref name="expected" /> and <paramref name="actual" />, are equal. If they are not equal then an <see cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException" /> is thrown.</summary>
1200      <param name="expected">The expected value</param>
1201      <param name="actual">The actual value</param>
1202      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">
1203        <paramref name="expected" /> and <paramref name="actual" /> are not equal.</exception>
1204    </member>
1205    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
1206      <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1207      <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1208      <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1209      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1210      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1211    </member>
1212    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
1213      <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1214      <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1215      <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1216      <param name="message">The message to include if the test fails</param>
1217      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1218      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are both null</exception>
1219    </member>
1220    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
1221      <summary>Verifies that two <see cref="T:System.Object" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Object" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1222      <param name="expected">The <see cref="T:System.Object" /> to compare</param>
1223      <param name="actual">The <see cref="T:System.Object" /> being compared</param>
1224      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1225      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are both null</exception>
1226    </member>
1227    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
1228      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1229      <param name="expected">The integer to compare</param>
1230      <param name="actual">The integer being compared</param>
1231      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1232      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1233      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1234    </member>
1235    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
1236      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a given <paramref name="message" />.</summary>
1237      <param name="expected">The integer to compare</param>
1238      <param name="actual">The integer being compared</param>
1239      <param name="message">The message to include if the test fails</param>
1240      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1241    </member>
1242    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
1243      <summary>Verifies that two integers, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the integers are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1244      <param name="expected">The integer to compare</param>
1245      <param name="actual">The integer being compared</param>
1246      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1247    </member>
1248    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
1249      <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1250      <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
1251      <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
1252      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1253      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1254      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1255    </member>
1256    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
1257      <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1258      <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
1259      <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
1260      <param name="message">The message to include if the test fails</param>
1261      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1262    </member>
1263    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
1264      <summary>Verifies that two <see cref="T:System.UInt32" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.UInt32" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1265      <param name="expected">The <see cref="T:System.UInt32" /> to compare</param>
1266      <param name="actual">The <see cref="T:System.UInt32" /> being compared</param>
1267      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1268    </member>
1269    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
1270      <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1271      <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
1272      <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
1273      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1274      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1275      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1276    </member>
1277    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
1278      <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1279      <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
1280      <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
1281      <param name="message">The message to include if the test fails</param>
1282      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1283    </member>
1284    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
1285      <summary>Verifies that two <see cref="T:System.Decimal" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Decimal" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1286      <param name="expected">The <see cref="T:System.Decimal" /> to compare</param>
1287      <param name="actual">The <see cref="T:System.Decimal" /> being compared</param>
1288      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1289    </member>
1290    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
1291      <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1292      <param name="expected">The <see cref="T:System.Single" /> to compare</param>
1293      <param name="actual">The <see cref="T:System.Single" /> being compared</param>
1294      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1295      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1296      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1297    </member>
1298    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
1299      <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1300      <param name="expected">The <see cref="T:System.Single" /> to compare</param>
1301      <param name="actual">The <see cref="T:System.Single" /> being compared</param>
1302      <param name="message">The message to include if the test fails</param>
1303      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1304    </member>
1305    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
1306      <summary>Verifies that two <see cref="T:System.Single" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Single" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1307      <param name="expected">The <see cref="T:System.Single" /> to compare</param>
1308      <param name="actual">The <see cref="T:System.Single" /> being compared</param>
1309      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1310    </member>
1311    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
1312      <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1313      <param name="expected">The <see cref="T:System.Double" /> to compare</param>
1314      <param name="actual">The <see cref="T:System.Double" /> being compared</param>
1315      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1316      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1317      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1318    </member>
1319    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
1320      <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1321      <param name="expected">The <see cref="T:System.Double" /> to compare</param>
1322      <param name="actual">The <see cref="T:System.Double" /> being compared</param>
1323      <param name="message">The message to include if the test fails</param>
1324      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1325    </member>
1326    <member name="M:MbUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
1327      <summary>Verifies that two <see cref="T:System.Double" />s, <paramref name="expected" /> and <paramref name="actual" />, are not equal. If the <see cref="T:System.Double" nolink="true" />s are equal an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1328      <param name="expected">The <see cref="T:System.Double" /> to compare</param>
1329      <param name="actual">The <see cref="T:System.Double" /> being compared</param>
1330      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="expected" /> and <paramref name="actual" /> are equal.</exception>
1331    </member>
1332    <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
1333      <summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1334      <param name="message">The message to be printed when the two objects are not the same object.</param>
1335      <param name="expected">The expected object</param>
1336      <param name="actual">The actual object</param>
1337    </member>
1338    <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
1339      <summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1340      <param name="expected">The expected object</param>
1341      <param name="actual">The actual object</param>
1342      <param name="format">The format of the message to display if the assertion fails, containing zero or more format items.</param>
1343      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1344    </member>
1345    <member name="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object)">
1346      <summary>Asserts that two objects refer to the same object. If they are not the same an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1347      <param name="expected">The expected object</param>
1348      <param name="actual">The actual object</param>
1349    </member>
1350    <member name="M:MbUnit.Framework.Assert.AreValueEqual(System.Reflection.PropertyInfo,System.Object,System.Object,System.Object[])">
1351      <summary>Verifies that given two objects, <paramref name="expected" /> and <paramref name="actual" />, the property described by the <see cref="T:System.Reflection.PropertyInfo" /> object <paramref name="pi" /> is present in both objects, is not null, and that the value of the property in both objects is equal.</summary>
1352      <param name="pi">The <see cref="T:System.Reflection.PropertyInfo" /> object indicating the property to be tested</param>
1353      <param name="expected">The object containing the expected value of the property</param>
1354      <param name="actual">The object containing the actual value of the property</param>
1355      <param name="indices">The index of the value in the property if it is an indexed property</param>
1356      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">One or both of <paramref name="expected" /> and <paramref name="actual" /> are null</exception>
1357      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">The property that <paramref name="pi" /> describes is not present in either <paramref name="expected" /> or <paramref name="actual" /></exception>
1358      <exception cref="T:MbUnit.Core.Exceptions.NotEqualAssertionException">The property values in <paramref name="expected" /> and <paramref name="actual" /> are not equal</exception>
1359    </member>
1360    <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32)">
1361      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1362    </member>
1363    <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String)">
1364      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1365    </member>
1366    <member name="M:MbUnit.Framework.Assert.Between(System.Int32,System.Int32,System.Int32,System.String,System.Object[])">
1367      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1368    </member>
1369    <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16)">
1370      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1371    </member>
1372    <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String)">
1373      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1374    </member>
1375    <member name="M:MbUnit.Framework.Assert.Between(System.Int16,System.Int16,System.Int16,System.String,System.Object[])">
1376      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1377    </member>
1378    <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte)">
1379      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1380    </member>
1381    <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String)">
1382      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1383    </member>
1384    <member name="M:MbUnit.Framework.Assert.Between(System.Byte,System.Byte,System.Byte,System.String,System.Object[])">
1385      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1386    </member>
1387    <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64)">
1388      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1389    </member>
1390    <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String)">
1391      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1392    </member>
1393    <member name="M:MbUnit.Framework.Assert.Between(System.Int64,System.Int64,System.Int64,System.String,System.Object[])">
1394      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1395    </member>
1396    <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double)">
1397      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1398    </member>
1399    <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String)">
1400      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1401    </member>
1402    <member name="M:MbUnit.Framework.Assert.Between(System.Double,System.Double,System.Double,System.String,System.Object[])">
1403      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1404    </member>
1405    <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single)">
1406      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1407    </member>
1408    <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String)">
1409      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1410    </member>
1411    <member name="M:MbUnit.Framework.Assert.Between(System.Single,System.Single,System.Single,System.String,System.Object[])">
1412      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1413    </member>
1414    <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable)">
1415      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1416    </member>
1417    <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String)">
1418      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1419    </member>
1420    <member name="M:MbUnit.Framework.Assert.Between(System.IComparable,System.IComparable,System.IComparable,System.String,System.Object[])">
1421      <summary>Asserts that <paramref name="test" /> is between <paramref name="left" /> and <paramref name="right" />.</summary>
1422    </member>
1423    <member name="M:MbUnit.Framework.Assert.Equals(System.Object,System.Object)">
1424      <summary>The Equals method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" />. This is done to make sure there is no mistake by calling this function. Use <see cref="M:MbUnit.Framework.Assert.AreEqual(System.Object,System.Object)">AreEqual</see> instead or one of its overloads.</summary>
1425      <param name="a">The first <see cref="T:System.Object" /> to compare</param>
1426      <param name="b">The second <see cref="T:System.Object" /> to compare</param>
1427      <returns>True if the values are equal, false otherwise</returns>
1428      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Always thrown as this method should not be used.</exception>
1429    </member>
1430    <member name="M:MbUnit.Framework.Assert.Fail(System.String,System.Object[])">
1431      <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
1432      <param name="format">The format of the message to initialize the <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with.</param>
1433      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1434    </member>
1435    <member name="M:MbUnit.Framework.Assert.Fail(System.String)">
1436      <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
1437      <param name="message">The message to initialize the <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with.</param>
1438    </member>
1439    <member name="M:MbUnit.Framework.Assert.Fail">
1440      <summary>Throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the message that is passed in. This is used by the other Assert functions.</summary>
1441    </member>
1442    <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
1443      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1444      <param name="arg1">The first value, expected to be greater</param>
1445      <param name="arg2">The second value, expected to be less</param>
1446      <param name="message">The message that will be displayed on failure</param>
1447      <param name="args">Arguments to be used in formatting the message</param>
1448    </member>
1449    <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
1450      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1451      <param name="arg1">The first value, expected to be greater</param>
1452      <param name="arg2">The second value, expected to be less</param>
1453      <param name="message">The message that will be displayed on failure</param>
1454    </member>
1455    <member name="M:MbUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
1456      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1457      <param name="arg1">The first value, expected to be greater</param>
1458      <param name="arg2">The second value, expected to be less</param>
1459    </member>
1460    <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
1461      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1462      <param name="arg1">The first value, expected to be greater</param>
1463      <param name="arg2">The second value, expected to be less</param>
1464      <param name="message">The message that will be displayed on failure</param>
1465      <param name="args">Arguments to be used in formatting the message</param>
1466    </member>
1467    <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
1468      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1469      <param name="arg1">The first value, expected to be greater</param>
1470      <param name="arg2">The second value, expected to be less</param>
1471      <param name="message">The message that will be displayed on failure</param>
1472    </member>
1473    <member name="M:MbUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
1474      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1475      <param name="arg1">The first value, expected to be greater</param>
1476      <param name="arg2">The second value, expected to be less</param>
1477    </member>
1478    <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
1479      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1480      <param name="arg1">The first value, expected to be greater</param>
1481      <param name="arg2">The second value, expected to be less</param>
1482      <param name="message">The message that will be displayed on failure</param>
1483      <param name="args">Arguments to be used in formatting the message</param>
1484    </member>
1485    <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
1486      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1487      <param name="arg1">The first value, expected to be greater</param>
1488      <param name="arg2">The second value, expected to be less</param>
1489      <param name="message">The message that will be displayed on failure</param>
1490    </member>
1491    <member name="M:MbUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
1492      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1493      <param name="arg1">The first value, expected to be greater</param>
1494      <param name="arg2">The second value, expected to be less</param>
1495    </member>
1496    <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
1497      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1498      <param name="arg1">The first value, expected to be greater</param>
1499      <param name="arg2">The second value, expected to be less</param>
1500      <param name="message">The message that will be displayed on failure</param>
1501      <param name="args">Arguments to be used in formatting the message</param>
1502    </member>
1503    <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
1504      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1505      <param name="arg1">The first value, expected to be greater</param>
1506      <param name="arg2">The second value, expected to be less</param>
1507      <param name="message">The message that will be displayed on failure</param>
1508    </member>
1509    <member name="M:MbUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
1510      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1511      <param name="arg1">The first value, expected to be greater</param>
1512      <param name="arg2">The second value, expected to be less</param>
1513    </member>
1514    <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
1515      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1516      <param name="arg1">The first value, expected to be greater</param>
1517      <param name="arg2">The second value, expected to be less</param>
1518      <param name="message">The message that will be displayed on failure</param>
1519      <param name="args">Arguments to be used in formatting the message</param>
1520    </member>
1521    <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
1522      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1523      <param name="arg1">The first value, expected to be greater</param>
1524      <param name="arg2">The second value, expected to be less</param>
1525      <param name="message">The message that will be displayed on failure</param>
1526    </member>
1527    <member name="M:MbUnit.Framework.Assert.Greater(System.Double,System.Double)">
1528      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1529      <param name="arg1">The first value, expected to be greater</param>
1530      <param name="arg2">The second value, expected to be less</param>
1531    </member>
1532    <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
1533      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1534      <param name="arg1">The first value, expected to be greater</param>
1535      <param name="arg2">The second value, expected to be less</param>
1536      <param name="message">The message that will be displayed on failure</param>
1537      <param name="args">Arguments to be used in formatting the message</param>
1538    </member>
1539    <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
1540      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1541      <param name="arg1">The first value, expected to be greater</param>
1542      <param name="arg2">The second value, expected to be less</param>
1543      <param name="message">The message that will be displayed on failure</param>
1544    </member>
1545    <member name="M:MbUnit.Framework.Assert.Greater(System.Single,System.Single)">
1546      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1547      <param name="arg1">The first value, expected to be greater</param>
1548      <param name="arg2">The second value, expected to be less</param>
1549    </member>
1550    <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
1551      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1552      <param name="arg1">The first value, expected to be greater</param>
1553      <param name="arg2">The second value, expected to be less</param>
1554      <param name="message">The message that will be displayed on failure</param>
1555      <param name="args">Arguments to be used in formatting the message</param>
1556    </member>
1557    <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
1558      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1559      <param name="arg1">The first value, expected to be greater</param>
1560      <param name="arg2">The second value, expected to be less</param>
1561      <param name="message">The message that will be displayed on failure</param>
1562    </member>
1563    <member name="M:MbUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
1564      <summary>Verifies that the first value is greater than the second value. If they are not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1565      <param name="arg1">The first value, expected to be greater</param>
1566      <param name="arg2">The second value, expected to be less</param>
1567    </member>
1568    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32)">
1569      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1570    </member>
1571    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String)">
1572      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1573    </member>
1574    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
1575      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1576    </member>
1577    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16)">
1578      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1579    </member>
1580    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String)">
1581      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1582    </member>
1583    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
1584      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1585    </member>
1586    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte)">
1587      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1588    </member>
1589    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String)">
1590      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1591    </member>
1592    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
1593      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1594    </member>
1595    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64)">
1596      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1597    </member>
1598    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String)">
1599      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1600    </member>
1601    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
1602      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1603    </member>
1604    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double)">
1605      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1606    </member>
1607    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String)">
1608      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1609    </member>
1610    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Double,System.Double,System.String,System.Object[])">
1611      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1612    </member>
1613    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single)">
1614      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1615    </member>
1616    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String)">
1617      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1618    </member>
1619    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.Single,System.Single,System.String,System.Object[])">
1620      <summary>Verifies that <paramref name="left" /> is greater than <paramref name="right" />.</summary>
1621    </member>
1622    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable)">
1623      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1624    </member>
1625    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String)">
1626      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1627    </member>
1628    <member name="M:MbUnit.Framework.Assert.GreaterEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1629      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1630    </member>
1631    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32)">
1632      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1633    </member>
1634    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String)">
1635      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1636    </member>
1637    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int32,System.Int32,System.String,System.Object[])">
1638      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1639    </member>
1640    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16)">
1641      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1642    </member>
1643    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String)">
1644      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1645    </member>
1646    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int16,System.Int16,System.String,System.Object[])">
1647      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1648    </member>
1649    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte)">
1650      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1651    </member>
1652    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String)">
1653      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1654    </member>
1655    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Byte,System.Byte,System.String,System.Object[])">
1656      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1657    </member>
1658    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64)">
1659      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1660    </member>
1661    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String)">
1662      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1663    </member>
1664    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Int64,System.Int64,System.String,System.Object[])">
1665      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1666    </member>
1667    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double)">
1668      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1669    </member>
1670    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String)">
1671      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1672    </member>
1673    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Double,System.Double,System.String,System.Object[])">
1674      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1675    </member>
1676    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single)">
1677      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1678    </member>
1679    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String)">
1680      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1681    </member>
1682    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.Single,System.Single,System.String,System.Object[])">
1683      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1684    </member>
1685    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable)">
1686      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1687    </member>
1688    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String)">
1689      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1690    </member>
1691    <member name="M:MbUnit.Framework.Assert.GreaterThan(System.IComparable,System.IComparable,System.String,System.Object[])">
1692      <summary>Verifies that <paramref name="left" /> is strictly greater than <paramref name="right" />.</summary>
1693    </member>
1694    <member name="M:MbUnit.Framework.Assert.Ignore(System.String,System.Object[])">
1695      <summary>Makes the current test ignored using <see cref="M:System.String.Format(System.String,System.Object[])" /> like formatting</summary>
1696      <param name="format" />
1697      <param name="args" />
1698    </member>
1699    <member name="M:MbUnit.Framework.Assert.Ignore(System.String)">
1700      <summary>Makes the current test ignored using <see cref="M:System.String.Format(System.String,System.Object[])" /> like formatting</summary>
1701      <param name="message" />
1702    </member>
1703    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary)">
1704      <summary>Asserts that <paramref name="test" /> is in the dic <paramref name="list" />.</summary>
1705    </member>
1706    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IDictionary,System.String)">
1707      <summary>Asserts that <paramref name="test" /> is in the dic <paramref name="list" />.</summary>
1708    </member>
1709    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList)">
1710      <summary>Asserts that <paramref name="test" /> is in the list <paramref name="list" />.</summary>
1711    </member>
1712    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IList,System.String)">
1713      <summary>Asserts that <paramref name="test" /> is in the list <paramref name="list" />.</summary>
1714    </member>
1715    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable,System.String)">
1716      <summary>Asserts that <paramref name="test" /> is in the enumerable collection <paramref name="enumerable" />.</summary>
1717    </member>
1718    <member name="M:MbUnit.Framework.Assert.In(System.Object,System.Collections.IEnumerable)">
1719      <summary>Asserts that <paramref name="test" /> is in the enumerable collection <paramref name="enumerable" />.</summary>
1720    </member>
1721    <member name="M:MbUnit.Framework.Assert.IncrementAssertCount">
1722      <summary>Increments <see cref="P:MbUnit.Framework.Assert.AssertCount" /> by 1</summary>
1723    </member>
1724    <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
1725      <summary>Asserts that an object may be assigned a value of a given Type.</summary>
1726      <param name="expected">The expected Type.</param>
1727      <param name="actual">The object under examination</param>
1728    </member>
1729    <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
1730      <summary>Asserts that an object may be assigned a value of a given Type.</summary>
1731      <param name="expected">The expected Type.</param>
1732      <param name="actual">The object under examination</param>
1733      <param name="message">The messge to display in case of failure</param>
1734    </member>
1735    <member name="M:MbUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
1736      <summary>Asserts that an object may be assigned a value of a given Type.</summary>
1737      <param name="expected">The expected Type.</param>
1738      <param name="actual">The object under examination</param>
1739      <param name="message">The message to display in case of failure</param>
1740      <param name="args">Array of objects to be used in formatting the message</param>
1741    </member>
1742    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
1743      <summary>Assert that a string is empty - that is equal to string.Empty</summary>
1744      <param name="aString">The string to be tested</param>
1745      <param name="message">The message to be displayed on failure</param>
1746      <param name="args">Arguments to be used in formatting the message</param>
1747    </member>
1748    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String,System.String)">
1749      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
1750      <param name="aString">The string to be tested</param>
1751      <param name="message">The message to be displayed on failure</param>
1752    </member>
1753    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.String)">
1754      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
1755      <param name="aString">The string to be tested</param>
1756    </member>
1757    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
1758      <summary>Assert that an array, list or other collection is empty</summary>
1759      <param name="collection">An array, list or other collection implementing ICollection</param>
1760      <param name="message">The message to be displayed on failure</param>
1761      <param name="args">Arguments to be used in formatting the message</param>
1762    </member>
1763    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
1764      <summary>Assert that an array, list or other collection is empty</summary>
1765      <param name="collection">An array, list or other collection implementing ICollection</param>
1766      <param name="message">The message to be displayed on failure</param>
1767    </member>
1768    <member name="M:MbUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
1769      <summary>Assert that an array,list or other collection is empty</summary>
1770      <param name="collection">An array, list or other collection implementing ICollection</param>
1771    </member>
1772    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
1773      <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" />.</summary>
1774      <param name="condition">The evaluated condition</param>
1775      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1776      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1777      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false.</exception>
1778    </member>
1779    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
1780      <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the given <paramref name="message" />.</summary>
1781      <param name="condition">The evaluated condition</param>
1782      <param name="message">The message printed out upon failure</param>
1783      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false. </exception>
1784    </member>
1785    <member name="M:MbUnit.Framework.Assert.IsFalse(System.Boolean)">
1786      <summary>Asserts that a <paramref name="condition" /> is false. If true, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with no explanatory message.</summary>
1787      <param name="condition">The evaluated condition</param>
1788      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not false. </exception>
1789    </member>
1790    <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
1791      <summary>Asserts that an object is an instance of a given type.</summary>
1792      <param name="expected">The expected Type</param>
1793      <param name="actual">The object being examined</param>
1794    </member>
1795    <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
1796      <summary>Asserts that an object is an instance of a given type.</summary>
1797      <param name="expected">The expected Type</param>
1798      <param name="actual">The object being examined</param>
1799      <param name="message">A message to display in case of failure</param>
1800    </member>
1801    <member name="M:MbUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
1802      <summary>Asserts that an object is an instance of a given type.</summary>
1803      <param name="expected">The expected Type</param>
1804      <param name="actual">The object being examined</param>
1805      <param name="message">A message to display in case of failure</param>
1806      <param name="args">An array of objects to be used in formatting the message</param>
1807    </member>
1808    <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
1809      <summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1810      <param name="aDouble">The value that is to be tested</param>
1811      <param name="message">The message to be displayed when the object is not null</param>
1812      <param name="args">Arguments to be used in formatting the message</param>
1813    </member>
1814    <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double,System.String)">
1815      <summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1816      <param name="aDouble">The object that is to be tested</param>
1817      <param name="message">The message to be displayed when the object is not null</param>
1818    </member>
1819    <member name="M:MbUnit.Framework.Assert.IsNaN(System.Double)">
1820      <summary>Verifies that the double is passed is an <code>NaN</code> value. If the object is not <code>NaN</code> then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1821      <param name="aDouble">The object that is to be tested</param>
1822    </member>
1823    <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
1824      <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
1825      <param name="expected">The expected Type.</param>
1826      <param name="actual">The object under examination</param>
1827    </member>
1828    <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
1829      <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
1830      <param name="expected">The expected Type.</param>
1831      <param name="actual">The object under examination</param>
1832      <param name="message">The messge to display in case of failure</param>
1833    </member>
1834    <member name="M:MbUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
1835      <summary>Asserts that an object may not be assigned a value of a given Type.</summary>
1836      <param name="expected">The expected Type.</param>
1837      <param name="actual">The object under examination</param>
1838      <param name="message">The message to display in case of failure</param>
1839      <param name="args">Array of objects to be used in formatting the message</param>
1840    </member>
1841    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
1842      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
1843      <param name="aString">The string to be tested</param>
1844      <param name="message">The message to be displayed on failure</param>
1845      <param name="args">Arguments to be used in formatting the message</param>
1846    </member>
1847    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
1848      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
1849      <param name="aString">The string to be tested</param>
1850      <param name="message">The message to be displayed on failure</param>
1851    </member>
1852    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.String)">
1853      <summary>Assert that a string is empty - that is equal to string.Emtpy</summary>
1854      <param name="aString">The string to be tested</param>
1855    </member>
1856    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
1857      <summary>Assert that an array, list or other collection is empty</summary>
1858      <param name="collection">An array, list or other collection implementing ICollection</param>
1859      <param name="message">The message to be displayed on failure</param>
1860      <param name="args">Arguments to be used in formatting the message</param>
1861    </member>
1862    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
1863      <summary>Assert that an array, list or other collection is empty</summary>
1864      <param name="collection">An array, list or other collection implementing ICollection</param>
1865      <param name="message">The message to be displayed on failure</param>
1866    </member>
1867    <member name="M:MbUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
1868      <summary>Assert that an array,list or other collection is empty</summary>
1869      <param name="collection">An array, list or other collection implementing ICollection</param>
1870    </member>
1871    <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
1872      <summary>Asserts that an object is not an instance of a given type.</summary>
1873      <param name="expected">The expected Type</param>
1874      <param name="actual">The object being examined</param>
1875      <param name="message">A message to display in case of failure</param>
1876      <param name="args">An array of objects to be used in formatting the message</param>
1877    </member>
1878    <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
1879      <summary>Asserts that an object is not an instance of a given type.</summary>
1880      <param name="expected">The expected Type</param>
1881      <param name="actual">The object being examined</param>
1882    </member>
1883    <member name="M:MbUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
1884      <summary>Asserts that an object is not an instance of a given type.</summary>
1885      <param name="expected">The expected Type</param>
1886      <param name="actual">The object being examined</param>
1887      <param name="message">A message to display in case of failure</param>
1888    </member>
1889    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
1890      <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" /></summary>
1891      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
1892      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1893      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1894      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
1895    </member>
1896    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
1897      <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1898      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
1899      <param name="message">The message to include if the test fails</param>
1900      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
1901    </member>
1902    <member name="M:MbUnit.Framework.Assert.IsNotNull(System.Object)">
1903      <summary>Verifies that the given <see cref="T:System.Object" /> is not null. If it is null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1904      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
1905      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is null</exception>
1906    </member>
1907    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
1908      <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])" /></summary>
1909      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
1910      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1911      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1912      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
1913    </member>
1914    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object,System.String)">
1915      <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown with the given <paramref name="message" /></summary>
1916      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
1917      <param name="message">The message to include if the test fails</param>
1918      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
1919    </member>
1920    <member name="M:MbUnit.Framework.Assert.IsNull(System.Object)">
1921      <summary>Verifies that the given <see cref="T:System.Object" /> is null. If it is not null, an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown</summary>
1922      <param name="anObject">The <see cref="T:System.Object" /> to test</param>
1923      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="anObject" /> is not null</exception>
1924    </member>
1925    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
1926      <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with a message defined via <paramref name="format" /> and <paramref name="args" /> through <see cref="M:System.String.Format(System.String,System.Object[])">String.Format</see>.</summary>
1927      <param name="condition">The evaluated condition</param>
1928      <param name="format">A <a href="http://msdn2.microsoft.com/en-gb/library/txafckwd.aspx">composite format string</a></param>
1929      <param name="args">An <see cref="T:System.Object" /> array containing zero or more objects to format.</param>
1930      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not true. </exception>
1931    </member>
1932    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
1933      <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with the given <paramref name="message" />.</summary>
1934      <param name="condition">The evaluated condition</param>
1935      <param name="message">The message printed out upon failure</param>
1936      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown when <paramref name="condition" /> is not true.</exception>
1937    </member>
1938    <member name="M:MbUnit.Framework.Assert.IsTrue(System.Boolean)">
1939      <summary>Asserts that a <paramref name="condition" /> is true. If false, the method throws an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> with no explanatory message.</summary>
1940      <param name="condition">The evaluated condition</param>
1941      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Thrown if <paramref name="condition" /> is not true. </exception>
1942    </member>
1943    <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
1944      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1945      <param name="arg1">The first value, expected to be less</param>
1946      <param name="arg2">The second value, expected to be greater</param>
1947      <param name="message">The message that will be displayed on failure</param>
1948      <param name="args">Arguments to be used in formatting the message</param>
1949    </member>
1950    <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
1951      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1952      <param name="arg1">The first value, expected to be less</param>
1953      <param name="arg2">The second value, expected to be greater</param>
1954      <param name="message">The message that will be displayed on failure</param>
1955    </member>
1956    <member name="M:MbUnit.Framework.Assert.Less(System.Int32,System.Int32)">
1957      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1958      <param name="arg1">The first value, expected to be less</param>
1959      <param name="arg2">The second value, expected to be greater</param>
1960    </member>
1961    <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
1962      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1963      <param name="arg1">The first value, expected to be less</param>
1964      <param name="arg2">The second value, expected to be greater</param>
1965      <param name="message">The message that will be displayed on failure</param>
1966      <param name="args">Arguments to be used in formatting the message</param>
1967    </member>
1968    <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
1969      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1970      <param name="arg1">The first value, expected to be less</param>
1971      <param name="arg2">The second value, expected to be greater</param>
1972      <param name="message">The message that will be displayed on failure</param>
1973    </member>
1974    <member name="M:MbUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
1975      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1976      <param name="arg1">The first value, expected to be less</param>
1977      <param name="arg2">The second value, expected to be greater</param>
1978    </member>
1979    <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
1980      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1981      <param name="arg1">The first value, expected to be less</param>
1982      <param name="arg2">The second value, expected to be greater</param>
1983      <param name="message">The message that will be displayed on failure</param>
1984      <param name="args">Arguments to be used in formatting the message</param>
1985    </member>
1986    <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
1987      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1988      <param name="arg1">The first value, expected to be less</param>
1989      <param name="arg2">The second value, expected to be greater</param>
1990      <param name="message">The message that will be displayed on failure</param>
1991    </member>
1992    <member name="M:MbUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
1993      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1994      <param name="arg1">The first value, expected to be less</param>
1995      <param name="arg2">The second value, expected to be greater</param>
1996    </member>
1997    <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
1998      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
1999      <param name="arg1">The first value, expected to be less</param>
2000      <param name="arg2">The second value, expected to be greater</param>
2001      <param name="message">The message that will be displayed on failure</param>
2002      <param name="args">Arguments to be used in formatting the message</param>
2003    </member>
2004    <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
2005      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2006      <param name="arg1">The first value, expected to be less</param>
2007      <param name="arg2">The second value, expected to be greater</param>
2008      <param name="message">The message that will be displayed on failure</param>
2009    </member>
2010    <member name="M:MbUnit.Framework.Assert.Less(System.Int64,System.Int64)">
2011      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2012      <param name="arg1">The first value, expected to be less</param>
2013      <param name="arg2">The second value, expected to be greater</param>
2014    </member>
2015    <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
2016      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2017      <param name="arg1">The first value, expected to be less</param>
2018      <param name="arg2">The second value, expected to be greater</param>
2019      <param name="message">The message that will be displayed on failure</param>
2020      <param name="args">Arguments to be used in formatting the message</param>
2021    </member>
2022    <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
2023      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2024      <param name="arg1">The first value, expected to be less</param>
2025      <param name="arg2">The second value, expected to be greater</param>
2026      <param name="message">The message that will be displayed on failure</param>
2027    </member>
2028    <member name="M:MbUnit.Framework.Assert.Less(System.Double,System.Double)">
2029      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2030      <param name="arg1">The first value, expected to be less</param>
2031      <param name="arg2">The second value, expected to be greater</param>
2032    </member>
2033    <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
2034      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2035      <param name="arg1">The first value, expected to be less</param>
2036      <param name="arg2">The second value, expected to be greater</param>
2037      <param name="message">The message that will be displayed on failure</param>
2038      <param name="args">Arguments to be used in formatting the message</param>
2039    </member>
2040    <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
2041      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2042      <param name="arg1">The first value, expected to be less</param>
2043      <param name="arg2">The second value, expected to be greater</param>
2044      <param name="message">The message that will be displayed on failure</param>
2045    </member>
2046    <member name="M:MbUnit.Framework.Assert.Less(System.Single,System.Single)">
2047      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2048      <param name="arg1">The first value, expected to be less</param>
2049      <param name="arg2">The second value, expected to be greater</param>
2050    </member>
2051    <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
2052      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2053      <param name="arg1">The first value, expected to be less</param>
2054      <param name="arg2">The second value, expected to be greater</param>
2055      <param name="message">The message that will be displayed on failure</param>
2056      <param name="args">Arguments to be used in formatting the message</param>
2057    </member>
2058    <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
2059      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2060      <param name="arg1">The first value, expected to be less</param>
2061      <param name="arg2">The second value, expected to be greater</param>
2062      <param name="message">The message that will be displayed on failure</param>
2063    </member>
2064    <member name="M:MbUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
2065      <summary>Verifies that the first value is less than the second value. If it is not, then an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> is thrown.</summary>
2066      <param name="arg1">The first value, expected to be less</param>
2067      <param name="arg2">The second value, expected to be greater</param>
2068    </member>
2069    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32)">
2070      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2071    </member>
2072    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String)">
2073      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2074    </member>
2075    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int32,System.Int32,System.String,System.Object[])">
2076      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2077    </member>
2078    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16)">
2079      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2080    </member>
2081    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String)">
2082      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2083    </member>
2084    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int16,System.Int16,System.String,System.Object[])">
2085      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2086    </member>
2087    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte)">
2088      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2089    </member>
2090    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String)">
2091      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2092    </member>
2093    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Byte,System.Byte,System.String,System.Object[])">
2094      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2095    </member>
2096    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64)">
2097      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2098    </member>
2099    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String)">
2100      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2101    </member>
2102    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Int64,System.Int64,System.String,System.Object[])">
2103      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2104    </member>
2105    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double)">
2106      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2107    </member>
2108    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String)">
2109      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2110    </member>
2111    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Double,System.Double,System.String,System.Object[])">
2112      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2113    </member>
2114    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single)">
2115      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2116    </member>
2117    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String)">
2118      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2119    </member>
2120    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.Single,System.Single,System.String,System.Object[])">
2121      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2122    </member>
2123    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable)">
2124      <summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
2125    </member>
2126    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String)">
2127      <summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
2128    </member>
2129    <member name="M:MbUnit.Framework.Assert.LowerEqualThan(System.IComparable,System.IComparable,System.String,System.Object[])">
2130      <summary>Verifies that <paramref name="left" /> is lower equal than <paramref name="right" />.</summary>
2131    </member>
2132    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32)">
2133      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2134    </member>
2135    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String)">
2136      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2137    </member>
2138    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int32,System.Int32,System.String,System.Object[])">
2139      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2140    </member>
2141    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16)">
2142      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2143    </member>
2144    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String)">
2145      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2146    </member>
2147    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int16,System.Int16,System.String,System.Object[])">
2148      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2149    </member>
2150    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte)">
2151      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2152    </member>
2153    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String)">
2154      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2155    </member>
2156    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Byte,System.Byte,System.String,System.Object[])">
2157      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2158    </member>
2159    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64)">
2160      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2161    </member>
2162    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String)">
2163      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2164    </member>
2165    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Int64,System.Int64,System.String,System.Object[])">
2166      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2167    </member>
2168    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double)">
2169      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2170    </member>
2171    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String)">
2172      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2173    </member>
2174    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Double,System.Double,System.String,System.Object[])">
2175      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2176    </member>
2177    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single)">
2178      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2179    </member>
2180    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String)">
2181      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2182    </member>
2183    <member name="M:MbUnit.Framework.Assert.LowerThan(System.Single,System.Single,System.String,System.Object[])">
2184      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2185    </member>
2186    <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable)">
2187      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2188    </member>
2189    <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String)">
2190      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2191    </member>
2192    <member name="M:MbUnit.Framework.Assert.LowerThan(System.IComparable,System.IComparable,System.String,System.Object[])">
2193      <summary>Verifies that <paramref name="left" /> is strictly lower than <paramref name="right" />.</summary>
2194    </member>
2195    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int32,System.Int32,System.Int32)">
2196      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2197    </member>
2198    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int16,System.Int16,System.Int16)">
2199      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2200    </member>
2201    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Byte,System.Byte,System.Byte)">
2202      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2203    </member>
2204    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Int64,System.Int64,System.Int64)">
2205      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2206    </member>
2207    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Double,System.Double,System.Double)">
2208      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2209    </member>
2210    <member name="M:MbUnit.Framework.Assert.NotBetween(System.Single,System.Single,System.Single)">
2211      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2212    </member>
2213    <member name="M:MbUnit.Framework.Assert.NotBetween(System.IComparable,System.IComparable,System.IComparable)">
2214      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> between <paramref name="left" /> and <paramref name="right" />.</summary>
2215    </member>
2216    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary,System.String)">
2217      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the dic <paramref name="list" />.</summary>
2218    </member>
2219    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IDictionary)">
2220      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the dic <paramref name="list" />.</summary>
2221    </member>
2222    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList,System.String)">
2223      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the list <paramref name="list" />.</summary>
2224    </member>
2225    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IList)">
2226      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the list <paramref name="list" />.</summary>
2227    </member>
2228    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable,System.String)">
2229      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the enumerable collection <paramref name="enumerable" />.</summary>
2230    </member>
2231    <member name="M:MbUnit.Framework.Assert.NotIn(System.Object,System.Collections.IEnumerable)">
2232      <summary>Asserts that <paramref name="test" /> is <strong>not</strong> in the enumerable collection <paramref name="enumerable" />.</summary>
2233    </member>
2234    <member name="M:MbUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
2235      <summary>Overrides the default <see cref="M:System.Object.ReferenceEquals(System.Object,System.Object)" /> method inherited from <see cref="T:System.Object" /> to throw an <see cref="T:MbUnit.Core.Exceptions.AssertionException" /> instead. This is to ensure that there is no mistake in calling this function as part of an Assert in your tests. Use <see cref="M:MbUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">AreSame()</see> instead or one of its overloads.</summary>
2236      <param name="a">The first <see cref="T:System.Object" /> to compare</param>
2237      <param name="b">The second <see cref="T:System.Object" /> to compare</param>
2238      <exception cref="T:MbUnit.Core.Exceptions.AssertionException">Always thrown as this method should not be used.</exception>
2239    </member>
2240    <member name="M:MbUnit.Framework.Assert.ResetAssertCount">
2241      <summary>Resets <see cref="P:MbUnit.Framework.Assert.AssertCount" /> to 0</summary>
2242    </member>
2243    <member name="T:MbUnit.Framework.AuthorAttribute">
2244      <summary>This attribute identifies the author of a test fixture.</summary>
2245    </member>
2246    <member name="T:MbUnit.Framework.CollectionAssert">
2247      <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>
2248    </member>
2249    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type)">
2250      <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
2251      <param name="collection">ICollection of objects to be considered</param>
2252      <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2253    </member>
2254    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String)">
2255      <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
2256      <param name="collection">ICollection of objects to be considered</param>
2257      <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2258      <param name="message">The message that will be displayed on failure</param>
2259    </member>
2260    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String,System.Object[])">
2261      <summary>Asserts that all items contained in collection are of the type specified by expectedType.</summary>
2262      <param name="collection">ICollection of objects to be considered</param>
2263      <param name="expectedType">System.Type that all objects in collection must be instances of</param>
2264      <param name="message">The message that will be displayed on failure</param>
2265      <param name="args">Arguments to be used in formatting the message</param>
2266    </member>
2267    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection)">
2268      <summary>Asserts that all items contained in collection are not equal to null.</summary>
2269      <param name="collection">ICollection of objects to be considered</param>
2270    </member>
2271    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String)">
2272      <summary>Asserts that all items contained in collection are not equal to null.</summary>
2273      <param name="collection">ICollection of objects to be considered</param>
2274      <param name="message">The message that will be displayed on failure</param>
2275    </member>
2276    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String,System.Object[])">
2277      <summary>Asserts that all items contained in collection are not equal to null.</summary>
2278      <param name="collection">ICollection of objects to be considered</param>
2279      <param name="message">The message that will be displayed on failure</param>
2280      <param name="args">Arguments to be used in formatting the message</param>
2281    </member>
2282    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection)">
2283      <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
2284      <param name="collection">ICollection of objects to be considered</param>
2285    </member>
2286    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String)">
2287      <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
2288      <param name="collection">ICollection of objects to be considered</param>
2289      <param name="message">The message that will be displayed on failure</param>
2290    </member>
2291    <member name="M:MbUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String,System.Object[])">
2292      <summary>Ensures that every object contained in collection exists within the collection once and only once.</summary>
2293      <param name="collection">ICollection of objects to be considered</param>
2294      <param name="message">The message that will be displayed on failure</param>
2295      <param name="args">Arguments to be used in formatting the message</param>
2296    </member>
2297    <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Collections.ICollection,System.Collections.ICollection)">
2298      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2299      <param name="expected">Instance containing the expected value.</param>
2300      <param name="actual">Instance containing the tested value.</param>
2301    </member>
2302    <member name="M:MbUnit.Framework.CollectionAssert.AreCountEqual(System.Int32,System.Collections.ICollection)">
2303      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.Count" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2304      <param name="expected">Expected value.</param>
2305      <param name="actual">Instance containing the tested value.</param>
2306    </member>
2307    <member name="M:MbUnit.Framework.CollectionAssert.AreElementsEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
2308      <summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
2309      <param name="expected">Expected value.</param>
2310      <param name="actual">Instance containing the tested value.</param>
2311    </member>
2312    <member name="M:MbUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection)">
2313      <summary>Verifies that <paramref name="expected" /> and <paramref name="actual" /> are equal collections. Element count and element wize equality is verified.</summary>
2314      <param name="expected">Expected value.</param>
2315      <param name="actual">Instance containing the tested value.</param>
2316    </member>
2317    <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
2318      <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
2319      <param name="expected">The first ICollection of objects to be considered</param>
2320      <param name="actual">The second ICollection of objects to be considered</param>
2321    </member>
2322    <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2323      <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
2324      <param name="expected">The first ICollection of objects to be considered</param>
2325      <param name="actual">The second ICollection of objects to be considered</param>
2326      <param name="message">The message that will be displayed on failure</param>
2327    </member>
2328    <member name="M:MbUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2329      <summary>Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.</summary>
2330      <param name="expected">The first ICollection of objects to be considered</param>
2331      <param name="actual">The second ICollection of objects to be considered</param>
2332      <param name="message">The message that will be displayed on failure</param>
2333      <param name="args">Arguments to be used in formatting the message</param>
2334    </member>
2335    <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Collections.ICollection,System.Collections.ICollection)">
2336      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2337      <param name="expected">Instance containing the expected value.</param>
2338      <param name="actual">Instance containing the tested value.</param>
2339    </member>
2340    <member name="M:MbUnit.Framework.CollectionAssert.AreIsSynchronizedEqual(System.Boolean,System.Collections.ICollection)">
2341      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2342      <param name="expected">Expected value.</param>
2343      <param name="actual">Instance containing the tested value.</param>
2344    </member>
2345    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection)">
2346      <summary>Asserts that expected and actual are not exactly equal.</summary>
2347      <param name="expected">The first ICollection of objects to be considered</param>
2348      <param name="actual">The second ICollection of objects to be considered</param>
2349    </member>
2350    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
2351      <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>
2352      <param name="expected">The first ICollection of objects to be considered</param>
2353      <param name="actual">The second ICollection of objects to be considered</param>
2354      <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
2355    </member>
2356    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2357      <summary>Asserts that expected and actual are not exactly equal.</summary>
2358      <param name="expected">The first ICollection of objects to be considered</param>
2359      <param name="actual">The second ICollection of objects to be considered</param>
2360      <param name="message">The message that will be displayed on failure</param>
2361    </member>
2362    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
2363      <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>
2364      <param name="expected">The first ICollection of objects to be considered</param>
2365      <param name="actual">The second ICollection of objects to be considered</param>
2366      <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
2367      <param name="message">The message that will be displayed on failure</param>
2368    </member>
2369    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2370      <summary>Asserts that expected and actual are not exactly equal.</summary>
2371      <param name="expected">The first ICollection of objects to be considered</param>
2372      <param name="actual">The second ICollection of objects to be considered</param>
2373      <param name="message">The message that will be displayed on failure</param>
2374      <param name="args">Arguments to be used in formatting the message</param>
2375    </member>
2376    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
2377      <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>
2378      <param name="expected">The first ICollection of objects to be considered</param>
2379      <param name="actual">The second ICollection of objects to be considered</param>
2380      <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
2381      <param name="message">The message that will be displayed on failure</param>
2382      <param name="args">Arguments to be used in formatting the message</param>
2383    </member>
2384    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
2385      <summary>Asserts that expected and actual are not equivalent.</summary>
2386      <param name="expected">The first ICollection of objects to be considered</param>
2387      <param name="actual">The second ICollection of objects to be considered</param>
2388    </member>
2389    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2390      <summary>Asserts that expected and actual are not equivalent.</summary>
2391      <param name="expected">The first ICollection of objects to be considered</param>
2392      <param name="actual">The second ICollection of objects to be considered</param>
2393      <param name="message">The message that will be displayed on failure</param>
2394    </member>
2395    <member name="M:MbUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2396      <summary>Asserts that expected and actual are not equivalent.</summary>
2397      <param name="expected">The first ICollection of objects to be considered</param>
2398      <param name="actual">The second ICollection of objects to be considered</param>
2399      <param name="message">The message that will be displayed on failure</param>
2400      <param name="args">Arguments to be used in formatting the message</param>
2401    </member>
2402    <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Collections.ICollection,System.Collections.ICollection)">
2403      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2404      <param name="expected">Instance containing the expected value.</param>
2405      <param name="actual">Instance containing the tested value.</param>
2406    </member>
2407    <member name="M:MbUnit.Framework.CollectionAssert.AreSyncRootEqual(System.Object,System.Collections.ICollection)">
2408      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.SyncRoot" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2409      <param name="expected">Expected value.</param>
2410      <param name="actual">Instance containing the tested value.</param>
2411    </member>
2412    <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object)">
2413      <summary>Asserts that collection contains actual as an item.</summary>
2414      <param name="collection">ICollection of objects to be considered</param>
2415      <param name="actual">Object to be found within collection</param>
2416    </member>
2417    <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String)">
2418      <summary>Asserts that collection contains actual as an item.</summary>
2419      <param name="collection">ICollection of objects to be considered</param>
2420      <param name="actual">Object to be found within collection</param>
2421      <param name="message">The message that will be displayed on failure</param>
2422    </member>
2423    <member name="M:MbUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String,System.Object[])">
2424      <summary>Asserts that collection contains actual as an item.</summary>
2425      <param name="collection">ICollection of objects to be considered</param>
2426      <param name="actual">Object to be found within collection</param>
2427      <param name="message">The message that will be displayed on failure</param>
2428      <param name="args">Arguments to be used in formatting the message</param>
2429    </member>
2430    <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object)">
2431      <summary>Asserts that collection does not contain actual as an item.</summary>
2432      <param name="collection">ICollection of objects to be considered</param>
2433      <param name="actual">Object that cannot exist within collection</param>
2434    </member>
2435    <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String)">
2436      <summary>Asserts that collection does not contain actual as an item.</summary>
2437      <param name="collection">ICollection of objects to be considered</param>
2438      <param name="actual">Object that cannot exist within collection</param>
2439      <param name="message">The message that will be displayed on failure</param>
2440    </member>
2441    <member name="M:MbUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String,System.Object[])">
2442      <summary>Asserts that collection does not contain actual as an item.</summary>
2443      <param name="collection">ICollection of objects to be considered</param>
2444      <param name="actual">Object that cannot exist within collection</param>
2445      <param name="message">The message that will be displayed on failure</param>
2446      <param name="args">Arguments to be used in formatting the message</param>
2447    </member>
2448    <member name="M:MbUnit.Framework.CollectionAssert.IsCountCorrect(System.Collections.ICollection)">
2449      <summary>Verifies that the <see cref="P:System.Collections.ICollection.Count" /> property is synchronized with the number of iterated elements.</summary>
2450      <param name="col">Collection to test</param>
2451      <exception cref="T:System.ArgumentNullException">
2452        <paramref name="col" /> is a null reference (Nothing in Visual Basic) </exception>
2453    </member>
2454    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
2455      <summary>Asserts that subset is not a subset of superset.</summary>
2456      <param name="subset">The ICollection subset to be considered</param>
2457      <param name="superset">The ICollection superset to be considered</param>
2458    </member>
2459    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2460      <summary>Asserts that subset is not a subset of superset.</summary>
2461      <param name="subset">The ICollection subset to be considered</param>
2462      <param name="superset">The ICollection superset to be considered</param>
2463      <param name="message">The message that will be displayed on failure</param>
2464    </member>
2465    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2466      <summary>Asserts that subset is not a subset of superset.</summary>
2467      <param name="subset">The ICollection subset to be considered</param>
2468      <param name="superset">The ICollection superset to be considered</param>
2469      <param name="message">The message that will be displayed on failure</param>
2470      <param name="args">Arguments to be used in formatting the message</param>
2471    </member>
2472    <member name="M:MbUnit.Framework.CollectionAssert.IsNotSynchronized(System.Collections.ICollection)">
2473      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is false.</summary>
2474      <param name="actual">Instance containing the expected value.</param>
2475    </member>
2476    <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
2477      <summary>Asserts that subset is a subset of superset.</summary>
2478      <param name="subset">The ICollection subset to be considered</param>
2479      <param name="superset">The ICollection superset to be considered</param>
2480    </member>
2481    <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
2482      <summary>Asserts that subset is a subset of superset.</summary>
2483      <param name="subset">The ICollection subset to be considered</param>
2484      <param name="superset">The ICollection superset to be considered</param>
2485      <param name="message">The message that will be displayed on failure</param>
2486    </member>
2487    <member name="M:MbUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
2488      <summary>Asserts that subset is a subset of superset.</summary>
2489      <param name="subset">The ICollection subset to be considered</param>
2490      <param name="superset">The ICollection superset to be considered</param>
2491      <param name="message">The message that will be displayed on failure</param>
2492      <param name="args">Arguments to be used in formatting the message</param>
2493    </member>
2494    <member name="M:MbUnit.Framework.CollectionAssert.IsSynchronized(System.Collections.ICollection)">
2495      <summary>Verifies that the property value <see cref="P:System.Collections.ICollection.IsSynchronized" /> is true.</summary>
2496      <param name="actual">Instance containing the expected value.</param>
2497    </member>
2498    <member name="T:MbUnit.Framework.CollectionIndexingFixtureAttribute">
2499      <summary>Collection indexing pattern. This class cannot be inherited.</summary>
2500    </member>
2501    <member name="M:MbUnit.Framework.CollectionIndexingFixtureAttribute.GetRun">
2502      <summary>Creates the execution logic</summary>
2503      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
2504    </member>
2505    <member name="T:MbUnit.Framework.CollectionOrderFixtureAttribute">
2506      <summary>Collection Order Pattern implementations. This class cannot be inherited.</summary>
2507    </member>
2508    <member name="T:MbUnit.Framework.CombinatorialTestAttribute">
2509      <summary>Tag use to mark a mark a unit test method. This class cannot be inherited.</summary>
2510    </member>
2511    <member name="T:MbUnit.Framework.CompilerAssert">
2512      <summary>Assertion helper for compilation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2513    </member>
2514    <member name="P:MbUnit.Framework.CompilerAssert.CSharpCompiler">
2515      <summary>Gets the C# compiler from <see cref="T:Microsoft.CSharp.CSharpCodeProvider" />.</summary>
2516      <value>C# compiler.</value>
2517    </member>
2518    <member name="P:MbUnit.Framework.CompilerAssert.VBCompiler">
2519      <summary>Gets the VB.NET compiler from <see cref="T:Microsoft.VisualBasic.VBCodeProvider" />.</summary>
2520      <value>VB.NET compiler.</value>
2521    </member>
2522    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
2523      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2524      <param name="compiler">Compiler instance</param>
2525      <param name="source">Source code to compile</param>
2526    </member>
2527    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
2528      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2529      <param name="compiler">Compiler instance</param>
2530      <param name="source">Source code to compile</param>
2531    </member>
2532    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
2533      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2534      <param name="compiler">Compiler instance</param>
2535      <param name="references">Referenced assemblies</param>
2536      <param name="source">Source code to compile</param>
2537    </member>
2538    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
2539      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2540      <param name="compiler">
2541        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2542      <param name="options">Compilation options</param>
2543      <param name="source">source to compile</param>
2544    </member>
2545    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String,System.Boolean)">
2546      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2547      <param name="compiler">
2548        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2549      <param name="options">Compilation options</param>
2550      <param name="source">Source to compile</param>
2551      <param name="throwOnWarning">true if assertion should throw if any warning.</param>
2552    </member>
2553    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
2554      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2555      <param name="compiler">
2556        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2557      <param name="options">Compilation options</param>
2558      <param name="source">Stream containing the source to compile</param>
2559    </member>
2560    <member name="M:MbUnit.Framework.CompilerAssert.Compiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream,System.Boolean)">
2561      <summary>Verifies that <paramref name="source" /> compiles using the provided compiler.</summary>
2562      <param name="compiler">
2563        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2564      <param name="options">Compilation options</param>
2565      <param name="source">Stream containing the source to compile</param>
2566      <param name="throwOnWarning">true if assertion should throw if any warning.</param>
2567    </member>
2568    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.String)">
2569      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
2570      <param name="compiler">
2571        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2572      <param name="source">Source to compile</param>
2573    </member>
2574    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.IO.Stream)">
2575      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
2576      <param name="compiler">
2577        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2578      <param name="source">Source to compile</param>
2579    </member>
2580    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.Collections.Specialized.StringCollection,System.String)">
2581      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
2582      <param name="compiler">
2583        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2584      <param name="referencedAssemblies">Collection of referenced assemblies</param>
2585      <param name="source">Source to compile</param>
2586    </member>
2587    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.String)">
2588      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
2589      <param name="compiler">
2590        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2591      <param name="options">Compilation options</param>
2592      <param name="source">Source to compile</param>
2593    </member>
2594    <member name="M:MbUnit.Framework.CompilerAssert.NotCompiles(System.CodeDom.Compiler.ICodeCompiler,System.CodeDom.Compiler.CompilerParameters,System.IO.Stream)">
2595      <summary>Verifies that <paramref name="source" /> does not compile using the provided compiler.</summary>
2596      <param name="compiler">
2597        <see cref="T:System.CodeDom.Compiler.ICodeCompiler" /> instance.</param>
2598      <param name="options">Compilation options</param>
2599      <param name="source">Source to compile</param>
2600    </member>
2601    <member name="T:MbUnit.Framework.CompositeFixtureAttribute">
2602      <summary>Composite fixture pattern implementation. This class cannot be inherited.</summary>
2603    </member>
2604    <member name="P:MbUnit.Framework.CompositeFixtureAttribute.FixtureType">
2605      <summary>Gets or sets the fixture type.</summary>
2606      <value>Fixture instance type.</value>
2607    </member>
2608    <member name="M:MbUnit.Framework.CompositeFixtureAttribute.GetRun">
2609      <summary>Creates the execution logic</summary>
2610      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
2611    </member>
2612    <member name="T:MbUnit.Framework.ConditionalExceptionAttribute">
2613      <summary>Tags method that should throw an exception if a predicate is true.</summary>
2614    </member>
2615    <member name="T:MbUnit.Framework.ControlAssert">
2616      <summary>Assertion helper for the <see cref="T:System.Windows.Forms.Control" /> class. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2617    </member>
2618    <member name="M:MbUnit.Framework.ControlAssert.AllowDrop(System.Windows.Forms.Control)">
2619      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> is true.</summary>
2620      <param name="actual">Instance containing the expected value.</param>
2621    </member>
2622    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2623      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2624      <param name="expected">Instance containing the expected value.</param>
2625      <param name="actual">Instance containing the tested value.</param>
2626    </member>
2627    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDefaultActionDescriptionEqual(System.String,System.Windows.Forms.Control)">
2628      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2629      <param name="expected">Expected value.</param>
2630      <param name="actual">Instance containing the tested value.</param>
2631    </member>
2632    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDescriptionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2633      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2634      <param name="expected">Instance containing the expected value.</param>
2635      <param name="actual">Instance containing the tested value.</param>
2636    </member>
2637    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleDescriptionEqual(System.String,System.Windows.Forms.Control)">
2638      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2639      <param name="expected">Expected value.</param>
2640      <param name="actual">Instance containing the tested value.</param>
2641    </member>
2642    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2643      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2644      <param name="expected">Instance containing the expected value.</param>
2645      <param name="actual">Instance containing the tested value.</param>
2646    </member>
2647    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleNameEqual(System.String,System.Windows.Forms.Control)">
2648      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleName" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2649      <param name="expected">Expected value.</param>
2650      <param name="actual">Instance containing the tested value.</param>
2651    </member>
2652    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2653      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2654      <param name="expected">Instance containing the expected value.</param>
2655      <param name="actual">Instance containing the tested value.</param>
2656    </member>
2657    <member name="M:MbUnit.Framework.ControlAssert.AreAccessibleRoleEqual(System.Windows.Forms.AccessibleRole,System.Windows.Forms.Control)">
2658      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2659      <param name="expected">Expected value.</param>
2660      <param name="actual">Instance containing the tested value.</param>
2661    </member>
2662    <member name="M:MbUnit.Framework.ControlAssert.AreAllowDropEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2663      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2664      <param name="expected">Instance containing the expected value.</param>
2665      <param name="actual">Instance containing the tested value.</param>
2666    </member>
2667    <member name="M:MbUnit.Framework.ControlAssert.AreAllowDropEqual(System.Boolean,System.Windows.Forms.Control)">
2668      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2669      <param name="expected">Expected value.</param>
2670      <param name="actual">Instance containing the tested value.</param>
2671    </member>
2672    <member name="M:MbUnit.Framework.ControlAssert.AreAnchorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2673      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2674      <param name="expected">Instance containing the expected value.</param>
2675      <param name="actual">Instance containing the tested value.</param>
2676    </member>
2677    <member name="M:MbUnit.Framework.ControlAssert.AreAnchorEqual(System.Windows.Forms.AnchorStyles,System.Windows.Forms.Control)">
2678      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Anchor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2679      <param name="expected">Expected value.</param>
2680      <param name="actual">Instance containing the tested value.</param>
2681    </member>
2682    <member name="M:MbUnit.Framework.ControlAssert.AreBackColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2683      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2684      <param name="expected">Instance containing the expected value.</param>
2685      <param name="actual">Instance containing the tested value.</param>
2686    </member>
2687    <member name="M:MbUnit.Framework.ControlAssert.AreBackColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
2688      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackColor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2689      <param name="expected">Expected value.</param>
2690      <param name="actual">Instance containing the tested value.</param>
2691    </member>
2692    <member name="M:MbUnit.Framework.ControlAssert.AreBackgroundImageEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2693      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2694      <param name="expected">Instance containing the expected value.</param>
2695      <param name="actual">Instance containing the tested value.</param>
2696    </member>
2697    <member name="M:MbUnit.Framework.ControlAssert.AreBackgroundImageEqual(System.Drawing.Image,System.Windows.Forms.Control)">
2698      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2699      <param name="expected">Expected value.</param>
2700      <param name="actual">Instance containing the tested value.</param>
2701    </member>
2702    <member name="M:MbUnit.Framework.ControlAssert.AreBindingContextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2703      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2704      <param name="expected">Instance containing the expected value.</param>
2705      <param name="actual">Instance containing the tested value.</param>
2706    </member>
2707    <member name="M:MbUnit.Framework.ControlAssert.AreBindingContextEqual(System.Windows.Forms.BindingContext,System.Windows.Forms.Control)">
2708      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.BindingContext" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2709      <param name="expected">Expected value.</param>
2710      <param name="actual">Instance containing the tested value.</param>
2711    </member>
2712    <member name="M:MbUnit.Framework.ControlAssert.AreBottomEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2713      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2714      <param name="expected">Instance containing the expected value.</param>
2715      <param name="actual">Instance containing the tested value.</param>
2716    </member>
2717    <member name="M:MbUnit.Framework.ControlAssert.AreBottomEqual(System.Int32,System.Windows.Forms.Control)">
2718      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bottom" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2719      <param name="expected">Expected value.</param>
2720      <param name="actual">Instance containing the tested value.</param>
2721    </member>
2722    <member name="M:MbUnit.Framework.ControlAssert.AreBoundsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2723      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2724      <param name="expected">Instance containing the expected value.</param>
2725      <param name="actual">Instance containing the tested value.</param>
2726    </member>
2727    <member name="M:MbUnit.Framework.ControlAssert.AreBoundsEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
2728      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Bounds" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2729      <param name="expected">Expected value.</param>
2730      <param name="actual">Instance containing the tested value.</param>
2731    </member>
2732    <member name="M:MbUnit.Framework.ControlAssert.AreCanFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2733      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2734      <param name="expected">Instance containing the expected value.</param>
2735      <param name="actual">Instance containing the tested value.</param>
2736    </member>
2737    <member name="M:MbUnit.Framework.ControlAssert.AreCanFocusEqual(System.Boolean,System.Windows.Forms.Control)">
2738      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2739      <param name="expected">Expected value.</param>
2740      <param name="actual">Instance containing the tested value.</param>
2741    </member>
2742    <member name="M:MbUnit.Framework.ControlAssert.AreCanSelectEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2743      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2744      <param name="expected">Instance containing the expected value.</param>
2745      <param name="actual">Instance containing the tested value.</param>
2746    </member>
2747    <member name="M:MbUnit.Framework.ControlAssert.AreCanSelectEqual(System.Boolean,System.Windows.Forms.Control)">
2748      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2749      <param name="expected">Expected value.</param>
2750      <param name="actual">Instance containing the tested value.</param>
2751    </member>
2752    <member name="M:MbUnit.Framework.ControlAssert.AreCaptureEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2753      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2754      <param name="expected">Instance containing the expected value.</param>
2755      <param name="actual">Instance containing the tested value.</param>
2756    </member>
2757    <member name="M:MbUnit.Framework.ControlAssert.AreCaptureEqual(System.Boolean,System.Windows.Forms.Control)">
2758      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2759      <param name="expected">Expected value.</param>
2760      <param name="actual">Instance containing the tested value.</param>
2761    </member>
2762    <member name="M:MbUnit.Framework.ControlAssert.AreCausesValidationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2763      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2764      <param name="expected">Instance containing the expected value.</param>
2765      <param name="actual">Instance containing the tested value.</param>
2766    </member>
2767    <member name="M:MbUnit.Framework.ControlAssert.AreCausesValidationEqual(System.Boolean,System.Windows.Forms.Control)">
2768      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2769      <param name="expected">Expected value.</param>
2770      <param name="actual">Instance containing the tested value.</param>
2771    </member>
2772    <member name="M:MbUnit.Framework.ControlAssert.AreClientRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2773      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2774      <param name="expected">Instance containing the expected value.</param>
2775      <param name="actual">Instance containing the tested value.</param>
2776    </member>
2777    <member name="M:MbUnit.Framework.ControlAssert.AreClientRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
2778      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientRectangle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2779      <param name="expected">Expected value.</param>
2780      <param name="actual">Instance containing the tested value.</param>
2781    </member>
2782    <member name="M:MbUnit.Framework.ControlAssert.AreClientSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2783      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2784      <param name="expected">Instance containing the expected value.</param>
2785      <param name="actual">Instance containing the tested value.</param>
2786    </member>
2787    <member name="M:MbUnit.Framework.ControlAssert.AreClientSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
2788      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ClientSize" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2789      <param name="expected">Expected value.</param>
2790      <param name="actual">Instance containing the tested value.</param>
2791    </member>
2792    <member name="M:MbUnit.Framework.ControlAssert.AreCompanyNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2793      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2794      <param name="expected">Instance containing the expected value.</param>
2795      <param name="actual">Instance containing the tested value.</param>
2796    </member>
2797    <member name="M:MbUnit.Framework.ControlAssert.AreCompanyNameEqual(System.String,System.Windows.Forms.Control)">
2798      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CompanyName" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2799      <param name="expected">Expected value.</param>
2800      <param name="actual">Instance containing the tested value.</param>
2801    </member>
2802    <member name="M:MbUnit.Framework.ControlAssert.AreContainerEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2803      <summary>Verifies that the property value <see cref="P:System.ComponentModel.Component.Container" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2804      <param name="expected">Instance containing the expected value.</param>
2805      <param name="actual">Instance containing the tested value.</param>
2806    </member>
2807    <member name="M:MbUnit.Framework.ControlAssert.AreContainerEqual(System.ComponentModel.IContainer,System.Windows.Forms.Control)">
2808      <summary>Verifies that the property value <see cref="P:System.ComponentModel.Component.Container" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2809      <param name="expected">Expected value.</param>
2810      <param name="actual">Instance containing the tested value.</param>
2811    </member>
2812    <member name="M:MbUnit.Framework.ControlAssert.AreContainsFocusEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2813      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2814      <param name="expected">Instance containing the expected value.</param>
2815      <param name="actual">Instance containing the tested value.</param>
2816    </member>
2817    <member name="M:MbUnit.Framework.ControlAssert.AreContainsFocusEqual(System.Boolean,System.Windows.Forms.Control)">
2818      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2819      <param name="expected">Expected value.</param>
2820      <param name="actual">Instance containing the tested value.</param>
2821    </member>
2822    <member name="M:MbUnit.Framework.ControlAssert.AreContextMenuEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2823      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2824      <param name="expected">Instance containing the expected value.</param>
2825      <param name="actual">Instance containing the tested value.</param>
2826    </member>
2827    <member name="M:MbUnit.Framework.ControlAssert.AreContextMenuEqual(System.Windows.Forms.ContextMenu,System.Windows.Forms.Control)">
2828      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContextMenu" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2829      <param name="expected">Expected value.</param>
2830      <param name="actual">Instance containing the tested value.</param>
2831    </member>
2832    <member name="M:MbUnit.Framework.ControlAssert.AreControlsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2833      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2834      <param name="expected">Instance containing the expected value.</param>
2835      <param name="actual">Instance containing the tested value.</param>
2836    </member>
2837    <member name="M:MbUnit.Framework.ControlAssert.AreControlsEqual(System.Windows.Forms.Control.ControlCollection,System.Windows.Forms.Control)">
2838      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Controls" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2839      <param name="expected">Expected value.</param>
2840      <param name="actual">Instance containing the tested value.</param>
2841    </member>
2842    <member name="M:MbUnit.Framework.ControlAssert.AreCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2843      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2844      <param name="expected">Instance containing the expected value.</param>
2845      <param name="actual">Instance containing the tested value.</param>
2846    </member>
2847    <member name="M:MbUnit.Framework.ControlAssert.AreCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
2848      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2849      <param name="expected">Expected value.</param>
2850      <param name="actual">Instance containing the tested value.</param>
2851    </member>
2852    <member name="M:MbUnit.Framework.ControlAssert.AreCursorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2853      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2854      <param name="expected">Instance containing the expected value.</param>
2855      <param name="actual">Instance containing the tested value.</param>
2856    </member>
2857    <member name="M:MbUnit.Framework.ControlAssert.AreCursorEqual(System.Windows.Forms.Cursor,System.Windows.Forms.Control)">
2858      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Cursor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2859      <param name="expected">Expected value.</param>
2860      <param name="actual">Instance containing the tested value.</param>
2861    </member>
2862    <member name="M:MbUnit.Framework.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2863      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2864      <param name="expected">Instance containing the expected value.</param>
2865      <param name="actual">Instance containing the tested value.</param>
2866    </member>
2867    <member name="M:MbUnit.Framework.ControlAssert.AreDataBindingsEqual(System.Windows.Forms.ControlBindingsCollection,System.Windows.Forms.Control)">
2868      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DataBindings" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2869      <param name="expected">Expected value.</param>
2870      <param name="actual">Instance containing the tested value.</param>
2871    </member>
2872    <member name="M:MbUnit.Framework.ControlAssert.AreDisplayRectangleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2873      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2874      <param name="expected">Instance containing the expected value.</param>
2875      <param name="actual">Instance containing the tested value.</param>
2876    </member>
2877    <member name="M:MbUnit.Framework.ControlAssert.AreDisplayRectangleEqual(System.Drawing.Rectangle,System.Windows.Forms.Control)">
2878      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2879      <param name="expected">Expected value.</param>
2880      <param name="actual">Instance containing the tested value.</param>
2881    </member>
2882    <member name="M:MbUnit.Framework.ControlAssert.AreDisposingEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2883      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2884      <param name="expected">Instance containing the expected value.</param>
2885      <param name="actual">Instance containing the tested value.</param>
2886    </member>
2887    <member name="M:MbUnit.Framework.ControlAssert.AreDisposingEqual(System.Boolean,System.Windows.Forms.Control)">
2888      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2889      <param name="expected">Expected value.</param>
2890      <param name="actual">Instance containing the tested value.</param>
2891    </member>
2892    <member name="M:MbUnit.Framework.ControlAssert.AreDockEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2893      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2894      <param name="expected">Instance containing the expected value.</param>
2895      <param name="actual">Instance containing the tested value.</param>
2896    </member>
2897    <member name="M:MbUnit.Framework.ControlAssert.AreDockEqual(System.Windows.Forms.DockStyle,System.Windows.Forms.Control)">
2898      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Dock" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2899      <param name="expected">Expected value.</param>
2900      <param name="actual">Instance containing the tested value.</param>
2901    </member>
2902    <member name="M:MbUnit.Framework.ControlAssert.AreEnabledEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2903      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2904      <param name="expected">Instance containing the expected value.</param>
2905      <param name="actual">Instance containing the tested value.</param>
2906    </member>
2907    <member name="M:MbUnit.Framework.ControlAssert.AreEnabledEqual(System.Boolean,System.Windows.Forms.Control)">
2908      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2909      <param name="expected">Expected value.</param>
2910      <param name="actual">Instance containing the tested value.</param>
2911    </member>
2912    <member name="M:MbUnit.Framework.ControlAssert.AreFocusedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2913      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2914      <param name="expected">Instance containing the expected value.</param>
2915      <param name="actual">Instance containing the tested value.</param>
2916    </member>
2917    <member name="M:MbUnit.Framework.ControlAssert.AreFocusedEqual(System.Boolean,System.Windows.Forms.Control)">
2918      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2919      <param name="expected">Expected value.</param>
2920      <param name="actual">Instance containing the tested value.</param>
2921    </member>
2922    <member name="M:MbUnit.Framework.ControlAssert.AreFontEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2923      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2924      <param name="expected">Instance containing the expected value.</param>
2925      <param name="actual">Instance containing the tested value.</param>
2926    </member>
2927    <member name="M:MbUnit.Framework.ControlAssert.AreFontEqual(System.Drawing.Font,System.Windows.Forms.Control)">
2928      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Font" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2929      <param name="expected">Expected value.</param>
2930      <param name="actual">Instance containing the tested value.</param>
2931    </member>
2932    <member name="M:MbUnit.Framework.ControlAssert.AreForeColorEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2933      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2934      <param name="expected">Instance containing the expected value.</param>
2935      <param name="actual">Instance containing the tested value.</param>
2936    </member>
2937    <member name="M:MbUnit.Framework.ControlAssert.AreForeColorEqual(System.Drawing.Color,System.Windows.Forms.Control)">
2938      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ForeColor" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2939      <param name="expected">Expected value.</param>
2940      <param name="actual">Instance containing the tested value.</param>
2941    </member>
2942    <member name="M:MbUnit.Framework.ControlAssert.AreHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2943      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2944      <param name="expected">Instance containing the expected value.</param>
2945      <param name="actual">Instance containing the tested value.</param>
2946    </member>
2947    <member name="M:MbUnit.Framework.ControlAssert.AreHandleEqual(System.IntPtr,System.Windows.Forms.Control)">
2948      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Handle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2949      <param name="expected">Expected value.</param>
2950      <param name="actual">Instance containing the tested value.</param>
2951    </member>
2952    <member name="M:MbUnit.Framework.ControlAssert.AreHasChildrenEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2953      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2954      <param name="expected">Instance containing the expected value.</param>
2955      <param name="actual">Instance containing the tested value.</param>
2956    </member>
2957    <member name="M:MbUnit.Framework.ControlAssert.AreHasChildrenEqual(System.Boolean,System.Windows.Forms.Control)">
2958      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2959      <param name="expected">Expected value.</param>
2960      <param name="actual">Instance containing the tested value.</param>
2961    </member>
2962    <member name="M:MbUnit.Framework.ControlAssert.AreHeightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2963      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2964      <param name="expected">Instance containing the expected value.</param>
2965      <param name="actual">Instance containing the tested value.</param>
2966    </member>
2967    <member name="M:MbUnit.Framework.ControlAssert.AreHeightEqual(System.Int32,System.Windows.Forms.Control)">
2968      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Height" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2969      <param name="expected">Expected value.</param>
2970      <param name="actual">Instance containing the tested value.</param>
2971    </member>
2972    <member name="M:MbUnit.Framework.ControlAssert.AreImeModeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2973      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2974      <param name="expected">Instance containing the expected value.</param>
2975      <param name="actual">Instance containing the tested value.</param>
2976    </member>
2977    <member name="M:MbUnit.Framework.ControlAssert.AreImeModeEqual(System.Windows.Forms.ImeMode,System.Windows.Forms.Control)">
2978      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ImeMode" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2979      <param name="expected">Expected value.</param>
2980      <param name="actual">Instance containing the tested value.</param>
2981    </member>
2982    <member name="M:MbUnit.Framework.ControlAssert.AreInvokeRequiredEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2983      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2984      <param name="expected">Instance containing the expected value.</param>
2985      <param name="actual">Instance containing the tested value.</param>
2986    </member>
2987    <member name="M:MbUnit.Framework.ControlAssert.AreInvokeRequiredEqual(System.Boolean,System.Windows.Forms.Control)">
2988      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2989      <param name="expected">Expected value.</param>
2990      <param name="actual">Instance containing the tested value.</param>
2991    </member>
2992    <member name="M:MbUnit.Framework.ControlAssert.AreIsAccessibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
2993      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
2994      <param name="expected">Instance containing the expected value.</param>
2995      <param name="actual">Instance containing the tested value.</param>
2996    </member>
2997    <member name="M:MbUnit.Framework.ControlAssert.AreIsAccessibleEqual(System.Boolean,System.Windows.Forms.Control)">
2998      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
2999      <param name="expected">Expected value.</param>
3000      <param name="actual">Instance containing the tested value.</param>
3001    </member>
3002    <member name="M:MbUnit.Framework.ControlAssert.AreIsDisposedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3003      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3004      <param name="expected">Instance containing the expected value.</param>
3005      <param name="actual">Instance containing the tested value.</param>
3006    </member>
3007    <member name="M:MbUnit.Framework.ControlAssert.AreIsDisposedEqual(System.Boolean,System.Windows.Forms.Control)">
3008      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3009      <param name="expected">Expected value.</param>
3010      <param name="actual">Instance containing the tested value.</param>
3011    </member>
3012    <member name="M:MbUnit.Framework.ControlAssert.AreIsHandleCreatedEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3013      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3014      <param name="expected">Instance containing the expected value.</param>
3015      <param name="actual">Instance containing the tested value.</param>
3016    </member>
3017    <member name="M:MbUnit.Framework.ControlAssert.AreIsHandleCreatedEqual(System.Boolean,System.Windows.Forms.Control)">
3018      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3019      <param name="expected">Expected value.</param>
3020      <param name="actual">Instance containing the tested value.</param>
3021    </member>
3022    <member name="M:MbUnit.Framework.ControlAssert.AreLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3023      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3024      <param name="expected">Instance containing the expected value.</param>
3025      <param name="actual">Instance containing the tested value.</param>
3026    </member>
3027    <member name="M:MbUnit.Framework.ControlAssert.AreLeftEqual(System.Int32,System.Windows.Forms.Control)">
3028      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Left" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3029      <param name="expected">Expected value.</param>
3030      <param name="actual">Instance containing the tested value.</param>
3031    </member>
3032    <member name="M:MbUnit.Framework.ControlAssert.AreLocationEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3033      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3034      <param name="expected">Instance containing the expected value.</param>
3035      <param name="actual">Instance containing the tested value.</param>
3036    </member>
3037    <member name="M:MbUnit.Framework.ControlAssert.AreLocationEqual(System.Drawing.Point,System.Windows.Forms.Control)">
3038      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Location" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3039      <param name="expected">Expected value.</param>
3040      <param name="actual">Instance containing the tested value.</param>
3041    </member>
3042    <member name="M:MbUnit.Framework.ControlAssert.AreNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3043      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3044      <param name="expected">Instance containing the expected value.</param>
3045      <param name="actual">Instance containing the tested value.</param>
3046    </member>
3047    <member name="M:MbUnit.Framework.ControlAssert.AreNameEqual(System.String,System.Windows.Forms.Control)">
3048      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Name" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3049      <param name="expected">Expected value.</param>
3050      <param name="actual">Instance containing the tested value.</param>
3051    </member>
3052    <member name="M:MbUnit.Framework.ControlAssert.AreParentEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3053      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Parent" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3054      <param name="expected">Instance containing the expected value.</param>
3055      <param name="actual">Instance containing the tested value.</param>
3056    </member>
3057    <member name="M:MbUnit.Framework.ControlAssert.AreProductNameEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3058      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3059      <param name="expected">Instance containing the expected value.</param>
3060      <param name="actual">Instance containing the tested value.</param>
3061    </member>
3062    <member name="M:MbUnit.Framework.ControlAssert.AreProductNameEqual(System.String,System.Windows.Forms.Control)">
3063      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductName" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3064      <param name="expected">Expected value.</param>
3065      <param name="actual">Instance containing the tested value.</param>
3066    </member>
3067    <member name="M:MbUnit.Framework.ControlAssert.AreProductVersionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3068      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3069      <param name="expected">Instance containing the expected value.</param>
3070      <param name="actual">Instance containing the tested value.</param>
3071    </member>
3072    <member name="M:MbUnit.Framework.ControlAssert.AreProductVersionEqual(System.String,System.Windows.Forms.Control)">
3073      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ProductVersion" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3074      <param name="expected">Expected value.</param>
3075      <param name="actual">Instance containing the tested value.</param>
3076    </member>
3077    <member name="M:MbUnit.Framework.ControlAssert.AreRecreatingHandleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3078      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3079      <param name="expected">Instance containing the expected value.</param>
3080      <param name="actual">Instance containing the tested value.</param>
3081    </member>
3082    <member name="M:MbUnit.Framework.ControlAssert.AreRecreatingHandleEqual(System.Boolean,System.Windows.Forms.Control)">
3083      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3084      <param name="expected">Expected value.</param>
3085      <param name="actual">Instance containing the tested value.</param>
3086    </member>
3087    <member name="M:MbUnit.Framework.ControlAssert.AreRegionEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3088      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3089      <param name="expected">Instance containing the expected value.</param>
3090      <param name="actual">Instance containing the tested value.</param>
3091    </member>
3092    <member name="M:MbUnit.Framework.ControlAssert.AreRegionEqual(System.Drawing.Region,System.Windows.Forms.Control)">
3093      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Region" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3094      <param name="expected">Expected value.</param>
3095      <param name="actual">Instance containing the tested value.</param>
3096    </member>
3097    <member name="M:MbUnit.Framework.ControlAssert.AreRightEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3098      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3099      <param name="expected">Instance containing the expected value.</param>
3100      <param name="actual">Instance containing the tested value.</param>
3101    </member>
3102    <member name="M:MbUnit.Framework.ControlAssert.AreRightEqual(System.Int32,System.Windows.Forms.Control)">
3103      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Right" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3104      <param name="expected">Expected value.</param>
3105      <param name="actual">Instance containing the tested value.</param>
3106    </member>
3107    <member name="M:MbUnit.Framework.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3108      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3109      <param name="expected">Instance containing the expected value.</param>
3110      <param name="actual">Instance containing the tested value.</param>
3111    </member>
3112    <member name="M:MbUnit.Framework.ControlAssert.AreRightToLeftEqual(System.Windows.Forms.RightToLeft,System.Windows.Forms.Control)">
3113      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RightToLeft" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3114      <param name="expected">Expected value.</param>
3115      <param name="actual">Instance containing the tested value.</param>
3116    </member>
3117    <member name="M:MbUnit.Framework.ControlAssert.AreSiteEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3118      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3119      <param name="expected">Instance containing the expected value.</param>
3120      <param name="actual">Instance containing the tested value.</param>
3121    </member>
3122    <member name="M:MbUnit.Framework.ControlAssert.AreSiteEqual(System.ComponentModel.ISite,System.Windows.Forms.Control)">
3123      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Site" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3124      <param name="expected">Expected value.</param>
3125      <param name="actual">Instance containing the tested value.</param>
3126    </member>
3127    <member name="M:MbUnit.Framework.ControlAssert.AreSizeEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3128      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3129      <param name="expected">Instance containing the expected value.</param>
3130      <param name="actual">Instance containing the tested value.</param>
3131    </member>
3132    <member name="M:MbUnit.Framework.ControlAssert.AreSizeEqual(System.Drawing.Size,System.Windows.Forms.Control)">
3133      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Size" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3134      <param name="expected">Expected value.</param>
3135      <param name="actual">Instance containing the tested value.</param>
3136    </member>
3137    <member name="M:MbUnit.Framework.ControlAssert.AreTabIndexEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3138      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3139      <param name="expected">Instance containing the expected value.</param>
3140      <param name="actual">Instance containing the tested value.</param>
3141    </member>
3142    <member name="M:MbUnit.Framework.ControlAssert.AreTabIndexEqual(System.Int32,System.Windows.Forms.Control)">
3143      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabIndex" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3144      <param name="expected">Expected value.</param>
3145      <param name="actual">Instance containing the tested value.</param>
3146    </member>
3147    <member name="M:MbUnit.Framework.ControlAssert.AreTabStopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3148      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3149      <param name="expected">Instance containing the expected value.</param>
3150      <param name="actual">Instance containing the tested value.</param>
3151    </member>
3152    <member name="M:MbUnit.Framework.ControlAssert.AreTabStopEqual(System.Boolean,System.Windows.Forms.Control)">
3153      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3154      <param name="expected">Expected value.</param>
3155      <param name="actual">Instance containing the tested value.</param>
3156    </member>
3157    <member name="M:MbUnit.Framework.ControlAssert.AreTagEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3158      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3159      <param name="expected">Instance containing the expected value.</param>
3160      <param name="actual">Instance containing the tested value.</param>
3161    </member>
3162    <member name="M:MbUnit.Framework.ControlAssert.AreTagEqual(System.Object,System.Windows.Forms.Control)">
3163      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Tag" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3164      <param name="expected">Expected value.</param>
3165      <param name="actual">Instance containing the tested value.</param>
3166    </member>
3167    <member name="M:MbUnit.Framework.ControlAssert.AreTextEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3168      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3169      <param name="expected">Instance containing the expected value.</param>
3170      <param name="actual">Instance containing the tested value.</param>
3171    </member>
3172    <member name="M:MbUnit.Framework.ControlAssert.AreTextEqual(System.String,System.Windows.Forms.Control)">
3173      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Text" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3174      <param name="expected">Expected value.</param>
3175      <param name="actual">Instance containing the tested value.</param>
3176    </member>
3177    <member name="M:MbUnit.Framework.ControlAssert.AreTopEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3178      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3179      <param name="expected">Instance containing the expected value.</param>
3180      <param name="actual">Instance containing the tested value.</param>
3181    </member>
3182    <member name="M:MbUnit.Framework.ControlAssert.AreTopEqual(System.Int32,System.Windows.Forms.Control)">
3183      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Top" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3184      <param name="expected">Expected value.</param>
3185      <param name="actual">Instance containing the tested value.</param>
3186    </member>
3187    <member name="M:MbUnit.Framework.ControlAssert.AreTopLevelControlEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3188      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TopLevelControl" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3189      <param name="expected">Instance containing the expected value.</param>
3190      <param name="actual">Instance containing the tested value.</param>
3191    </member>
3192    <member name="M:MbUnit.Framework.ControlAssert.AreVisibleEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3193      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3194      <param name="expected">Instance containing the expected value.</param>
3195      <param name="actual">Instance containing the tested value.</param>
3196    </member>
3197    <member name="M:MbUnit.Framework.ControlAssert.AreVisibleEqual(System.Boolean,System.Windows.Forms.Control)">
3198      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3199      <param name="expected">Expected value.</param>
3200      <param name="actual">Instance containing the tested value.</param>
3201    </member>
3202    <member name="M:MbUnit.Framework.ControlAssert.AreWidthEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3203      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3204      <param name="expected">Instance containing the expected value.</param>
3205      <param name="actual">Instance containing the tested value.</param>
3206    </member>
3207    <member name="M:MbUnit.Framework.ControlAssert.AreWidthEqual(System.Int32,System.Windows.Forms.Control)">
3208      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Width" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3209      <param name="expected">Expected value.</param>
3210      <param name="actual">Instance containing the tested value.</param>
3211    </member>
3212    <member name="M:MbUnit.Framework.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.Control,System.Windows.Forms.Control)">
3213      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget" /> of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
3214      <param name="expected">Instance containing the expected value.</param>
3215      <param name="actual">Instance containing the tested value.</param>
3216    </member>
3217    <member name="M:MbUnit.Framework.ControlAssert.AreWindowTargetEqual(System.Windows.Forms.IWindowTarget,System.Windows.Forms.Control)">
3218      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.WindowTarget" /> of <paramref name="actual" /> is equal to <paramref name="expected" />.</summary>
3219      <param name="expected">Expected value.</param>
3220      <param name="actual">Instance containing the tested value.</param>
3221    </member>
3222    <member name="M:MbUnit.Framework.ControlAssert.CanFocus(System.Windows.Forms.Control)">
3223      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> is true.</summary>
3224      <param name="actual">Instance containing the expected value.</param>
3225    </member>
3226    <member name="M:MbUnit.Framework.ControlAssert.CanSelect(System.Windows.Forms.Control)">
3227      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> is true.</summary>
3228      <param name="actual">Instance containing the expected value.</param>
3229    </member>
3230    <member name="M:MbUnit.Framework.ControlAssert.Capture(System.Windows.Forms.Control)">
3231      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> is true.</summary>
3232      <param name="actual">Instance containing the expected value.</param>
3233    </member>
3234    <member name="M:MbUnit.Framework.ControlAssert.CausesValidation(System.Windows.Forms.Control)">
3235      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> is true.</summary>
3236      <param name="actual">Instance containing the expected value.</param>
3237    </member>
3238    <member name="M:MbUnit.Framework.ControlAssert.ContainsFocus(System.Windows.Forms.Control)">
3239      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> is true.</summary>
3240      <param name="actual">Instance containing the expected value.</param>
3241    </member>
3242    <member name="M:MbUnit.Framework.ControlAssert.Created(System.Windows.Forms.Control)">
3243      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> is true.</summary>
3244      <param name="actual">Instance containing the expected value.</param>
3245    </member>
3246    <member name="M:MbUnit.Framework.ControlAssert.Disposing(System.Windows.Forms.Control)">
3247      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> is true.</summary>
3248      <param name="actual">Instance containing the expected value.</param>
3249    </member>
3250    <member name="M:MbUnit.Framework.ControlAssert.Enabled(System.Windows.Forms.Control)">
3251      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> is true.</summary>
3252      <param name="actual">Instance containing the expected value.</param>
3253    </member>
3254    <member name="M:MbUnit.Framework.ControlAssert.Focused(System.Windows.Forms.Control)">
3255      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> is true.</summary>
3256      <param name="actual">Instance containing the expected value.</param>
3257    </member>
3258    <member name="M:MbUnit.Framework.ControlAssert.HasChildren(System.Windows.Forms.Control)">
3259      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> is true.</summary>
3260      <param name="actual">Instance containing the expected value.</param>
3261    </member>
3262    <member name="M:MbUnit.Framework.ControlAssert.InvokeRequired(System.Windows.Forms.Control)">
3263      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> is true.</summary>
3264      <param name="actual">Instance containing the expected value.</param>
3265    </member>
3266    <member name="M:MbUnit.Framework.ControlAssert.IsAccessible(System.Windows.Forms.Control)">
3267      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> is true.</summary>
3268      <param name="actual">Instance containing the expected value.</param>
3269    </member>
3270    <member name="M:MbUnit.Framework.ControlAssert.IsDisposed(System.Windows.Forms.Control)">
3271      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> is true.</summary>
3272      <param name="actual">Instance containing the expected value.</param>
3273    </member>
3274    <member name="M:MbUnit.Framework.ControlAssert.IsHandleCreated(System.Windows.Forms.Control)">
3275      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> is true.</summary>
3276      <param name="actual">Instance containing the expected value.</param>
3277    </member>
3278    <member name="M:MbUnit.Framework.ControlAssert.IsNotandleCreated(System.Windows.Forms.Control)">
3279      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> is false.</summary>
3280      <param name="actual">Instance containing the expected value.</param>
3281    </member>
3282    <member name="M:MbUnit.Framework.ControlAssert.IsNotccessible(System.Windows.Forms.Control)">
3283      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsAccessible" /> is false.</summary>
3284      <param name="actual">Instance containing the expected value.</param>
3285    </member>
3286    <member name="M:MbUnit.Framework.ControlAssert.IsNotisposed(System.Windows.Forms.Control)">
3287      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.IsDisposed" /> is false.</summary>
3288      <param name="actual">Instance containing the expected value.</param>
3289    </member>
3290    <member name="M:MbUnit.Framework.ControlAssert.NotAllowDrop(System.Windows.Forms.Control)">
3291      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.AllowDrop" /> is false.</summary>
3292      <param name="actual">Instance containing the expected value.</param>
3293    </member>
3294    <member name="M:MbUnit.Framework.ControlAssert.NotCanFocus(System.Windows.Forms.Control)">
3295      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanFocus" /> is false.</summary>
3296      <param name="actual">Instance containing the expected value.</param>
3297    </member>
3298    <member name="M:MbUnit.Framework.ControlAssert.NotCanSelect(System.Windows.Forms.Control)">
3299      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CanSelect" /> is false.</summary>
3300      <param name="actual">Instance containing the expected value.</param>
3301    </member>
3302    <member name="M:MbUnit.Framework.ControlAssert.NotCapture(System.Windows.Forms.Control)">
3303      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Capture" /> is false.</summary>
3304      <param name="actual">Instance containing the expected value.</param>
3305    </member>
3306    <member name="M:MbUnit.Framework.ControlAssert.NotCausesValidation(System.Windows.Forms.Control)">
3307      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.CausesValidation" /> is false.</summary>
3308      <param name="actual">Instance containing the expected value.</param>
3309    </member>
3310    <member name="M:MbUnit.Framework.ControlAssert.NotContainsFocus(System.Windows.Forms.Control)">
3311      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.ContainsFocus" /> is false.</summary>
3312      <param name="actual">Instance containing the expected value.</param>
3313    </member>
3314    <member name="M:MbUnit.Framework.ControlAssert.NotCreated(System.Windows.Forms.Control)">
3315      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Created" /> is false.</summary>
3316      <param name="actual">Instance containing the expected value.</param>
3317    </member>
3318    <member name="M:MbUnit.Framework.ControlAssert.NotDisposing(System.Windows.Forms.Control)">
3319      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Disposing" /> is false.</summary>
3320      <param name="actual">Instance containing the expected value.</param>
3321    </member>
3322    <member name="M:MbUnit.Framework.ControlAssert.NotEnabled(System.Windows.Forms.Control)">
3323      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Enabled" /> is false.</summary>
3324      <param name="actual">Instance containing the expected value.</param>
3325    </member>
3326    <member name="M:MbUnit.Framework.ControlAssert.NotFocused(System.Windows.Forms.Control)">
3327      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Focused" /> is false.</summary>
3328      <param name="actual">Instance containing the expected value.</param>
3329    </member>
3330    <member name="M:MbUnit.Framework.ControlAssert.NotHasChildren(System.Windows.Forms.Control)">
3331      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.HasChildren" /> is false.</summary>
3332      <param name="actual">Instance containing the expected value.</param>
3333    </member>
3334    <member name="M:MbUnit.Framework.ControlAssert.NotInvokeRequired(System.Windows.Forms.Control)">
3335      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> is false.</summary>
3336      <param name="actual">Instance containing the expected value.</param>
3337    </member>
3338    <member name="M:MbUnit.Framework.ControlAssert.NotRecreatingHandle(System.Windows.Forms.Control)">
3339      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> is false.</summary>
3340      <param name="actual">Instance containing the expected value.</param>
3341    </member>
3342    <member name="M:MbUnit.Framework.ControlAssert.NotTabStop(System.Windows.Forms.Control)">
3343      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> is false.</summary>
3344      <param name="actual">Instance containing the expected value.</param>
3345    </member>
3346    <member name="M:MbUnit.Framework.ControlAssert.NotVisible(System.Windows.Forms.Control)">
3347      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> is false.</summary>
3348      <param name="actual">Instance containing the expected value.</param>
3349    </member>
3350    <member name="M:MbUnit.Framework.ControlAssert.RecreatingHandle(System.Windows.Forms.Control)">
3351      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> is true.</summary>
3352      <param name="actual">Instance containing the expected value.</param>
3353    </member>
3354    <member name="M:MbUnit.Framework.ControlAssert.TabStop(System.Windows.Forms.Control)">
3355      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.TabStop" /> is true.</summary>
3356      <param name="actual">Instance containing the expected value.</param>
3357    </member>
3358    <member name="M:MbUnit.Framework.ControlAssert.Visible(System.Windows.Forms.Control)">
3359      <summary>Verifies that the property value <see cref="P:System.Windows.Forms.Control.Visible" /> is true.</summary>
3360      <param name="actual">Instance containing the expected value.</param>
3361    </member>
3362    <member name="T:MbUnit.Framework.CopyToProviderAttribute">
3363      <summary>Tags method that provider a new object and copy the content of the arguments into the object</summary>
3364    </member>
3365    <member name="T:MbUnit.Framework.DataAssert">
3366      <summary>Assertion class for Database related object. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3367    </member>
3368    <member name="M:MbUnit.Framework.DataAssert.AreDataEqual(System.Data.DataSet,System.Data.DataSet)">
3369      <summary>Assert that <see cref="T:System.Data.DataSet" /> data are equal.</summary>
3370    </member>
3371    <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataColumn,System.Data.DataColumn)">
3372      <summary>Asserts that two <see cref="T:System.Data.DataColumn" /> are equal.</summary>
3373      <param name="expected">Expected <see cref="T:System.Data.DataColumn" /> instance.</param>
3374      <param name="actual">Actual <see cref="T:System.Data.DataColumn" /> instance.</param>
3375    </member>
3376    <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataRow,System.Data.DataRow)">
3377      <summary>Asserts that two <see cref="T:System.Data.DataRow" /> are equal.</summary>
3378      <param name="expected">Expected <see cref="T:System.Data.DataRow" /> instance.</param>
3379      <param name="actual">Actual <see cref="T:System.Data.DataRow" /> instance.</param>
3380    </member>
3381    <member name="M:MbUnit.Framework.DataAssert.AreEqual(System.Data.DataSet,System.Data.DataSet)">
3382      <summary>Assert that <see cref="T:System.Data.DataSet" /> schemas and data are equal.</summary>
3383    </member>
3384    <member name="M:MbUnit.Framework.DataAssert.AreSchemasEqual(System.Data.DataSet,System.Data.DataSet)">
3385      <summary>Assert that <see cref="T:System.Data.DataSet" /> schemas are equal.</summary>
3386    </member>
3387    <member name="T:MbUnit.Framework.DataFixtureAttribute">
3388      <summary>Data Test fixture. This class cannot be inherited.</summary>
3389    </member>
3390    <member name="M:MbUnit.Framework.DataFixtureAttribute.GetRun">
3391      <summary>Creates the execution logic</summary>
3392      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
3393    </member>
3394    <member name="T:MbUnit.Framework.DataProviderAttribute">
3395      <summary>Tags method that provide data for the tests.</summary>
3396    </member>
3397    <member name="T:MbUnit.Framework.DurationAttribute">
3398      <summary>Tag method that should return in a given time interval.</summary>
3399    </member>
3400    <member name="T:MbUnit.Framework.EnumerationFixtureAttribute">
3401      <summary>Enumeration Pattern implementations. This class cannot be inherited.</summary>
3402    </member>
3403    <member name="T:MbUnit.Framework.ExpectedExceptionAttribute">
3404      <summary>Tags method that should throw an exception.</summary>
3405    </member>
3406    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
3407      <summary>The expected exception.</summary>
3408    </member>
3409    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
3410      <summary>The expected message text.</summary>
3411    </member>
3412    <member name="P:MbUnit.Framework.ExpectedExceptionAttribute.InnerExceptionType">
3413      <summary>The expected inner exception.</summary>
3414    </member>
3415    <member name="T:MbUnit.Framework.ExplicitAttribute">
3416      <summary>Tags test methods that are only to be run when explicitly selected. This class cannot be inherited.</summary>
3417    </member>
3418    <member name="T:MbUnit.Framework.ExtractResourceAttribute">
3419      <summary>Test methods annotated with this attribute will have the specified embedded resource extracted.</summary>
3420    </member>
3421    <member name="P:MbUnit.Framework.ExtractResourceAttribute.Destination">
3422      <summary>The destination file to write the resource to. Should be a path.</summary>
3423    </member>
3424    <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceCleanup">
3425      <summary>Whether or not to cleanup the resource.</summary>
3426    </member>
3427    <member name="P:MbUnit.Framework.ExtractResourceAttribute.ResourceName">
3428      <summary>The full name of the resource. Use Reflector to find this out if you don't know.</summary>
3429    </member>
3430    <member name="P:MbUnit.Framework.ExtractResourceAttribute.Stream">
3431      <summary>The current resource stream if using the attribute without specifying a destination.</summary>
3432    </member>
3433    <member name="P:MbUnit.Framework.ExtractResourceAttribute.Type">
3434      <summary>The type within the assembly that contains the embedded resource.</summary>
3435    </member>
3436    <member name="T:MbUnit.Framework.FillAttribute">
3437      <summary>Tags method that fill collections with data.</summary>
3438    </member>
3439    <member name="T:MbUnit.Framework.IgnoreAttribute">
3440      <summary>Tags test methods that are ignored. This class cannot be inherited.</summary>
3441    </member>
3442    <member name="T:MbUnit.Framework.ImportanceAttribute">
3443      <summary>This attribute collects the test importance information.</summary>
3444    </member>
3445    <member name="T:MbUnit.Framework.IndexerProviderAttribute">
3446      <summary>Tag method that provider a collection, an inde</summary>
3447    </member>
3448    <member name="T:MbUnit.Framework.MultipleCultureAttribute">
3449      <summary>Tag method that gives a list of culture that the test should run on.</summary>
3450    </member>
3451    <member name="T:MbUnit.Framework.NotInheritedExpectedExceptionAttribute">
3452      <summary>Tags method that should throw an exception.</summary>
3453    </member>
3454    <member name="T:MbUnit.Framework.PerfAssert">
3455      <summary>Performance Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3456    </member>
3457    <member name="M:MbUnit.Framework.PerfAssert.Duration(System.Double)">
3458      <summary>Creates a countdown timer that will assert if execution time exceeds maximum duration.</summary>
3459    </member>
3460    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData">
3461      <summary>.Net CLR Data This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3462    </member>
3463    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools">
3464      <summary>Current number of pools associated with the process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3465    </member>
3466    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbconnectionpools.NextValue">
3467      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3468      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
3469    </member>
3470    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections">
3471      <summary>Current number of connections, pooled or not. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3472    </member>
3473    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledandnonpooledconnections.NextValue">
3474      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3475      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
3476    </member>
3477    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections">
3478      <summary>Current number of connections in all pools associated with the process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3479    </member>
3480    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientCurrentNbpooledconnections.NextValue">
3481      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3482      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
3483    </member>
3484    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections">
3485      <summary>The highest number of connections in all pools since the process started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3486    </member>
3487    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientPeakNbpooledconnections.NextValue">
3488      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3489      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
3490    </member>
3491    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands">
3492      <summary>The total number of command executes that have failed for any reason. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3493    </member>
3494    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedcommands.NextValue">
3495      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3496      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
3497    </member>
3498    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects">
3499      <summary>The total number of connection open attempts that have failed for any reason. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3500    </member>
3501    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrData.SqlClientTotalNbfailedconnects.NextValue">
3502      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3503      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
3504    </member>
3505    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions">
3506      <summary>Runtime statistics on CLR exception handling. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3507    </member>
3508    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown">
3509      <summary>This counter displays the total number of exceptions thrown since the start of the application. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions that are re-thrown would get counted again. Exceptions should only occur in rare situations and not in the normal control flow of the program. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3510    </member>
3511    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrown.NextValue">
3512      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3513      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3514    </member>
3515    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec">
3516      <summary>This counter displays the number of exceptions thrown per second. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions should only occur in rare situations and not in the normal control flow of the program; this counter was designed as an indicator of potential performance problems due to large (&gt;100s) rate of exceptions thrown. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3517    </member>
3518    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofExcepsThrownsec.NextValue">
3519      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3520      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3521    </member>
3522    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec">
3523      <summary>This counter displays the number of .NET exception filters executed per second. An exception filter evaluates whether an exception should be handled or not. This counter tracks the rate of exception filters evaluated; irrespective of whether the exception was handled or not. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3524    </member>
3525    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFilterssec.NextValue">
3526      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3527      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3528    </member>
3529    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec">
3530      <summary>This counter displays the number of finally blocks executed per second. A finally block is guaranteed to be executed regardless of how the try block was exited. Only the finally blocks that are executed for an exception are counted; finally blocks on normal code paths are not counted by this counter. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3531    </member>
3532    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.NbofFinallyssec.NextValue">
3533      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3534      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3535    </member>
3536    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec">
3537      <summary>This counter displays the number of stack frames traversed from the frame that threw the .NET exception to the frame that handled the exception per second. This counter resets to 0 when an exception handler is entered; so nested exceptions would show the handler to handler stack depth. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3538    </member>
3539    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrExceptions.ThrowToCatchDepthsec.NextValue">
3540      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3541      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3542    </member>
3543    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop">
3544      <summary>Stats for CLR interop. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3545    </member>
3546    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws">
3547      <summary>This counter displays the current number of Com-Callable-Wrappers (CCWs). A CCW is a proxy for the .NET managed object being referenced from unmanaged COM client(s). This counter was designed to indicate the number of managed objects being referenced by unmanaged COM code. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3548    </member>
3549    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofCcws.NextValue">
3550      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3551      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3552    </member>
3553    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling">
3554      <summary>This counter displays the total number of times arguments and return values have been marshaled from managed to unmanaged code and vice versa since the start of the application. This counter is not incremented if the stubs are inlined. (Stubs are responsible for marshalling arguments and return values). Stubs usually get inlined if the marshalling overhead is small. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3555    </member>
3556    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.Nbofmarshalling.NextValue">
3557      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3558      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3559    </member>
3560    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs">
3561      <summary>This counter displays the current number of stubs created by the CLR. Stubs are responsible for marshalling arguments and return values from managed to unmanaged code and vice versa; during a COM Interop call or PInvoke call. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3562    </member>
3563    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofStubs.NextValue">
3564      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3565      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3566    </member>
3567    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec">
3568      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3569    </member>
3570    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbexportssec.NextValue">
3571      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3572      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3573    </member>
3574    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec">
3575      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3576    </member>
3577    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrInterop.NbofTlbimportssec.NextValue">
3578      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3579      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3580    </member>
3581    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit">
3582      <summary>Stats for CLR Jit. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3583    </member>
3584    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec">
3585      <summary>This counter displays the rate at which IL bytes are jitted per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3586    </member>
3587    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.IlBytesJittedsec.NextValue">
3588      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3589      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3590    </member>
3591    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted">
3592      <summary>This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "Total # of IL Bytes Jitted" counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3593    </member>
3594    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofIlBytesJitted.NextValue">
3595      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3596      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3597    </member>
3598    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted">
3599      <summary>This counter displays the total number of methods compiled Just-In-Time (JIT) by the CLR JIT compiler since the start of the application. This counter does not include the pre-jitted methods. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3600    </member>
3601    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NbofMethodsJitted.NextValue">
3602      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3603      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3604    </member>
3605    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed">
3606      <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3607    </member>
3608    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.NotDisplayed.NextValue">
3609      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3610      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3611    </member>
3612    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures">
3613      <summary>This counter displays the peak number of methods the JIT compiler has failed to JIT since the start of the application. This failure can occur if the IL cannot be verified or if there was an internal error in the JIT compiler. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3614    </member>
3615    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.StandardJitFailures.NextValue">
3616      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3617      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3618    </member>
3619    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit">
3620      <summary>This counter displays the percentage of elapsed time spent in JIT compilation since the last JIT compilation phase. This counter is updated at the end of every JIT compilation phase. A JIT compilation phase is the phase when a method and its dependencies are being compiled. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3621    </member>
3622    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TimeinJit.NextValue">
3623      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3624      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3625    </member>
3626    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted">
3627      <summary>This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "# of IL Bytes Jitted" counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3628    </member>
3629    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrJit.TotalNbofIlBytesJitted.NextValue">
3630      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3631      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3632    </member>
3633    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading">
3634      <summary>Statistics for CLR Class Loader. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3635    </member>
3636    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength">
3637      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3638    </member>
3639    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.AssemblySearchLength.NextValue">
3640      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3641      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3642    </member>
3643    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap">
3644      <summary>This counter displays the current size (in bytes) of the memory committed by the class loader across all AppDomains. (Committed memory is the physical memory for which space has been reserved on the disk paging file.) This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3645    </member>
3646    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.BytesinLoaderHeap.NextValue">
3647      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3648      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3649    </member>
3650    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains">
3651      <summary>This counter displays the current number of AppDomains loaded in this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3652    </member>
3653    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Currentappdomains.NextValue">
3654      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3655      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3656    </member>
3657    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies">
3658      <summary>This counter displays the current number of Assemblies loaded across all AppDomains in this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3659    </member>
3660    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentAssemblies.NextValue">
3661      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3662      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3663    </member>
3664    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded">
3665      <summary>This counter displays the current number of classes loaded in all Assemblies. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3666    </member>
3667    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.CurrentClassesLoaded.NextValue">
3668      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3669      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3670    </member>
3671    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains">
3672      <summary>This counter displays the number of AppDomains loaded per second. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3673    </member>
3674    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomains.NextValue">
3675      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3676      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3677    </member>
3678    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded">
3679      <summary>This counter displays the number of AppDomains unloaded per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3680    </member>
3681    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Rateofappdomainsunloaded.NextValue">
3682      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3683      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3684    </member>
3685    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies">
3686      <summary>This counter displays the number of Assemblies loaded across all AppDomains per second. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3687    </member>
3688    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofAssemblies.NextValue">
3689      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3690      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3691    </member>
3692    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded">
3693      <summary>This counter displays the number of classes loaded per second in all Assemblies. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3694    </member>
3695    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofClassesLoaded.NextValue">
3696      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3697      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3698    </member>
3699    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures">
3700      <summary>This counter displays the number of classes that failed to load per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3701    </member>
3702    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.RateofLoadFailures.NextValue">
3703      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3704      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3705    </member>
3706    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading">
3707      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3708    </member>
3709    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TimeLoading.NextValue">
3710      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3711      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3712    </member>
3713    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains">
3714      <summary>This counter displays the peak number of AppDomains loaded since the start of this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3715    </member>
3716    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAppdomains.NextValue">
3717      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3718      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3719    </member>
3720    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded">
3721      <summary>This counter displays the total number of AppDomains unloaded since the start of the application. If an AppDomain is loaded and unloaded multiple times this counter would count each of those unloads as separate. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3722    </member>
3723    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.Totalappdomainsunloaded.NextValue">
3724      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3725      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3726    </member>
3727    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies">
3728      <summary>This counter displays the total number of Assemblies loaded since the start of this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3729    </member>
3730    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalAssemblies.NextValue">
3731      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3732      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3733    </member>
3734    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded">
3735      <summary>This counter displays the cumulative number of classes loaded in all Assemblies since the start of this application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3736    </member>
3737    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalClassesLoaded.NextValue">
3738      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3739      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3740    </member>
3741    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures">
3742      <summary>This counter displays the peak number of classes that have failed to load since the start of the application. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3743    </member>
3744    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLoading.TotalNbofLoadFailures.NextValue">
3745      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3746      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3747    </member>
3748    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads">
3749      <summary>Stats for CLR Locks and Threads. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3750    </member>
3751    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec">
3752      <summary>Rate at which threads in the runtime attempt to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3753    </member>
3754    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.ContentionRatesec.NextValue">
3755      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3756      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3757    </member>
3758    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength">
3759      <summary>This counter displays the total number of threads currently waiting to acquire some managed lock in the application. This counter is not an average over time; it displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3760    </member>
3761    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.CurrentQueueLength.NextValue">
3762      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3763      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3764    </member>
3765    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads">
3766      <summary>This counter displays the number of current .NET thread objects in the application. A .NET thread object is created either by new System.Threading.Thread or when an unmanaged thread enters the managed environment. This counters maintains the count of both running and stopped threads. This counter is not an average over time; it just displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3767    </member>
3768    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentlogicalThreads.NextValue">
3769      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3770      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3771    </member>
3772    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads">
3773      <summary>This counter displays the number of native OS threads created and owned by the CLR to act as underlying threads for .NET thread objects. This counters value does not include the threads used by the CLR in its internal operations; it is a subset of the threads in the OS process. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3774    </member>
3775    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.NbofcurrentphysicalThreads.NextValue">
3776      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3777      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3778    </member>
3779    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads">
3780      <summary>This counter displays the number of threads that are currently recognized by the CLR; they have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3781    </member>
3782    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nbofcurrentrecognizedthreads.NextValue">
3783      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3784      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3785    </member>
3786    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads">
3787      <summary>This counter displays the total number of threads that have been recognized by the CLR since the start of this application; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3788    </member>
3789    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.Nboftotalrecognizedthreads.NextValue">
3790      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3791      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3792    </member>
3793    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak">
3794      <summary>This counter displays the total number of threads that waited to acquire some managed lock since the start of the application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3795    </member>
3796    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthPeak.NextValue">
3797      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3798      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3799    </member>
3800    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec">
3801      <summary>This counter displays the number of threads per second waiting to acquire some lock in the application. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3802    </member>
3803    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.QueueLengthsec.NextValue">
3804      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3805      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3806    </member>
3807    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec">
3808      <summary>This counter displays the number of threads per second that have been recognized by the CLR; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3809    </member>
3810    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.rateofrecognizedthreadssec.NextValue">
3811      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3812      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3813    </member>
3814    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions">
3815      <summary>This counter displays the total number of times threads in the CLR have attempted to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3816    </member>
3817    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrLocksAndThreads.TotalNbofContentions.NextValue">
3818      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3819      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3820    </member>
3821    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory">
3822      <summary>Counters for CLR Garbage Collected heap. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3823    </member>
3824    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec">
3825      <summary>This counter displays the rate of bytes per second allocated on the GC Heap. This counter is updated at the end of every GC; not at each allocation. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3826    </member>
3827    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.AllocatedBytessec.NextValue">
3828      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3829      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3830    </member>
3831    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors">
3832      <summary>This counter displays the number of garbage collected objects that survive a collection because they are waiting to be finalized. If these objects hold references to other objects then those objects also survive but are not counted by this counter; the "Promoted Finalization-Memory from Gen 0" and "Promoted Finalization-Memory from Gen 1" counters represent all the memory that survived due to finalization. This counter is not a cumulative counter; its updated at the end of every GC with count of the survivors during that particular GC only. This counter was designed to indicate the extra overhead that the application might incur because of finalization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3833    </member>
3834    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.FinalizationSurvivors.NextValue">
3835      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3836      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3837    </member>
3838    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize">
3839      <summary>This counter displays the maximum bytes that can be allocated in generation 0 (Gen 0); its does not indicate the current number of bytes allocated in Gen 0. A Gen 0 GC is triggered when the allocations since the last GC exceed this size. The Gen 0 size is tuned by the Garbage Collector and can change during the execution of the application. At the end of a Gen 0 collection the size of the Gen 0 heap is infact 0 bytes; this counter displays the size (in bytes) of allocations that would trigger the next Gen 0 GC. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3840    </member>
3841    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0heapsize.NextValue">
3842      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3843      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3844    </member>
3845    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec">
3846      <summary>This counter displays the bytes per second that are promoted from generation 0 (youngest) to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. This counter was designed as an indicator of relatively long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3847    </member>
3848    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen0PromotedBytesSec.NextValue">
3849      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3850      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3851    </member>
3852    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize">
3853      <summary>This counter displays the current number of bytes in generation 1 (Gen 1); this counter does not display the maximum size of Gen 1. Objects are not directly allocated in this generation; they are promoted from previous Gen 0 GCs. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3854    </member>
3855    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1heapsize.NextValue">
3856      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3857      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3858    </member>
3859    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec">
3860      <summary>This counter displays the bytes per second that are promoted from generation 1 to generation 2 (oldest); objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. Nothing is promoted from generation 2 since it is the oldest. This counter was designed as an indicator of very long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3861    </member>
3862    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen1PromotedBytesSec.NextValue">
3863      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3864      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3865    </member>
3866    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize">
3867      <summary>This counter displays the current number of bytes in generation 2 (Gen 2). Objects are not directly allocated in this generation; they are promoted from Gen 1 during previous Gen 1 GCs. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3868    </member>
3869    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.Gen2heapsize.NextValue">
3870      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3871      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3872    </member>
3873    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize">
3874      <summary>This counter displays the current size of the Large Object Heap in bytes. Objects greater than 20 KBytes are treated as large objects by the Garbage Collector and are directly allocated in a special heap; they are not promoted through the generations. This counter is updated at the end of a GC; its not updated on every allocation. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3875    </member>
3876    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.LargeObjectHeapsize.NextValue">
3877      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3878      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3879    </member>
3880    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps">
3881      <summary>This counter is the sum of four other counters; Gen 0 Heap Size; Gen 1 Heap Size; Gen 2 Heap Size and the Large Object Heap Size. This counter indicates the current memory allocated in bytes on the GC Heaps. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3882    </member>
3883    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbBytesinallHeaps.NextValue">
3884      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3885      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3886    </member>
3887    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles">
3888      <summary>This counter displays the current number of GC Handles in use. GCHandles are handles to resources external to the CLR and the managed environment. Handles occupy small amounts of memory in the GCHeap but potentially expensive unmanaged resources. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3889    </member>
3890    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGcHandles.NextValue">
3891      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3892      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3893    </member>
3894    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections">
3895      <summary>This counter displays the number of times the generation 0 objects (youngest; most recently allocated) are garbage collected (Gen 0 GC) since the start of the application. Gen 0 GC occurs when the available memory in generation 0 is not sufficient to satisfy an allocation request. This counter is incremented at the end of a Gen 0 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 1 or Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3896    </member>
3897    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen0Collections.NextValue">
3898      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3899      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3900    </member>
3901    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections">
3902      <summary>This counter displays the number of times the generation 1 objects are garbage collected since the start of the application. The counter is incremented at the end of a Gen 1 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3903    </member>
3904    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen1Collections.NextValue">
3905      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3906      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3907    </member>
3908    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections">
3909      <summary>This counter displays the number of times the generation 2 objects (older) are garbage collected since the start of the application. The counter is incremented at the end of a Gen 2 GC (also called full GC). _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3910    </member>
3911    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbGen2Collections.NextValue">
3912      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3913      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3914    </member>
3915    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc">
3916      <summary>This counter displays the peak number of times a garbage collection was performed because of an explicit call to GC.Collect. Its a good practice to let the GC tune the frequency of its collections. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3917    </member>
3918    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbInducedGc.NextValue">
3919      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3920      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3921    </member>
3922    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects">
3923      <summary>This counter displays the number of pinned objects encountered in the last GC. This counter tracks the pinned objects only in the heaps that were garbage collected e.g. a Gen 0 GC would cause enumeration of pinned objects in the generation 0 heap only. A pinned object is one that the Garbage Collector cannot move in memory. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3924    </member>
3925    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofPinnedObjects.NextValue">
3926      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3927      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3928    </member>
3929    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse">
3930      <summary>This counter displays the current number of sync blocks in use. Sync blocks are per-object data structures allocated for storing synchronization information. Sync blocks hold weak references to managed objects and need to be scanned by the Garbage Collector. Sync blocks are not limited to storing synchronization information and can also store COM interop metadata. This counter was designed to indicate performance problems with heavy use of synchronization primitives. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3931    </member>
3932    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbofSinkBlocksinuse.NextValue">
3933      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3934      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3935    </member>
3936    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes">
3937      <summary>This counter displays the amount of virtual memory (in bytes) currently committed by the Garbage Collector. (Committed memory is the physical memory for which space has been reserved on the disk paging file). This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3938    </member>
3939    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalcommittedBytes.NextValue">
3940      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3941      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3942    </member>
3943    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes">
3944      <summary>This counter displays the amount of virtual memory (in bytes) currently reserved by the Garbage Collector. (Reserved memory is the virtual memory space reserved for the application but no disk or main memory pages have been used.) This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3945    </member>
3946    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NbTotalreservedBytes.NextValue">
3947      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3948      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3949    </member>
3950    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed">
3951      <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3952    </member>
3953    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.NotDisplayed.NextValue">
3954      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3955      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3956    </member>
3957    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0">
3958      <summary>This counter displays the bytes of memory that are promoted from generation 0 to generation 1 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3959    </member>
3960    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen0.NextValue">
3961      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3962      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3963    </member>
3964    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1">
3965      <summary>This counter displays the bytes of memory that are promoted from generation 1 to generation 2 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3966    </member>
3967    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedFinalizationMemoryfromGen1.NextValue">
3968      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3969      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3970    </member>
3971    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0">
3972      <summary>This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 0 to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3973    </member>
3974    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen0.NextValue">
3975      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3976      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3977    </member>
3978    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1">
3979      <summary>This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 1 to generation 2; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3980    </member>
3981    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.PromotedMemoryfromGen1.NextValue">
3982      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3983      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3984    </member>
3985    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc">
3986      <summary>% Time in GC is the percentage of elapsed time that was spent in performing a garbage collection (GC) since the last GC cycle. This counter is usually an indicator of the work done by the Garbage Collector on behalf of the application to collect and compact memory. This counter is updated only at the end of every GC and the counter value reflects the last observed value; its not an average. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3987    </member>
3988    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrMemory.TimeinGc.NextValue">
3989      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
3990      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
3991    </member>
3992    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking">
3993      <summary>Help not available. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3994    </member>
3995    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived">
3996      <summary>The cumulative total number of bytes received over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3997    </member>
3998    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesReceived.NextValue">
3999      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4000      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4001    </member>
4002    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent">
4003      <summary>The cumulative total number of bytes sent over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4004    </member>
4005    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.BytesSent.NextValue">
4006      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4007      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4008    </member>
4009    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished">
4010      <summary>The cumulative total number of socket connections established for this process since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4011    </member>
4012    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.ConnectionsEstablished.NextValue">
4013      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4014      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4015    </member>
4016    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived">
4017      <summary>The cumulative total number of datagram packets received since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4018    </member>
4019    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsReceived.NextValue">
4020      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4021      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4022    </member>
4023    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent">
4024      <summary>The cumulative total number of datagram packets sent since the process was started. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4025    </member>
4026    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrNetworking.DatagramsSent.NextValue">
4027      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4028      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4029    </member>
4030    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting">
4031      <summary>Stats for CLR Remoting. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4032    </member>
4033    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels">
4034      <summary>This counter displays the total number of remoting channels registered across all AppDomains since the start of the application. Channels are used to transport messages to and from remote objects. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4035    </member>
4036    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Channels.NextValue">
4037      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4038      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4039    </member>
4040    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded">
4041      <summary>This counter displays the current number of context-bound classes loaded. Classes that can be bound to a context are called context-bound classes; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4042    </member>
4043    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundClassesLoaded.NextValue">
4044      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4045      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4046    </member>
4047    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec">
4048      <summary>This counter displays the number of context-bound objects allocated per second. Instances of classes that can be bound to a context are called context-bound objects; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4049    </member>
4050    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextBoundObjectsAllocsec.NextValue">
4051      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4052      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4053    </member>
4054    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies">
4055      <summary>This counter displays the total number of remoting proxy objects created in this process since the start of the process. Proxy object acts as a representative of the remote objects and ensures that all calls made on the proxy are forwarded to the correct remote object instance. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4056    </member>
4057    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.ContextProxies.NextValue">
4058      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4059      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4060    </member>
4061    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts">
4062      <summary>This counter displays the current number of remoting contexts in the application. A context is a boundary containing a collection of objects with the same usage rules like synchronization; thread affinity; transactions etc. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4063    </member>
4064    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.Contexts.NextValue">
4065      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4066      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4067    </member>
4068    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec">
4069      <summary>This counter displays the number of remote procedure calls invoked per second. A remote procedure call is a call on any object outside the caller;s AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4070    </member>
4071    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.RemoteCallssec.NextValue">
4072      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4073      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4074    </member>
4075    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls">
4076      <summary>This counter displays the total number of remote procedure calls invoked since the start of this application. A remote procedure call is a call on any object outside the caller;s AppDomain. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4077    </member>
4078    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrRemoting.TotalRemoteCalls.NextValue">
4079      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4080      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4081    </member>
4082    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity">
4083      <summary>Stats for CLR Security. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4084    </member>
4085    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks">
4086      <summary>This counter displays the total number of linktime Code Access Security (CAS) checks since the start of the application. Linktime CAS checks are performed when a caller makes a call to a callee demanding a particular permission at JIT compile time; linktime check is performed once per caller. This count is not indicative of serious performance issues; its indicative of the security system activity. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4087    </member>
4088    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NbLinkTimeChecks.NextValue">
4089      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4090      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4091    </member>
4092    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed">
4093      <summary>Not Displayed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4094    </member>
4095    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.NotDisplayed.NextValue">
4096      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4097      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4098    </member>
4099    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth">
4100      <summary>This counter displays the depth of the stack during that last runtime Code Access Security check. Runtime Code Access Security check is performed by crawling the stack. This counter is not an average; it just displays the last observed value. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4101    </member>
4102    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.StackWalkDepth.NextValue">
4103      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4104      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4105    </member>
4106    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks">
4107      <summary>This counter displays the percentage of elapsed time spent in performing runtime Code Access Security (CAS) checks since the last such check. CAS allows code to be trusted to varying degrees and enforces these varying levels of trust depending on code identity. This counter is updated at the end of a runtime security check; it represents the last observed value; its not an average. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4108    </member>
4109    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeinRtchecks.NextValue">
4110      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4111      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4112    </member>
4113    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating">
4114      <summary>Reserved for future use. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4115    </member>
4116    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TimeSigAuthenticating.NextValue">
4117      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4118      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4119    </member>
4120    <member name="T:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks">
4121      <summary>This counter displays the total number of runtime Code Access Security (CAS) checks performed since the start of the application. Runtime CAS checks are performed when a caller makes a call to a callee demanding a particular permission; the runtime check is made on every call by the caller; the check is done by examining the current thread stack of the caller. This counter used together with "Stack Walk Depth" is indicative of performance penalty for security checks. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4122    </member>
4123    <member name="M:MbUnit.Framework.PerfCounterInfo.NetClrSecurity.TotalRuntimeChecks.NextValue">
4124      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4125      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> for the current instance.</returns>
4126    </member>
4127    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle">
4128      <summary>Counters for System.Data.OracleClient This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4129    </member>
4130    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond">
4131      <summary>The number of actual connections per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4132    </member>
4133    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardConnectsPerSecond.NextValue">
4134      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4135      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4136    </member>
4137    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond">
4138      <summary>The number of actual disconnects per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4139    </member>
4140    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.HardDisconnectsPerSecond.NextValue">
4141      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4142      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4143    </member>
4144    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups">
4145      <summary>The number of unique connection strings This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4146    </member>
4147    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPoolGroups.NextValue">
4148      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4149      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4150    </member>
4151    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools">
4152      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4153    </member>
4154    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnectionPools.NextValue">
4155      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4156      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4157    </member>
4158    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections">
4159      <summary>The number of connections currently in-use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4160    </member>
4161    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfActiveConnections.NextValue">
4162      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4163      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4164    </member>
4165    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections">
4166      <summary>The number of connections currently available for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4167    </member>
4168    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfFreeConnections.NextValue">
4169      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4170      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4171    </member>
4172    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups">
4173      <summary>The number of unique connection strings waiting for pruning This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4174    </member>
4175    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPoolGroups.NextValue">
4176      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4177      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4178    </member>
4179    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools">
4180      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4181    </member>
4182    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfInactiveConnectionPools.NextValue">
4183      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4184      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4185    </member>
4186    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections">
4187      <summary>The number of connections that are not using connection pooling This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4188    </member>
4189    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfNonPooledConnections.NextValue">
4190      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4191      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4192    </member>
4193    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections">
4194      <summary>The number of connections that are managed by the connection pooler This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4195    </member>
4196    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfPooledConnections.NextValue">
4197      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4198      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4199    </member>
4200    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections">
4201      <summary>The number of connections we reclaim from GCed from external connections This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4202    </member>
4203    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfReclaimedConnections.NextValue">
4204      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4205      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4206    </member>
4207    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections">
4208      <summary>The number of connections currently waiting to be made ready for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4209    </member>
4210    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.NumberOfStasisConnections.NextValue">
4211      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4212      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4213    </member>
4214    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond">
4215      <summary>The number of connections we get from the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4216    </member>
4217    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftConnectsPerSecond.NextValue">
4218      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4219      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4220    </member>
4221    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond">
4222      <summary>The number of connections we return to the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4223    </member>
4224    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforOracle.SoftDisconnectsPerSecond.NextValue">
4225      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4226      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4227    </member>
4228    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer">
4229      <summary>Counters for System.Data.SqlClient This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4230    </member>
4231    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond">
4232      <summary>The number of actual connections per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4233    </member>
4234    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardConnectsPerSecond.NextValue">
4235      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4236      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4237    </member>
4238    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond">
4239      <summary>The number of actual disconnects per second that are being made to servers This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4240    </member>
4241    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.HardDisconnectsPerSecond.NextValue">
4242      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4243      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4244    </member>
4245    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups">
4246      <summary>The number of unique connection strings This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4247    </member>
4248    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPoolGroups.NextValue">
4249      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4250      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4251    </member>
4252    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools">
4253      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4254    </member>
4255    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnectionPools.NextValue">
4256      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4257      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4258    </member>
4259    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections">
4260      <summary>The number of connections currently in-use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4261    </member>
4262    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfActiveConnections.NextValue">
4263      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4264      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4265    </member>
4266    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections">
4267      <summary>The number of connections currently available for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4268    </member>
4269    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfFreeConnections.NextValue">
4270      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4271      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4272    </member>
4273    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups">
4274      <summary>The number of unique connection strings waiting for pruning This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4275    </member>
4276    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPoolGroups.NextValue">
4277      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4278      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4279    </member>
4280    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools">
4281      <summary>The number of connection pools This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4282    </member>
4283    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfInactiveConnectionPools.NextValue">
4284      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4285      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4286    </member>
4287    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections">
4288      <summary>The number of connections that are not using connection pooling This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4289    </member>
4290    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfNonPooledConnections.NextValue">
4291      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4292      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4293    </member>
4294    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections">
4295      <summary>The number of connections that are managed by the connection pooler This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4296    </member>
4297    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfPooledConnections.NextValue">
4298      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4299      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4300    </member>
4301    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections">
4302      <summary>The number of connections we reclaim from GCed from external connections This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4303    </member>
4304    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfReclaimedConnections.NextValue">
4305      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4306      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4307    </member>
4308    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections">
4309      <summary>The number of connections currently waiting to be made ready for use This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4310    </member>
4311    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.NumberOfStasisConnections.NextValue">
4312      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4313      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4314    </member>
4315    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond">
4316      <summary>The number of connections we get from the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4317    </member>
4318    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftConnectsPerSecond.NextValue">
4319      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4320      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4321    </member>
4322    <member name="T:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond">
4323      <summary>The number of connections we return to the pool per second This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4324    </member>
4325    <member name="M:MbUnit.Framework.PerfCounterInfo.NetDataProviderforSqlServer.SoftDisconnectsPerSecond.NextValue">
4326      <summary>Gets the value of the <see cref="T:System.Diagnostics.PerformanceCounter" />.</summary>
4327      <returns>Value returned by <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" />.</returns>
4328    </member>
4329    <member name="T:MbUnit.Framework.ProcessTestFixtureAttribute">
4330      <summary>Process Test Pattern fixture. This class cannot be inherited.</summary>
4331    </member>
4332    <member name="M:MbUnit.Framework.ProcessTestFixtureAttribute.GetRun">
4333      <summary>Creates the execution logic</summary>
4334      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
4335    </member>
4336    <member name="T:MbUnit.Framework.ProviderAttribute">
4337      <summary>Tags method that provide new object to be used in the following tests.</summary>
4338    </member>
4339    <member name="P:MbUnit.Framework.ProviderAttribute.ProviderType">
4340      <summary>Gets or sets the provided type</summary>
4341      <value>Provided type.</value>
4342    </member>
4343    <member name="T:MbUnit.Framework.ReadAttribute">
4344      <summary>Tag use to mark a method that writes data to a device.</summary>
4345    </member>
4346    <member name="T:MbUnit.Framework.ReflectionAssert">
4347      <summary>Reflection Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4348    </member>
4349    <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Type[])">
4350      <summary>Asserts that the type has a public instance constructor with a signature defined by parameters.</summary>
4351    </member>
4352    <member name="M:MbUnit.Framework.ReflectionAssert.HasConstructor(System.Type,System.Reflection.BindingFlags,System.Type[])">
4353      <summary>Asserts that the type has a constructor, with the specified bindind flags, with a signature defined by parameters.</summary>
4354    </member>
4355    <member name="M:MbUnit.Framework.ReflectionAssert.HasDefaultConstructor(System.Type)">
4356      <summary>Asserts that the type has a default public constructor</summary>
4357    </member>
4358    <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.String)">
4359      <summary>Asserts that the type has a public field method with a signature defined by parameters.</summary>
4360    </member>
4361    <member name="M:MbUnit.Framework.ReflectionAssert.HasField(System.Type,System.Reflection.BindingFlags,System.String)">
4362      <summary>Asserts that the type has a field, with the specified bindind flags, with a signature defined by parameters.</summary>
4363    </member>
4364    <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.String,System.Type[])">
4365      <summary>Asserts that the type has a public instance method with a signature defined by parameters.</summary>
4366    </member>
4367    <member name="M:MbUnit.Framework.ReflectionAssert.HasMethod(System.Type,System.Reflection.BindingFlags,System.String,System.Type[])">
4368      <summary>Asserts that the type has a method, with the specified bindind flags, with a signature defined by parameters.</summary>
4369    </member>
4370    <member name="M:MbUnit.Framework.ReflectionAssert.IsAssignableFrom(System.Type,System.Type)">
4371      <summary>Asserts whether an instance of the <paramref name="parent" /> can be assigned from an instance of <paramref name="child" />.</summary>
4372      <param name="parent">Parent <see cref="T:System.Type" /> instance.</param>
4373      <param name="child">Child <see cref="T:System.Type" /> instance.</param>
4374    </member>
4375    <member name="M:MbUnit.Framework.ReflectionAssert.IsInstanceOf(System.Type,System.Object)">
4376      <summary>Asserts whether <paramref name="child" /> is an instance of the <paramref name="type" />.</summary>
4377      <param name="type">
4378        <see cref="T:System.Type" /> instance.</param>
4379      <param name="child">Child instance.</param>
4380    </member>
4381    <member name="T:MbUnit.Framework.RepeatAttribute">
4382      <summary>This tag defines test method that will be repeated the specified number of times. This class cannot be inherited.</summary>
4383    </member>
4384    <member name="T:MbUnit.Framework.RepeatTestAttribute">
4385      <summary>This tag defines test method that will be repeated the specified number of times. This class cannot be inherited.</summary>
4386    </member>
4387    <member name="T:MbUnit.Framework.ResourceXmlDataProviderAttribute">
4388      <summary>A resource-based data provider This class cannot be inherited.</summary>
4389    </member>
4390    <member name="T:MbUnit.Framework.RollBackAttribute">
4391      <summary>Tags methods to execute database operation in its own database transaction. This class cannot be inherited.</summary>
4392    </member>
4393    <member name="T:MbUnit.Framework.RowAttribute">
4394      <summary>Provides a row of values using in conjunction with <see cref="T:MbUnit.Framework.RowTestAttribute" /> to bind values to the parameters of a row test method. This class cannot be inherited.</summary>
4395    </member>
4396    <member name="P:MbUnit.Framework.RowAttribute.ExpectedException">
4397      <summary>Gets or sets the type of exception that is expected to be thrown when this row is tested, or null if none.</summary>
4398    </member>
4399    <member name="M:MbUnit.Framework.RowAttribute.GetRow">
4400      <summary>Gets the row of values.</summary>
4401      <returns>The row of values</returns>
4402    </member>
4403    <member name="M:MbUnit.Framework.RowAttribute.GetRow(System.Reflection.ParameterInfo[])">
4404      <summary>Gets the row of values. Each one will be converted (if posible) to the type of the corresponding argument in the test method.</summary>
4405      <param name="parameters">List of parameters.</param>
4406      <returns>The row of values.</returns>
4407    </member>
4408    <member name="T:MbUnit.Framework.RowTestAttribute">
4409      <summary>Declares a row test when applied to a test method along with one or more <see cref="T:MbUnit.Framework.RowAttribute" /> attributes. This class cannot be inherited.</summary>
4410    </member>
4411    <member name="T:MbUnit.Framework.SecurityAssert">
4412      <summary>Security Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4413    </member>
4414    <member name="M:MbUnit.Framework.SecurityAssert.IsAuthenticated(System.Security.Principal.IIdentity)">
4415      <summary>Asserts that <paramref name="identity" /> is authenticated.</summary>
4416    </member>
4417    <member name="M:MbUnit.Framework.SecurityAssert.IsNotAuthenticated(System.Security.Principal.IIdentity)">
4418      <summary>Asserts that <paramref name="identity" /> is not authenticated.</summary>
4419    </member>
4420    <member name="M:MbUnit.Framework.SecurityAssert.WindowIsAuthenticated">
4421      <summary>Asserts that the current windows identity is authenticated.</summary>
4422    </member>
4423    <member name="M:MbUnit.Framework.SecurityAssert.WindowIsNotAuthenticated">
4424      <summary>Asserts that the current windows identity is not authenticated.</summary>
4425    </member>
4426    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInAdministrator">
4427      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.Administrator" /> role.</summary>
4428    </member>
4429    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInGuest">
4430      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.Guest" /> role.</summary>
4431    </member>
4432    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInPowerUser">
4433      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.PowerUser" /> role.</summary>
4434    </member>
4435    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInRole(System.Security.Principal.WindowsBuiltInRole)">
4436      <summary>Asserts that the current windows identity is in <param name="role" />.</summary>
4437    </member>
4438    <member name="M:MbUnit.Framework.SecurityAssert.WindowsIsInUser">
4439      <summary>Asserts that the current windows identity is in <see cref="F:System.Security.Principal.WindowsBuiltInRole.User" /> role.</summary>
4440    </member>
4441    <member name="M:MbUnit.Framework.SerialAssert.IsXmlSerializable(System.Type)">
4442      <summary>Verifies that the type is serializable with the XmlSerializer object.</summary>
4443      <param name="t">type to test.</param>
4444    </member>
4445    <member name="M:MbUnit.Framework.SerialAssert.TwoWaySerialization(System.Object)">
4446      <summary>Serializes and deserialies to/from XML and checks that the results are the same.</summary>
4447      <param name="o">Object to test</param>
4448    </member>
4449    <member name="T:MbUnit.Framework.SetUpAttribute">
4450      <summary>Tag use to mark a method that initiliazes the fixture instance.</summary>
4451    </member>
4452    <member name="T:MbUnit.Framework.StringAssert">
4453      <summary>String Assertion class This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4454    </member>
4455    <member name="M:MbUnit.Framework.StringAssert.AreEqualIgnoreCase(System.String,System.String)">
4456      <summary>Asserts that two strings are equal, ignoring the case</summary>
4457      <param name="s1">Expected string</param>
4458      <param name="s2">Actual string</param>
4459    </member>
4460    <member name="M:MbUnit.Framework.StringAssert.DoesNotContain(System.String,System.Char[])">
4461      <summary>Asserts the string does not contain c</summary>
4462      <param name="s">String to test.</param>
4463      <param name="anyOf">Variable list of characeters.</param>
4464    </member>
4465    <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.String)">
4466      <summary>Asserts the regular expression reg makes a full match on s</summary>
4467      <param name="s">String to test.</param>
4468      <param name="reg">Regular expression</param>
4469    </member>
4470    <member name="M:MbUnit.Framework.StringAssert.FullMatch(System.String,System.Text.RegularExpressions.Regex)">
4471      <summary>Asserts the regular expression regex makes a full match on <paramref name="s" />.</summary>
4472      <param name="s">String to test.</param>
4473      <param name="regex">Regular expression</param>
4474    </member>
4475    <member name="M:MbUnit.Framework.StringAssert.IsEmpty(System.String)">
4476      <summary>Asserts that the string is non null and empty</summary>
4477      <param name="s">String to test.</param>
4478    </member>
4479    <member name="M:MbUnit.Framework.StringAssert.IsNonEmpty(System.String)">
4480      <summary>Asserts that the string is non null and non empty</summary>
4481      <param name="s">String to test.</param>
4482    </member>
4483    <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.String)">
4484      <summary>Asserts the regular expression reg makes a match on s</summary>
4485      <param name="s">String to test.</param>
4486      <param name="reg">Regular expression</param>
4487    </member>
4488    <member name="M:MbUnit.Framework.StringAssert.Like(System.String,System.Text.RegularExpressions.Regex)">
4489      <summary>Asserts the regular expression regex makes a match on s</summary>
4490      <param name="s">String to test.</param>
4491      <param name="regex">A <see cref="T:System.Text.RegularExpressions.Regex" /> instance.</param>
4492    </member>
4493    <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.String)">
4494      <summary>Asserts the regular expression reg makes a match on s</summary>
4495      <param name="s">String to test.</param>
4496      <param name="reg">Regular expression</param>
4497    </member>
4498    <member name="M:MbUnit.Framework.StringAssert.NotLike(System.String,System.Text.RegularExpressions.Regex)">
4499      <summary>Asserts the regular expression regex makes a match on s</summary>
4500      <param name="s">String to test.</param>
4501      <param name="regex">A <see cref="T:System.Text.RegularExpressions.Regex" /> instance.</param>
4502    </member>
4503    <member name="T:MbUnit.Framework.TearDownAttribute">
4504      <summary>Tag use to mark a method that cleans up the resource of the fixture instance.</summary>
4505    </member>
4506    <member name="T:MbUnit.Framework.TestAttribute">
4507      <summary>Tag use to mark a mark a unit test method. This class cannot be inherited.</summary>
4508    </member>
4509    <member name="T:MbUnit.Framework.TestCase">
4510      <summary>A single test case of a <see cref="T:MbUnit.Framework.TestSuite" />.</summary>
4511    </member>
4512    <member name="P:MbUnit.Framework.TestCase.Name">
4513      <summary>Gets the name of the test case</summary>
4514      <value>The name of the test case</value>
4515    </member>
4516    <member name="M:MbUnit.Framework.TestCase.Invoke(System.Object,System.Collections.IList)">
4517      <summary>Invokes test using the parameters returned by <see cref="M:MbUnit.Framework.TestCase.GetParameters" />.</summary>
4518    </member>
4519    <member name="T:MbUnit.Framework.TestFixtureAttribute">
4520      <summary>Simple Test Pattern fixture. This class cannot be inherited.</summary>
4521    </member>
4522    <member name="M:MbUnit.Framework.TestFixtureAttribute.GetRun">
4523      <summary>Creates the execution logic</summary>
4524      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
4525    </member>
4526    <member name="T:MbUnit.Framework.TestFixtureExtensionAttribute">
4527      <summary>Contributes additional tests and setup or teardown steps to the lifecycle defined by <see cref="T:MbUnit.Framework.TestFixtureAttribute" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4528    </member>
4529    <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddAfterTearDownRuns(MbUnit.Core.Collections.RunCollection)">
4530      <summary>Called to add runs to perform after teardown.</summary>
4531      <param name="runs">The collection to update</param>
4532    </member>
4533    <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddBeforeSetupRuns(MbUnit.Core.Collections.RunCollection)">
4534      <summary>Called to add runs to perform before setup.</summary>
4535      <param name="runs">The collection to update</param>
4536    </member>
4537    <member name="M:MbUnit.Framework.TestFixtureExtensionAttribute.AddTestRuns(MbUnit.Core.Collections.RunCollection)">
4538      <summary>Called to add runs to perform during the test execution cycle.</summary>
4539      <param name="runs">The collection to update</param>
4540    </member>
4541    <member name="T:MbUnit.Framework.TestSequenceAttribute">
4542      <summary>Creates an order of execution in the fixture. This class cannot be inherited.</summary>
4543    </member>
4544    <member name="P:MbUnit.Framework.TestSequenceAttribute.Order">
4545      <summary>Gets or sets the order execution</summary>
4546      <value>The order of execution</value>
4547    </member>
4548    <member name="M:MbUnit.Framework.TestSequenceAttribute.ToString">
4549      <summary>Returns a string that represents the instance.</summary>
4550      <returns>String representing the object.</returns>
4551    </member>
4552    <member name="T:MbUnit.Framework.TestSuite">
4553      <summary>A named collection of uniquely named <see cref="T:MbUnit.Framework.TestCase" />.</summary>
4554    </member>
4555    <member name="P:MbUnit.Framework.TestSuite.Name">
4556      <summary>Gets the <see cref="T:MbUnit.Framework.TestSuite" /> name.</summary>
4557      <value>The <see cref="T:MbUnit.Framework.TestSuite" /> name.</value>
4558    </member>
4559    <member name="P:MbUnit.Framework.TestSuite.TestCases">
4560      <summary>Gets a collection of <see cref="T:MbUnit.Framework.TestCase" />.</summary>
4561      <value>A collection of <see cref="T:MbUnit.Framework.TestCase" />.</value>
4562    </member>
4563    <member name="M:MbUnit.Framework.TestSuite.Add(MbUnit.Framework.ITestCase)">
4564      <summary>Adds the test case to the suite</summary>
4565      <param name="testCase">
4566        <see cref="T:MbUnit.Framework.TestCase" /> instance to add.</param>
4567      <exception cref="T:System.InvalidOperationException"> The suite already contains a test case named <paramref name="name" />. </exception>
4568    </member>
4569    <member name="M:MbUnit.Framework.TestSuite.Add(System.String,System.Delegate,System.Object[])">
4570      <summary>Adds a new <see cref="T:MbUnit.Framework.TestCase" /> to the suite.</summary>
4571      <param name="name">Name of the new test case</param>
4572      <param name="test">
4573        <see cref="T:System.Delegate" /> invoked by the test case</param>
4574      <param name="parameters">parameters sent to <paramref name="test" /> when invoked</param>
4575      <exception cref="T:System.ArgumentNullException">
4576        <paramref name="name" /> is a null reference (Nothing in Visual Basic) </exception>
4577      <exception cref="T:System.ArgumentException">
4578        <paramref name="name" /> is empty. </exception>
4579      <exception cref="T:System.InvalidOperationException"> The suite already contains a test case named <paramref name="name" />. </exception>
4580    </member>
4581    <member name="M:MbUnit.Framework.TestSuite.Remove(MbUnit.Framework.TestCase)">
4582      <summary>Removes the test case from the suite</summary>
4583      <param name="testCase">Test case to remove</param>
4584      <exception cref="T:System.ArgumentNullException">
4585        <paramref name="testCase" /> is a null reference (Nothing in Visual Basic) </exception>
4586    </member>
4587    <member name="T:MbUnit.Framework.TestSuiteFixtureAttribute">
4588      <summary>Test Suite fixture. This class cannot be inherited.</summary>
4589    </member>
4590    <member name="M:MbUnit.Framework.TestSuiteFixtureAttribute.GetRun">
4591      <summary>Creates the execution logic</summary>
4592      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
4593    </member>
4594    <member name="T:MbUnit.Framework.TestSuiteSetUpAttribute">
4595      <summary>Tag used to mark a method that needs to be run before TestSuite generation.</summary>
4596    </member>
4597    <member name="T:MbUnit.Framework.ThreadedRepeatAttribute">
4598      <summary>This tag defines test method that will invoke the method in the specified number of concurrent threads. This class cannot be inherited.</summary>
4599    </member>
4600    <member name="T:MbUnit.Framework.TypeFixtureAttribute">
4601      <summary>Type fixture pattern implementation. This class cannot be inherited.</summary>
4602    </member>
4603    <member name="M:MbUnit.Framework.TypeFixtureAttribute.GetRun">
4604      <summary>Creates the execution logic</summary>
4605      <returns>A <see cref="T:MbUnit.Core.Runs.IRun" /> instance that represent the type test logic.</returns>
4606    </member>
4607    <member name="P:MbUnit.Framework.UsingFactoriesAttribute.MemberNames">
4608      <summary>Gets a list of member names separated by ;</summary>
4609    </member>
4610    <member name="P:MbUnit.Framework.UsingLiteralsAttribute.Values">
4611      <summary>Gets a list of values separated by ;</summary>
4612    </member>
4613    <member name="T:MbUnit.Framework.VerifiedTestCase">
4614      <summary>A <see cref="T:MbUnit.Framework.TestCase" /> with verified result.</summary>
4615    </member>
4616    <member name="T:MbUnit.Framework.WebAssert">
4617      <summary>Web related assertions. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
4618    </member>
4619    <member name="M:MbUnit.Framework.WebAssert.AreClientTargetEqual(System.String,System.Web.UI.Page)">
4620      <summary>Verifies that the <see cref="P:System.Web.UI.Page.ClientTarget" /> property of <paramref name="page" /> is equal to <paramref name="expected" />.</summary>
4621    </member>
4622    <member name="M:MbUnit.Framework.WebAssert.AreErrorPageEqual(System.String,System.Web.UI.Page)">
4623      <summary>Verifies that the <see cref="P:System.Web.UI.Page.ErrorPage" /> property of <paramref name="page" /> is equal to <paramref name="expected" />.</summary>
4624    </member>
4625    <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.Web.UI.Control,System.Web.UI.Control)">
4626      <summary>Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" /> property of <paramref name="expected" /> and <paramref name="actual" /> are equal.</summary>
4627    </member>
4628    <member name="M:MbUnit.Framework.WebAssert.AreTemplateSourceDirectoryEqual(System.String,System.Web.UI.Control)">
4629      <summary>Verifies that the <see cref="P:System.Web.UI.Control.TemplateSourceDirectory" /> property of <paramref name="actual" /> is equal to <paramref name="expected" /> are equal.</summary>
4630    </member>
4631    <member name="M:MbUnit.Framework.WebAssert.HasControls(System.Web.UI.Control)">
4632      <summary>Verifies that <paramref name="ctrl" /> has child controls.</summary>
4633    </member>
4634    <member name="M:MbUnit.Framework.WebAssert.HasNoControls(System.Web.UI.Control)">
4635      <summary>Verifies that <paramref name="ctrl" /> has no child controls.</summary>
4636    </member>
4637    <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.Web.UI.Control)">
4638      <summary>Verifies that <paramref name="child" /> is a child control of <paramref name="parent" /></summary>
4639    </member>
4640    <member name="M:MbUnit.Framework.WebAssert.IsChild(System.Web.UI.Control,System.String)">
4641      <summary>Verifies that <paramref name="childID" /> is the ID of a child control of <paramref name="parent" /></summary>
4642    </member>
4643    <member name="M:MbUnit.Framework.WebAssert.IsEnableViewState(System.Web.UI.Control)">
4644      <summary>Verifies that <paramref name="ctrl" /> has ViewState enabled.</summary>
4645    </member>
4646    <member name="M:MbUnit.Framework.WebAssert.IsIDEqual(System.Web.UI.Control,System.String)">
4647      <summary>Verifies that <paramref name="ctrl" /> ID is equal to <paramref name="id" />.</summary>
4648    </member>
4649    <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.Web.UI.Control)">
4650      <summary>Verifies that <paramref name="child" /> is a not child control of <paramref name="parent" /></summary>
4651    </member>
4652    <member name="M:MbUnit.Framework.WebAssert.IsNotChild(System.Web.UI.Control,System.String)">
4653      <summary>Verifies that <paramref name="childID" /> is the not ID of a child control of <paramref name="parent" /></summary>
4654    </member>
4655    <member name="M:MbUnit.Framework.WebAssert.IsNotEnableViewState(System.Web.UI.Control)">
4656      <summary>Verifies that <paramref name="ctrl" /> has <strong>not</strong> ViewState enabled.</summary>
4657    </member>
4658    <member name="M:MbUnit.Framework.WebAssert.IsNotPostBack(System.Web.UI.Page)">
4659      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack" /> property of <paramref name="page" /> is false.</summary>
4660    </member>
4661    <member name="M:MbUnit.Framework.WebAssert.IsNotSmartNavigation(System.Web.UI.Page)">
4662      <summary>Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation" /> property of <paramref name="page" /> is false.</summary>
4663    </member>
4664    <member name="M:MbUnit.Framework.WebAssert.IsNotValid(System.Web.UI.Page)">
4665      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsValid" /> property of <paramref name="page" /> is false.</summary>
4666    </member>
4667    <member name="M:MbUnit.Framework.WebAssert.IsNotVisible(System.Web.UI.Control)">
4668      <summary>Verifies that <paramref name="ctrl" /> is not visible.</summary>
4669    </member>
4670    <member name="M:MbUnit.Framework.WebAssert.IsPostBack(System.Web.UI.Page)">
4671      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsPostBack" /> property of <paramref name="page" /> is true.</summary>
4672    </member>
4673    <member name="M:MbUnit.Framework.WebAssert.IsSmartNavigation(System.Web.UI.Page)">
4674      <summary>Verifies that the <see cref="P:System.Web.UI.Page.SmartNavigation" /> property of <paramref name="page" /> is true.</summary>
4675    </member>
4676    <member name="M:MbUnit.Framework.WebAssert.IsValid(System.Web.UI.Page)">
4677      <summary>Verifies that the <see cref="P:System.Web.UI.Page.IsValid" /> property of <paramref name="page" /> is true.</summary>
4678    </member>
4679    <member name="M:MbUnit.Framework.WebAssert.IsVisible(System.Web.UI.Control)">
4680      <summary>Verifies that <paramref name="ctrl" /> is visible.</summary>
4681    </member>
4682    <member name="T:MbUnit.Framework.WriteAttribute">
4683      <summary>Tag use to mark a method that writes data to a device.</summary>
4684    </member>
4685    <member name="T:MbUnit.Framework.XmlDataProviderAttribute">
4686      <summary>A file-based data provider</summary>
4687    </member>
4688    <member name="T:MbUnit.Framework.CollectionOrderTest">
4689      <summary>Different collection order</summary>
4690    </member>
4691    <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedAscending">
4692      <summary>Tests ascending order collection</summary>
4693    </member>
4694    <member name="F:MbUnit.Framework.CollectionOrderTest.OrderedDescending">
4695      <summary>Tests ascending order collection</summary>
4696    </member>
4697    <member name="T:MbUnit.Framework.ResourceCleanup">
4698      <summary>Used to specify whether or not the test should delete the extracted resource when the test is complete.</summary>
4699    </member>
4700    <member name="F:MbUnit.Framework.ResourceCleanup.NoCleanup">
4701      <summary>Do not delete the extracted resource</summary>
4702    </member>
4703    <member name="F:MbUnit.Framework.ResourceCleanup.DeleteAfterTest">
4704      <summary>Delete the extracted resource after the test.</summary>
4705    </member>
4706    <member name="F:MbUnit.Framework.SpecialValue.Null">
4707      <summary>When used as parameter in a row test, it will be replaced by null (Nothing in VB).</summary>
4708    </member>
4709    <member name="T:MbUnit.Framework.Exceptions.MissingDbInfoException">
4710      <summary>Could not find <see cref="T:MbUnit.Framework.DbRestoreInfoAttribute" />.</summary>
4711    </member>
4712    <member name="T:MbUnit.Framework.Testers.CollectionIndexingTester">
4713      <summary>Collection indexing test class</summary>
4714    </member>
4715    <member name="T:MbUnit.Framework.Testers.CollectionOrderTester">
4716      <summary>Collection order tester class.</summary>
4717    </member>
4718    <member name="T:MbUnit.Framework.Testers.EnumerationTester">
4719      <summary>Tests for the <seealso cref="T:System.Collections.IEnumerable" /> and <seealso cref="T:System.Collections.IEnumerator" />.</summary>
4720    </member>
4721    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValueExplicitlySpecified" />
4722    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeNameNotFound" />
4723    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeValue">
4724      <summary>Comparing 2 attributes with the same name but different values</summary>
4725    </member>
4726    <member name="F:MbUnit.Framework.Xml.DifferenceType.AttributeSequence">
4727      <summary>Comparing 2 attribute lists with the same attributes in different sequence</summary>
4728    </member>
4729    <member name="F:MbUnit.Framework.Xml.DifferenceType.CDATAValue" />
4730    <member name="F:MbUnit.Framework.Xml.DifferenceType.CommentValue" />
4731    <member name="F:MbUnit.Framework.Xml.DifferenceType.DOCTYPE_NAME_ID" />
4732    <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypePublicID" />
4733    <member name="F:MbUnit.Framework.Xml.DifferenceType.DocTypeSystemID" />
4734    <member name="F:MbUnit.Framework.Xml.DifferenceType.ElementTagName" />
4735    <member name="F:MbUnit.Framework.Xml.DifferenceType.ELEMENT_NUM_ATTRIBUTES_ID" />
4736    <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_TARGET_ID" />
4737    <member name="F:MbUnit.Framework.Xml.DifferenceType.PROCESSING_INSTRUCTION_DATA_ID" />
4738    <member name="F:MbUnit.Framework.Xml.DifferenceType.TEXT_VALUE_ID" />
4739    <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_PREFIX_ID" />
4740    <member name="F:MbUnit.Framework.Xml.DifferenceType.NAMESPACE_URI_ID" />
4741    <member name="F:MbUnit.Framework.Xml.DifferenceType.NODE_TYPE_ID" />
4742    <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_CHILD_NODES_ID" />
4743    <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_LENGTH_ID" />
4744    <member name="F:MbUnit.Framework.Xml.DifferenceType.CHILD_NODELIST_SEQUENCE_ID" />
4745    <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_DOCTYPE_DECLARATION_ID" />
4746    <member name="F:MbUnit.Framework.Xml.DifferenceType.HAS_XML_DECLARATION_PREFIX_ID" />
4747  </members>
4748</doc>