master
    1<?xml version="1.0"?>
    2<doc>
    3    <assembly>
    4        <name>nunit.framework</name>
    5    </assembly>
    6    <members>
    7        <member name="T:NUnit.Framework.Constraints.BinaryConstraint">
    8            <summary>
    9            BinaryConstraint is the abstract base of all constraints
   10            that combine two other constraints in some fashion.
   11            </summary>
   12        </member>
   13        <member name="T:NUnit.Framework.Constraints.Constraint">
   14            <summary>
   15            The Constraint class is the base of all built-in constraints
   16            within NUnit. It provides the operator overloads used to combine 
   17            constraints.
   18            </summary>
   19        </member>
   20        <member name="T:NUnit.Framework.Constraints.IResolveConstraint">
   21            <summary>
   22            The IConstraintExpression interface is implemented by all
   23            complete and resolvable constraints and expressions.
   24            </summary>
   25        </member>
   26        <member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
   27            <summary>
   28            Return the top-level constraint for this expression
   29            </summary>
   30            <returns></returns>
   31        </member>
   32        <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
   33            <summary>
   34            Static UnsetObject used to detect derived constraints
   35            failing to set the actual value.
   36            </summary>
   37        </member>
   38        <member name="F:NUnit.Framework.Constraints.Constraint.actual">
   39            <summary>
   40            The actual value being tested against a constraint
   41            </summary>
   42        </member>
   43        <member name="F:NUnit.Framework.Constraints.Constraint.displayName">
   44            <summary>
   45            The display name of this Constraint for use by ToString()
   46            </summary>
   47        </member>
   48        <member name="F:NUnit.Framework.Constraints.Constraint.argcnt">
   49            <summary>
   50            Argument fields used by ToString();
   51            </summary>
   52        </member>
   53        <member name="F:NUnit.Framework.Constraints.Constraint.builder">
   54            <summary>
   55            The builder holding this constraint
   56            </summary>
   57        </member>
   58        <member name="M:NUnit.Framework.Constraints.Constraint.#ctor">
   59            <summary>
   60            Construct a constraint with no arguments
   61            </summary>
   62        </member>
   63        <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)">
   64            <summary>
   65            Construct a constraint with one argument
   66            </summary>
   67        </member>
   68        <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)">
   69            <summary>
   70            Construct a constraint with two arguments
   71            </summary>
   72        </member>
   73        <member name="M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)">
   74            <summary>
   75            Sets the ConstraintBuilder holding this constraint
   76            </summary>
   77        </member>
   78        <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
   79            <summary>
   80            Write the failure message to the MessageWriter provided
   81            as an argument. The default implementation simply passes
   82            the constraint and the actual value to the writer, which
   83            then displays the constraint description and the value.
   84            
   85            Constraints that need to provide additional details,
   86            such as where the error occured can override this.
   87            </summary>
   88            <param name="writer">The MessageWriter on which to display the message</param>
   89        </member>
   90        <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
   91            <summary>
   92            Test whether the constraint is satisfied by a given value
   93            </summary>
   94            <param name="actual">The value to be tested</param>
   95            <returns>True for success, false for failure</returns>
   96        </member>
   97        <member name="M:NUnit.Framework.Constraints.Constraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
   98            <summary>
   99            Test whether the constraint is satisfied by an
  100            ActualValueDelegate that returns the value to be tested.
  101            The default implementation simply evaluates the delegate
  102            but derived classes may override it to provide for delayed 
  103            processing.
  104            </summary>
  105            <param name="del">An ActualValueDelegate</param>
  106            <returns>True for success, false for failure</returns>
  107        </member>
  108        <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)">
  109            <summary>
  110            Test whether the constraint is satisfied by a given reference.
  111            The default implementation simply dereferences the value but
  112            derived classes may override it to provide for delayed processing.
  113            </summary>
  114            <param name="actual">A reference to the value to be tested</param>
  115            <returns>True for success, false for failure</returns>
  116        </member>
  117        <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  118            <summary>
  119            Write the constraint description to a MessageWriter
  120            </summary>
  121            <param name="writer">The writer on which the description is displayed</param>
  122        </member>
  123        <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  124            <summary>
  125            Write the actual value for a failing constraint test to a
  126            MessageWriter. The default implementation simply writes
  127            the raw value of actual, leaving it to the writer to
  128            perform any formatting.
  129            </summary>
  130            <param name="writer">The writer on which the actual value is displayed</param>
  131        </member>
  132        <member name="M:NUnit.Framework.Constraints.Constraint.ToString">
  133            <summary>
  134            Default override of ToString returns the constraint DisplayName
  135            followed by any arguments within angle brackets.
  136            </summary>
  137            <returns></returns>
  138        </member>
  139        <member name="M:NUnit.Framework.Constraints.Constraint.GetStringRepresentation">
  140            <summary>
  141            Returns the string representation of this constraint
  142            </summary>
  143        </member>
  144        <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  145            <summary>
  146            This operator creates a constraint that is satisfied only if both 
  147            argument constraints are satisfied.
  148            </summary>
  149        </member>
  150        <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  151            <summary>
  152            This operator creates a constraint that is satisfied if either 
  153            of the argument constraints is satisfied.
  154            </summary>
  155        </member>
  156        <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
  157            <summary>
  158            This operator creates a constraint that is satisfied if the 
  159            argument constraint is not satisfied.
  160            </summary>
  161        </member>
  162        <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32)">
  163            <summary>
  164            Returns a DelayedConstraint with the specified delay time.
  165            </summary>
  166            <param name="delayInMilliseconds">The delay in milliseconds.</param>
  167            <returns></returns>
  168        </member>
  169        <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)">
  170            <summary>
  171            Returns a DelayedConstraint with the specified delay time
  172            and polling interval.
  173            </summary>
  174            <param name="delayInMilliseconds">The delay in milliseconds.</param>
  175            <param name="pollingInterval">The interval at which to test the constraint.</param>
  176            <returns></returns>
  177        </member>
  178        <member name="P:NUnit.Framework.Constraints.Constraint.DisplayName">
  179            <summary>
  180            The display name of this Constraint for use by ToString().
  181            The default value is the name of the constraint with
  182            trailing "Constraint" removed. Derived classes may set
  183            this to another name in their constructors.
  184            </summary>
  185        </member>
  186        <member name="P:NUnit.Framework.Constraints.Constraint.And">
  187            <summary>
  188            Returns a ConstraintExpression by appending And
  189            to the current constraint.
  190            </summary>
  191        </member>
  192        <member name="P:NUnit.Framework.Constraints.Constraint.With">
  193            <summary>
  194            Returns a ConstraintExpression by appending And
  195            to the current constraint.
  196            </summary>
  197        </member>
  198        <member name="P:NUnit.Framework.Constraints.Constraint.Or">
  199            <summary>
  200            Returns a ConstraintExpression by appending Or
  201            to the current constraint.
  202            </summary>
  203        </member>
  204        <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
  205            <summary>
  206            Class used to detect any derived constraints
  207            that fail to set the actual value in their
  208            Matches override.
  209            </summary>
  210        </member>
  211        <member name="F:NUnit.Framework.Constraints.BinaryConstraint.left">
  212            <summary>
  213            The first constraint being combined
  214            </summary>
  215        </member>
  216        <member name="F:NUnit.Framework.Constraints.BinaryConstraint.right">
  217            <summary>
  218            The second constraint being combined
  219            </summary>
  220        </member>
  221        <member name="M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  222            <summary>
  223            Construct a BinaryConstraint from two other constraints
  224            </summary>
  225            <param name="left">The first constraint</param>
  226            <param name="right">The second constraint</param>
  227        </member>
  228        <member name="T:NUnit.Framework.Constraints.AndConstraint">
  229            <summary>
  230            AndConstraint succeeds only if both members succeed.
  231            </summary>
  232        </member>
  233        <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  234            <summary>
  235            Create an AndConstraint from two other constraints
  236            </summary>
  237            <param name="left">The first constraint</param>
  238            <param name="right">The second constraint</param>
  239        </member>
  240        <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
  241            <summary>
  242            Apply both member constraints to an actual value, succeeding 
  243            succeeding only if both of them succeed.
  244            </summary>
  245            <param name="actual">The actual value</param>
  246            <returns>True if the constraints both succeeded</returns>
  247        </member>
  248        <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  249            <summary>
  250            Write a description for this contraint to a MessageWriter
  251            </summary>
  252            <param name="writer">The MessageWriter to receive the description</param>
  253        </member>
  254        <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  255            <summary>
  256            Write the actual value for a failing constraint test to a
  257            MessageWriter. The default implementation simply writes
  258            the raw value of actual, leaving it to the writer to
  259            perform any formatting.
  260            </summary>
  261            <param name="writer">The writer on which the actual value is displayed</param>
  262        </member>
  263        <member name="T:NUnit.Framework.Constraints.OrConstraint">
  264            <summary>
  265            OrConstraint succeeds if either member succeeds
  266            </summary>
  267        </member>
  268        <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  269            <summary>
  270            Create an OrConstraint from two other constraints
  271            </summary>
  272            <param name="left">The first constraint</param>
  273            <param name="right">The second constraint</param>
  274        </member>
  275        <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
  276            <summary>
  277            Apply the member constraints to an actual value, succeeding 
  278            succeeding as soon as one of them succeeds.
  279            </summary>
  280            <param name="actual">The actual value</param>
  281            <returns>True if either constraint succeeded</returns>
  282        </member>
  283        <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  284            <summary>
  285            Write a description for this contraint to a MessageWriter
  286            </summary>
  287            <param name="writer">The MessageWriter to receive the description</param>
  288        </member>
  289        <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
  290            <summary>
  291            CollectionConstraint is the abstract base class for
  292            constraints that operate on collections.
  293            </summary>
  294        </member>
  295        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor">
  296            <summary>
  297            Construct an empty CollectionConstraint
  298            </summary>
  299        </member>
  300        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)">
  301            <summary>
  302            Construct a CollectionConstraint
  303            </summary>
  304            <param name="arg"></param>
  305        </member>
  306        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)">
  307            <summary>
  308            Determines whether the specified enumerable is empty.
  309            </summary>
  310            <param name="enumerable">The enumerable.</param>
  311            <returns>
  312            	<c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.
  313            </returns>
  314        </member>
  315        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
  316            <summary>
  317            Test whether the constraint is satisfied by a given value
  318            </summary>
  319            <param name="actual">The value to be tested</param>
  320            <returns>True for success, false for failure</returns>
  321        </member>
  322        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
  323            <summary>
  324            Protected method to be implemented by derived classes
  325            </summary>
  326            <param name="collection"></param>
  327            <returns></returns>
  328        </member>
  329        <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint">
  330            <summary>
  331            CollectionItemsEqualConstraint is the abstract base class for all
  332            collection constraints that apply some notion of item equality
  333            as a part of their operation.
  334            </summary>
  335        </member>
  336        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor">
  337            <summary>
  338            Construct an empty CollectionConstraint
  339            </summary>
  340        </member>
  341        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)">
  342            <summary>
  343            Construct a CollectionConstraint
  344            </summary>
  345            <param name="arg"></param>
  346        </member>
  347        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)">
  348            <summary>
  349            Flag the constraint to use the supplied IComparer object.
  350            </summary>
  351            <param name="comparer">The IComparer object to use.</param>
  352            <returns>Self.</returns>
  353        </member>
  354        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  355            <summary>
  356            Flag the constraint to use the supplied IComparer object.
  357            </summary>
  358            <param name="comparer">The IComparer object to use.</param>
  359            <returns>Self.</returns>
  360        </member>
  361        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})">
  362            <summary>
  363            Flag the constraint to use the supplied Comparison object.
  364            </summary>
  365            <param name="comparer">The IComparer object to use.</param>
  366            <returns>Self.</returns>
  367        </member>
  368        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)">
  369            <summary>
  370            Flag the constraint to use the supplied IEqualityComparer object.
  371            </summary>
  372            <param name="comparer">The IComparer object to use.</param>
  373            <returns>Self.</returns>
  374        </member>
  375        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  376            <summary>
  377            Flag the constraint to use the supplied IEqualityComparer object.
  378            </summary>
  379            <param name="comparer">The IComparer object to use.</param>
  380            <returns>Self.</returns>
  381        </member>
  382        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)">
  383            <summary>
  384            Compares two collection members for equality
  385            </summary>
  386        </member>
  387        <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)">
  388            <summary>
  389            Return a new CollectionTally for use in making tests
  390            </summary>
  391            <param name="c">The collection to be included in the tally</param>
  392        </member>
  393        <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase">
  394            <summary>
  395            Flag the constraint to ignore case and return self.
  396            </summary>
  397        </member>
  398        <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
  399            <summary>
  400            EmptyCollectionConstraint tests whether a collection is empty. 
  401            </summary>
  402        </member>
  403        <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
  404            <summary>
  405            Check that the collection is empty
  406            </summary>
  407            <param name="collection"></param>
  408            <returns></returns>
  409        </member>
  410        <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  411            <summary>
  412            Write the constraint description to a MessageWriter
  413            </summary>
  414            <param name="writer"></param>
  415        </member>
  416        <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
  417            <summary>
  418            UniqueItemsConstraint tests whether all the items in a 
  419            collection are unique.
  420            </summary>
  421        </member>
  422        <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
  423            <summary>
  424            Check that all items are unique.
  425            </summary>
  426            <param name="actual"></param>
  427            <returns></returns>
  428        </member>
  429        <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  430            <summary>
  431            Write a description of this constraint to a MessageWriter
  432            </summary>
  433            <param name="writer"></param>
  434        </member>
  435        <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
  436            <summary>
  437            CollectionContainsConstraint is used to test whether a collection
  438            contains an expected object as a member.
  439            </summary>
  440        </member>
  441        <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
  442            <summary>
  443            Construct a CollectionContainsConstraint
  444            </summary>
  445            <param name="expected"></param>
  446        </member>
  447        <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
  448            <summary>
  449            Test whether the expected item is contained in the collection
  450            </summary>
  451            <param name="actual"></param>
  452            <returns></returns>
  453        </member>
  454        <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  455            <summary>
  456            Write a descripton of the constraint to a MessageWriter
  457            </summary>
  458            <param name="writer"></param>
  459        </member>
  460        <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
  461            <summary>
  462            CollectionEquivalentCOnstraint is used to determine whether two
  463            collections are equivalent.
  464            </summary>
  465        </member>
  466        <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
  467            <summary>
  468            Construct a CollectionEquivalentConstraint
  469            </summary>
  470            <param name="expected"></param>
  471        </member>
  472        <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
  473            <summary>
  474            Test whether two collections are equivalent
  475            </summary>
  476            <param name="actual"></param>
  477            <returns></returns>
  478        </member>
  479        <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  480            <summary>
  481            Write a description of this constraint to a MessageWriter
  482            </summary>
  483            <param name="writer"></param>
  484        </member>
  485        <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
  486            <summary>
  487            CollectionSubsetConstraint is used to determine whether
  488            one collection is a subset of another
  489            </summary>
  490        </member>
  491        <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
  492            <summary>
  493            Construct a CollectionSubsetConstraint
  494            </summary>
  495            <param name="expected">The collection that the actual value is expected to be a subset of</param>
  496        </member>
  497        <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
  498            <summary>
  499            Test whether the actual collection is a subset of 
  500            the expected collection provided.
  501            </summary>
  502            <param name="actual"></param>
  503            <returns></returns>
  504        </member>
  505        <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  506            <summary>
  507            Write a description of this constraint to a MessageWriter
  508            </summary>
  509            <param name="writer"></param>
  510        </member>
  511        <member name="T:NUnit.Framework.Constraints.CollectionOrderedConstraint">
  512            <summary>
  513            CollectionOrderedConstraint is used to test whether a collection is ordered.
  514            </summary>
  515        </member>
  516        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor">
  517            <summary>
  518            Construct a CollectionOrderedConstraint
  519            </summary>
  520        </member>
  521        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)">
  522            <summary>
  523            Modifies the constraint to use an IComparer and returns self.
  524            </summary>
  525        </member>
  526        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  527            <summary>
  528            Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
  529            </summary>
  530        </member>
  531        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})">
  532            <summary>
  533            Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
  534            </summary>
  535        </member>
  536        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)">
  537            <summary>
  538            Modifies the constraint to test ordering by the value of
  539            a specified property and returns self.
  540            </summary>
  541        </member>
  542        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)">
  543            <summary>
  544            Test whether the collection is ordered
  545            </summary>
  546            <param name="actual"></param>
  547            <returns></returns>
  548        </member>
  549        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  550            <summary>
  551            Write a description of the constraint to a MessageWriter
  552            </summary>
  553            <param name="writer"></param>
  554        </member>
  555        <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.GetStringRepresentation">
  556            <summary>
  557            Returns the string representation of the constraint.
  558            </summary>
  559            <returns></returns>
  560        </member>
  561        <member name="P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending">
  562            <summary>
  563             If used performs a reverse comparison
  564            </summary>
  565        </member>
  566        <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
  567            <summary>
  568            Abstract base class for constraints that compare values to
  569            determine if one is greater than, equal to or less than
  570            the other.
  571            </summary>
  572        </member>
  573        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.expected">
  574            <summary>
  575            The value against which a comparison is to be made
  576            </summary>
  577        </member>
  578        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.ltOK">
  579            <summary>
  580            If true, less than returns success
  581            </summary>
  582        </member>
  583        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.eqOK">
  584            <summary>
  585            if true, equal returns success
  586            </summary>
  587        </member>
  588        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.gtOK">
  589            <summary>
  590            if true, greater than returns success
  591            </summary>
  592        </member>
  593        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.predicate">
  594            <summary>
  595            The predicate used as a part of the description
  596            </summary>
  597        </member>
  598        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.comparer">
  599            <summary>
  600            ComparisonAdapter to be used in making the comparison
  601            </summary>
  602        </member>
  603        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Boolean,System.Boolean,System.Boolean,System.String)">
  604            <summary>
  605            Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  606            </summary>
  607            <param name="value">The value against which to make a comparison.</param>
  608            <param name="ltOK">if set to <c>true</c> less succeeds.</param>
  609            <param name="eqOK">if set to <c>true</c> equal succeeds.</param>
  610            <param name="gtOK">if set to <c>true</c> greater succeeds.</param>
  611            <param name="predicate">String used in describing the constraint.</param>
  612        </member>
  613        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Matches(System.Object)">
  614            <summary>
  615            Test whether the constraint is satisfied by a given value
  616            </summary>
  617            <param name="actual">The value to be tested</param>
  618            <returns>True for success, false for failure</returns>
  619        </member>
  620        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  621            <summary>
  622            Write the constraint description to a MessageWriter
  623            </summary>
  624            <param name="writer">The writer on which the description is displayed</param>
  625        </member>
  626        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)">
  627            <summary>
  628            Modifies the constraint to use an IComparer and returns self
  629            </summary>
  630        </member>
  631        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  632            <summary>
  633            Modifies the constraint to use an IComparer&lt;T&gt; and returns self
  634            </summary>
  635        </member>
  636        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})">
  637            <summary>
  638            Modifies the constraint to use a Comparison&lt;T&gt; and returns self
  639            </summary>
  640        </member>
  641        <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
  642            <summary>
  643            Tests whether a value is greater than the value supplied to its constructor
  644            </summary>
  645        </member>
  646        <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)">
  647            <summary>
  648            Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
  649            </summary>
  650            <param name="expected">The expected value.</param>
  651        </member>
  652        <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
  653            <summary>
  654            Tests whether a value is greater than or equal to the value supplied to its constructor
  655            </summary>
  656        </member>
  657        <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)">
  658            <summary>
  659            Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
  660            </summary>
  661            <param name="expected">The expected value.</param>
  662        </member>
  663        <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
  664            <summary>
  665            Tests whether a value is less than the value supplied to its constructor
  666            </summary>
  667        </member>
  668        <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)">
  669            <summary>
  670            Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
  671            </summary>
  672            <param name="expected">The expected value.</param>
  673        </member>
  674        <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
  675            <summary>
  676            Tests whether a value is less than or equal to the value supplied to its constructor
  677            </summary>
  678        </member>
  679        <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)">
  680            <summary>
  681            Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
  682            </summary>
  683            <param name="expected">The expected value.</param>
  684        </member>
  685        <member name="T:NUnit.Framework.Constraints.ActualValueDelegate">
  686            <summary>
  687            Delegate used to delay evaluation of the actual value
  688            to be used in evaluating a constraint
  689            </summary>
  690        </member>
  691        <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
  692            <summary>
  693            ConstraintBuilder maintains the stacks that are used in
  694            processing a ConstraintExpression. An OperatorStack
  695            is used to hold operators that are waiting for their
  696            operands to be reognized. a ConstraintStack holds 
  697            input constraints as well as the results of each
  698            operator applied.
  699            </summary>
  700        </member>
  701        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor">
  702            <summary>
  703            Initializes a new instance of the <see cref="T:ConstraintBuilder"/> class.
  704            </summary>
  705        </member>
  706        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  707            <summary>
  708            Appends the specified operator to the expression by first
  709            reducing the operator stack and then pushing the new
  710            operator on the stack.
  711            </summary>
  712            <param name="op">The operator to push.</param>
  713        </member>
  714        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)">
  715            <summary>
  716            Appends the specified constraint to the expresson by pushing
  717            it on the constraint stack.
  718            </summary>
  719            <param name="constraint">The constraint to push.</param>
  720        </member>
  721        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)">
  722            <summary>
  723            Sets the top operator right context.
  724            </summary>
  725            <param name="rightContext">The right context.</param>
  726        </member>
  727        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)">
  728            <summary>
  729            Reduces the operator stack until the topmost item
  730            precedence is greater than or equal to the target precedence.
  731            </summary>
  732            <param name="targetPrecedence">The target precedence.</param>
  733        </member>
  734        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve">
  735            <summary>
  736            Resolves this instance, returning a Constraint. If the builder
  737            is not currently in a resolvable state, an exception is thrown.
  738            </summary>
  739            <returns>The resolved constraint</returns>
  740        </member>
  741        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable">
  742            <summary>
  743            Gets a value indicating whether this instance is resolvable.
  744            </summary>
  745            <value>
  746            	<c>true</c> if this instance is resolvable; otherwise, <c>false</c>.
  747            </value>
  748        </member>
  749        <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack">
  750            <summary>
  751            OperatorStack is a type-safe stack for holding ConstraintOperators
  752            </summary>
  753        </member>
  754        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  755            <summary>
  756            Initializes a new instance of the <see cref="T:OperatorStack"/> class.
  757            </summary>
  758            <param name="builder">The builder.</param>
  759        </member>
  760        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)">
  761            <summary>
  762            Pushes the specified operator onto the stack.
  763            </summary>
  764            <param name="op">The op.</param>
  765        </member>
  766        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop">
  767            <summary>
  768            Pops the topmost operator from the stack.
  769            </summary>
  770            <returns></returns>
  771        </member>
  772        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty">
  773            <summary>
  774            Gets a value indicating whether this <see cref="T:OpStack"/> is empty.
  775            </summary>
  776            <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  777        </member>
  778        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top">
  779            <summary>
  780            Gets the topmost operator without modifying the stack.
  781            </summary>
  782            <value>The top.</value>
  783        </member>
  784        <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack">
  785            <summary>
  786            ConstraintStack is a type-safe stack for holding Constraints
  787            </summary>
  788        </member>
  789        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  790            <summary>
  791            Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
  792            </summary>
  793            <param name="builder">The builder.</param>
  794        </member>
  795        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)">
  796            <summary>
  797            Pushes the specified constraint. As a side effect,
  798            the constraint's builder field is set to the 
  799            ConstraintBuilder owning this stack.
  800            </summary>
  801            <param name="constraint">The constraint.</param>
  802        </member>
  803        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop">
  804            <summary>
  805            Pops this topmost constrait from the stack.
  806            As a side effect, the constraint's builder
  807            field is set to null.
  808            </summary>
  809            <returns></returns>
  810        </member>
  811        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty">
  812            <summary>
  813            Gets a value indicating whether this <see cref="T:ConstraintStack"/> is empty.
  814            </summary>
  815            <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  816        </member>
  817        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top">
  818            <summary>
  819            Gets the topmost constraint without modifying the stack.
  820            </summary>
  821            <value>The topmost constraint</value>
  822        </member>
  823        <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
  824            <summary>
  825            EmptyConstraint tests a whether a string or collection is empty,
  826            postponing the decision about which test is applied until the
  827            type of the actual argument is known.
  828            </summary>
  829        </member>
  830        <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
  831            <summary>
  832            Test whether the constraint is satisfied by a given value
  833            </summary>
  834            <param name="actual">The value to be tested</param>
  835            <returns>True for success, false for failure</returns>
  836        </member>
  837        <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  838            <summary>
  839            Write the constraint description to a MessageWriter
  840            </summary>
  841            <param name="writer">The writer on which the description is displayed</param>
  842        </member>
  843        <member name="T:NUnit.Framework.Constraints.EqualConstraint">
  844            <summary>
  845            EqualConstraint is able to compare an actual value with the
  846            expected value provided in its constructor. Two objects are 
  847            considered equal if both are null, or if both have the same 
  848            value. NUnit has special semantics for some object types.
  849            </summary>
  850        </member>
  851        <member name="F:NUnit.Framework.Constraints.EqualConstraint.clipStrings">
  852            <summary>
  853            If true, strings in error messages will be clipped
  854            </summary>
  855        </member>
  856        <member name="F:NUnit.Framework.Constraints.EqualConstraint.comparer">
  857            <summary>
  858            NUnitEqualityComparer used to test equality.
  859            </summary>
  860        </member>
  861        <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
  862            <summary>
  863            Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
  864            </summary>
  865            <param name="expected">The expected value.</param>
  866        </member>
  867        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)">
  868            <summary>
  869            Flag the constraint to use a tolerance when determining equality.
  870            </summary>
  871            <param name="amount">Tolerance value to be used</param>
  872            <returns>Self.</returns>
  873        </member>
  874        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)">
  875            <summary>
  876            Flag the constraint to use the supplied IComparer object.
  877            </summary>
  878            <param name="comparer">The IComparer object to use.</param>
  879            <returns>Self.</returns>
  880        </member>
  881        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)">
  882            <summary>
  883            Flag the constraint to use the supplied IComparer object.
  884            </summary>
  885            <param name="comparer">The IComparer object to use.</param>
  886            <returns>Self.</returns>
  887        </member>
  888        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  889            <summary>
  890            Flag the constraint to use the supplied IComparer object.
  891            </summary>
  892            <param name="comparer">The IComparer object to use.</param>
  893            <returns>Self.</returns>
  894        </member>
  895        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})">
  896            <summary>
  897            Flag the constraint to use the supplied Comparison object.
  898            </summary>
  899            <param name="comparer">The IComparer object to use.</param>
  900            <returns>Self.</returns>
  901        </member>
  902        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)">
  903            <summary>
  904            Flag the constraint to use the supplied IEqualityComparer object.
  905            </summary>
  906            <param name="comparer">The IComparer object to use.</param>
  907            <returns>Self.</returns>
  908        </member>
  909        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  910            <summary>
  911            Flag the constraint to use the supplied IEqualityComparer object.
  912            </summary>
  913            <param name="comparer">The IComparer object to use.</param>
  914            <returns>Self.</returns>
  915        </member>
  916        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
  917            <summary>
  918            Test whether the constraint is satisfied by a given value
  919            </summary>
  920            <param name="actual">The value to be tested</param>
  921            <returns>True for success, false for failure</returns>
  922        </member>
  923        <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  924            <summary>
  925            Write a failure message. Overridden to provide custom 
  926            failure messages for EqualConstraint.
  927            </summary>
  928            <param name="writer">The MessageWriter to write to</param>
  929        </member>
  930        <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  931            <summary>
  932            Write description of this constraint
  933            </summary>
  934            <param name="writer">The MessageWriter to write to</param>
  935        </member>
  936        <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  937            <summary>
  938            Display the failure information for two collections that did not match.
  939            </summary>
  940            <param name="writer">The MessageWriter on which to display</param>
  941            <param name="expected">The expected collection.</param>
  942            <param name="actual">The actual collection</param>
  943            <param name="depth">The depth of this failure in a set of nested collections</param>
  944        </member>
  945        <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  946            <summary>
  947            Displays a single line showing the types and sizes of the expected
  948            and actual collections or arrays. If both are identical, the value is 
  949            only shown once.
  950            </summary>
  951            <param name="writer">The MessageWriter on which to display</param>
  952            <param name="expected">The expected collection or array</param>
  953            <param name="actual">The actual collection or array</param>
  954            <param name="indent">The indentation level for the message line</param>
  955        </member>
  956        <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32,System.Int32)">
  957            <summary>
  958            Displays a single line showing the point in the expected and actual
  959            arrays at which the comparison failed. If the arrays have different
  960            structures or dimensions, both values are shown.
  961            </summary>
  962            <param name="writer">The MessageWriter on which to display</param>
  963            <param name="expected">The expected array</param>
  964            <param name="actual">The actual array</param>
  965            <param name="failurePoint">Index of the failure point in the underlying collections</param>
  966            <param name="indent">The indentation level for the message line</param>
  967        </member>
  968        <member name="P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase">
  969            <summary>
  970            Flag the constraint to ignore case and return self.
  971            </summary>
  972        </member>
  973        <member name="P:NUnit.Framework.Constraints.EqualConstraint.NoClip">
  974            <summary>
  975            Flag the constraint to suppress string clipping 
  976            and return self.
  977            </summary>
  978        </member>
  979        <member name="P:NUnit.Framework.Constraints.EqualConstraint.AsCollection">
  980            <summary>
  981            Flag the constraint to compare arrays as collections
  982            and return self.
  983            </summary>
  984        </member>
  985        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ulps">
  986            <summary>
  987            Switches the .Within() modifier to interpret its tolerance as
  988            a distance in representable values (see remarks).
  989            </summary>
  990            <returns>Self.</returns>
  991            <remarks>
  992            Ulp stands for "unit in the last place" and describes the minimum
  993            amount a given value can change. For any integers, an ulp is 1 whole
  994            digit. For floating point values, the accuracy of which is better
  995            for smaller numbers and worse for larger numbers, an ulp depends
  996            on the size of the number. Using ulps for comparison of floating
  997            point results instead of fixed tolerances is safer because it will
  998            automatically compensate for the added inaccuracy of larger numbers.
  999            </remarks>
 1000        </member>
 1001        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Percent">
 1002            <summary>
 1003            Switches the .Within() modifier to interpret its tolerance as
 1004            a percentage that the actual values is allowed to deviate from
 1005            the expected value.
 1006            </summary>
 1007            <returns>Self</returns>
 1008        </member>
 1009        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Days">
 1010            <summary>
 1011            Causes the tolerance to be interpreted as a TimeSpan in days.
 1012            </summary>
 1013            <returns>Self</returns>
 1014        </member>
 1015        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Hours">
 1016            <summary>
 1017            Causes the tolerance to be interpreted as a TimeSpan in hours.
 1018            </summary>
 1019            <returns>Self</returns>
 1020        </member>
 1021        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Minutes">
 1022            <summary>
 1023            Causes the tolerance to be interpreted as a TimeSpan in minutes.
 1024            </summary>
 1025            <returns>Self</returns>
 1026        </member>
 1027        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Seconds">
 1028            <summary>
 1029            Causes the tolerance to be interpreted as a TimeSpan in seconds.
 1030            </summary>
 1031            <returns>Self</returns>
 1032        </member>
 1033        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds">
 1034            <summary>
 1035            Causes the tolerance to be interpreted as a TimeSpan in milliseconds.
 1036            </summary>
 1037            <returns>Self</returns>
 1038        </member>
 1039        <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ticks">
 1040            <summary>
 1041            Causes the tolerance to be interpreted as a TimeSpan in clock ticks.
 1042            </summary>
 1043            <returns>Self</returns>
 1044        </member>
 1045        <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
 1046            <summary>
 1047            SameAsConstraint tests whether an object is identical to
 1048            the object passed to its constructor
 1049            </summary>
 1050        </member>
 1051        <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
 1052            <summary>
 1053            Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
 1054            </summary>
 1055            <param name="expected">The expected object.</param>
 1056        </member>
 1057        <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
 1058            <summary>
 1059            Test whether the constraint is satisfied by a given value
 1060            </summary>
 1061            <param name="actual">The value to be tested</param>
 1062            <returns>True for success, false for failure</returns>
 1063        </member>
 1064        <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1065            <summary>
 1066            Write the constraint description to a MessageWriter
 1067            </summary>
 1068            <param name="writer">The writer on which the description is displayed</param>
 1069        </member>
 1070        <member name="T:NUnit.Framework.Constraints.StringConstraint">
 1071            <summary>
 1072            StringConstraint is the abstract base for constraints
 1073            that operate on strings. It supports the IgnoreCase
 1074            modifier for string operations.
 1075            </summary>
 1076        </member>
 1077        <member name="F:NUnit.Framework.Constraints.StringConstraint.expected">
 1078            <summary>
 1079            The expected value
 1080            </summary>
 1081        </member>
 1082        <member name="F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive">
 1083            <summary>
 1084            Indicates whether tests should be case-insensitive
 1085            </summary>
 1086        </member>
 1087        <member name="M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)">
 1088            <summary>
 1089            Constructs a StringConstraint given an expected value
 1090            </summary>
 1091            <param name="expected">The expected value</param>
 1092        </member>
 1093        <member name="P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase">
 1094            <summary>
 1095            Modify the constraint to ignore case in matching.
 1096            </summary>
 1097        </member>
 1098        <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
 1099            <summary>
 1100            EmptyStringConstraint tests whether a string is empty.
 1101            </summary>
 1102        </member>
 1103        <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
 1104            <summary>
 1105            Test whether the constraint is satisfied by a given value
 1106            </summary>
 1107            <param name="actual">The value to be tested</param>
 1108            <returns>True for success, false for failure</returns>
 1109        </member>
 1110        <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1111            <summary>
 1112            Write the constraint description to a MessageWriter
 1113            </summary>
 1114            <param name="writer">The writer on which the description is displayed</param>
 1115        </member>
 1116        <member name="T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint">
 1117            <summary>
 1118            NullEmptyStringConstraint tests whether a string is either null or empty.
 1119            </summary>
 1120        </member>
 1121        <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor">
 1122            <summary>
 1123            Constructs a new NullOrEmptyStringConstraint
 1124            </summary>
 1125        </member>
 1126        <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)">
 1127            <summary>
 1128            Test whether the constraint is satisfied by a given value
 1129            </summary>
 1130            <param name="actual">The value to be tested</param>
 1131            <returns>True for success, false for failure</returns>
 1132        </member>
 1133        <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1134            <summary>
 1135            Write the constraint description to a MessageWriter
 1136            </summary>
 1137            <param name="writer">The writer on which the description is displayed</param>
 1138        </member>
 1139        <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
 1140            <summary>
 1141            SubstringConstraint can test whether a string contains
 1142            the expected substring.
 1143            </summary>
 1144        </member>
 1145        <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
 1146            <summary>
 1147            Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
 1148            </summary>
 1149            <param name="expected">The expected.</param>
 1150        </member>
 1151        <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)">
 1152            <summary>
 1153            Test whether the constraint is satisfied by a given value
 1154            </summary>
 1155            <param name="actual">The value to be tested</param>
 1156            <returns>True for success, false for failure</returns>
 1157        </member>
 1158        <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1159            <summary>
 1160            Write the constraint description to a MessageWriter
 1161            </summary>
 1162            <param name="writer">The writer on which the description is displayed</param>
 1163        </member>
 1164        <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
 1165            <summary>
 1166            StartsWithConstraint can test whether a string starts
 1167            with an expected substring.
 1168            </summary>
 1169        </member>
 1170        <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
 1171            <summary>
 1172            Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
 1173            </summary>
 1174            <param name="expected">The expected string</param>
 1175        </member>
 1176        <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)">
 1177            <summary>
 1178            Test whether the constraint is matched by the actual value.
 1179            This is a template method, which calls the IsMatch method
 1180            of the derived class.
 1181            </summary>
 1182            <param name="actual"></param>
 1183            <returns></returns>
 1184        </member>
 1185        <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1186            <summary>
 1187            Write the constraint description to a MessageWriter
 1188            </summary>
 1189            <param name="writer">The writer on which the description is displayed</param>
 1190        </member>
 1191        <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
 1192            <summary>
 1193            EndsWithConstraint can test whether a string ends
 1194            with an expected substring.
 1195            </summary>
 1196        </member>
 1197        <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
 1198            <summary>
 1199            Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
 1200            </summary>
 1201            <param name="expected">The expected string</param>
 1202        </member>
 1203        <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)">
 1204            <summary>
 1205            Test whether the constraint is matched by the actual value.
 1206            This is a template method, which calls the IsMatch method
 1207            of the derived class.
 1208            </summary>
 1209            <param name="actual"></param>
 1210            <returns></returns>
 1211        </member>
 1212        <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1213            <summary>
 1214            Write the constraint description to a MessageWriter
 1215            </summary>
 1216            <param name="writer">The writer on which the description is displayed</param>
 1217        </member>
 1218        <member name="T:NUnit.Framework.Constraints.RegexConstraint">
 1219            <summary>
 1220            RegexConstraint can test whether a string matches
 1221            the pattern provided.
 1222            </summary>
 1223        </member>
 1224        <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
 1225            <summary>
 1226            Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
 1227            </summary>
 1228            <param name="pattern">The pattern.</param>
 1229        </member>
 1230        <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)">
 1231            <summary>
 1232            Test whether the constraint is satisfied by a given value
 1233            </summary>
 1234            <param name="actual">The value to be tested</param>
 1235            <returns>True for success, false for failure</returns>
 1236        </member>
 1237        <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1238            <summary>
 1239            Write the constraint description to a MessageWriter
 1240            </summary>
 1241            <param name="writer">The writer on which the description is displayed</param>
 1242        </member>
 1243        <member name="T:NUnit.Framework.Constraints.TypeConstraint">
 1244            <summary>
 1245            TypeConstraint is the abstract base for constraints
 1246            that take a Type as their expected value.
 1247            </summary>
 1248        </member>
 1249        <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
 1250            <summary>
 1251            The expected Type used by the constraint
 1252            </summary>
 1253        </member>
 1254        <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
 1255            <summary>
 1256            Construct a TypeConstraint for a given Type
 1257            </summary>
 1258            <param name="type"></param>
 1259        </member>
 1260        <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 1261            <summary>
 1262            Write the actual value for a failing constraint test to a
 1263            MessageWriter. TypeConstraints override this method to write
 1264            the name of the type.
 1265            </summary>
 1266            <param name="writer">The writer on which the actual value is displayed</param>
 1267        </member>
 1268        <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
 1269            <summary>
 1270            ExactTypeConstraint is used to test that an object
 1271            is of the exact type provided in the constructor
 1272            </summary>
 1273        </member>
 1274        <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
 1275            <summary>
 1276            Construct an ExactTypeConstraint for a given Type
 1277            </summary>
 1278            <param name="type">The expected Type.</param>
 1279        </member>
 1280        <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
 1281            <summary>
 1282            Test that an object is of the exact type specified
 1283            </summary>
 1284            <param name="actual">The actual value.</param>
 1285            <returns>True if the tested object is of the exact type provided, otherwise false.</returns>
 1286        </member>
 1287        <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1288            <summary>
 1289            Write the description of this constraint to a MessageWriter
 1290            </summary>
 1291            <param name="writer">The MessageWriter to use</param>
 1292        </member>
 1293        <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
 1294            <summary>
 1295            InstanceOfTypeConstraint is used to test that an object
 1296            is of the same type provided or derived from it.
 1297            </summary>
 1298        </member>
 1299        <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
 1300            <summary>
 1301            Construct an InstanceOfTypeConstraint for the type provided
 1302            </summary>
 1303            <param name="type">The expected Type</param>
 1304        </member>
 1305        <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
 1306            <summary>
 1307            Test whether an object is of the specified type or a derived type
 1308            </summary>
 1309            <param name="actual">The object to be tested</param>
 1310            <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>
 1311        </member>
 1312        <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1313            <summary>
 1314            Write a description of this constraint to a MessageWriter
 1315            </summary>
 1316            <param name="writer">The MessageWriter to use</param>
 1317        </member>
 1318        <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
 1319            <summary>
 1320            AssignableFromConstraint is used to test that an object
 1321            can be assigned from a given Type.
 1322            </summary>
 1323        </member>
 1324        <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
 1325            <summary>
 1326            Construct an AssignableFromConstraint for the type provided
 1327            </summary>
 1328            <param name="type"></param>
 1329        </member>
 1330        <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
 1331            <summary>
 1332            Test whether an object can be assigned from the specified type
 1333            </summary>
 1334            <param name="actual">The object to be tested</param>
 1335            <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
 1336        </member>
 1337        <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1338            <summary>
 1339            Write a description of this constraint to a MessageWriter
 1340            </summary>
 1341            <param name="writer">The MessageWriter to use</param>
 1342        </member>
 1343        <member name="T:NUnit.Framework.Constraints.AssignableToConstraint">
 1344            <summary>
 1345            AssignableToConstraint is used to test that an object
 1346            can be assigned to a given Type.
 1347            </summary>
 1348        </member>
 1349        <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)">
 1350            <summary>
 1351            Construct an AssignableToConstraint for the type provided
 1352            </summary>
 1353            <param name="type"></param>
 1354        </member>
 1355        <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)">
 1356            <summary>
 1357            Test whether an object can be assigned to the specified type
 1358            </summary>
 1359            <param name="actual">The object to be tested</param>
 1360            <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
 1361        </member>
 1362        <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1363            <summary>
 1364            Write a description of this constraint to a MessageWriter
 1365            </summary>
 1366            <param name="writer">The MessageWriter to use</param>
 1367        </member>
 1368        <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
 1369            <summary>
 1370            ContainsConstraint tests a whether a string contains a substring
 1371            or a collection contains an object. It postpones the decision of
 1372            which test to use until the type of the actual argument is known.
 1373            This allows testing whether a string is contained in a collection
 1374            or as a substring of another string using the same syntax.
 1375            </summary>
 1376        </member>
 1377        <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
 1378            <summary>
 1379            Initializes a new instance of the <see cref="T:ContainsConstraint"/> class.
 1380            </summary>
 1381            <param name="expected">The expected.</param>
 1382        </member>
 1383        <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
 1384            <summary>
 1385            Test whether the constraint is satisfied by a given value
 1386            </summary>
 1387            <param name="actual">The value to be tested</param>
 1388            <returns>True for success, false for failure</returns>
 1389        </member>
 1390        <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1391            <summary>
 1392            Write the constraint description to a MessageWriter
 1393            </summary>
 1394            <param name="writer">The writer on which the description is displayed</param>
 1395        </member>
 1396        <member name="P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase">
 1397            <summary>
 1398            Flag the constraint to ignore case and return self.
 1399            </summary>
 1400        </member>
 1401        <member name="T:NUnit.Framework.Constraints.PropertyExistsConstraint">
 1402            <summary>
 1403            PropertyExistsConstraint tests that a named property
 1404            exists on the object provided through Match.
 1405            
 1406            Originally, PropertyConstraint provided this feature
 1407            in addition to making optional tests on the vaue
 1408            of the property. The two constraints are now separate.
 1409            </summary>
 1410        </member>
 1411        <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)">
 1412            <summary>
 1413            Initializes a new instance of the <see cref="T:PropertyExistConstraint"/> class.
 1414            </summary>
 1415            <param name="name">The name of the property.</param>
 1416        </member>
 1417        <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)">
 1418            <summary>
 1419            Test whether the property exists for a given object
 1420            </summary>
 1421            <param name="actual">The object to be tested</param>
 1422            <returns>True for success, false for failure</returns>
 1423        </member>
 1424        <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1425            <summary>
 1426            Write the constraint description to a MessageWriter
 1427            </summary>
 1428            <param name="writer">The writer on which the description is displayed</param>
 1429        </member>
 1430        <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 1431            <summary>
 1432            Write the actual value for a failing constraint test to a
 1433            MessageWriter.
 1434            </summary>
 1435            <param name="writer">The writer on which the actual value is displayed</param>
 1436        </member>
 1437        <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.GetStringRepresentation">
 1438            <summary>
 1439            Returns the string representation of the constraint.
 1440            </summary>
 1441            <returns></returns>
 1442        </member>
 1443        <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
 1444            <summary>
 1445            PropertyConstraint extracts a named property and uses
 1446            its value as the actual value for a chained constraint.
 1447            </summary>
 1448        </member>
 1449        <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
 1450            <summary>
 1451            Abstract base class used for prefixes
 1452            </summary>
 1453        </member>
 1454        <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
 1455            <summary>
 1456            The base constraint
 1457            </summary>
 1458        </member>
 1459        <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
 1460            <summary>
 1461            Construct given a base constraint
 1462            </summary>
 1463            <param name="resolvable"></param>
 1464        </member>
 1465        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
 1466            <summary>
 1467            Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
 1468            </summary>
 1469            <param name="name">The name.</param>
 1470            <param name="baseConstraint">The constraint to apply to the property.</param>
 1471        </member>
 1472        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
 1473            <summary>
 1474            Test whether the constraint is satisfied by a given value
 1475            </summary>
 1476            <param name="actual">The value to be tested</param>
 1477            <returns>True for success, false for failure</returns>
 1478        </member>
 1479        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1480            <summary>
 1481            Write the constraint description to a MessageWriter
 1482            </summary>
 1483            <param name="writer">The writer on which the description is displayed</param>
 1484        </member>
 1485        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 1486            <summary>
 1487            Write the actual value for a failing constraint test to a
 1488            MessageWriter. The default implementation simply writes
 1489            the raw value of actual, leaving it to the writer to
 1490            perform any formatting.
 1491            </summary>
 1492            <param name="writer">The writer on which the actual value is displayed</param>
 1493        </member>
 1494        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.GetStringRepresentation">
 1495            <summary>
 1496            Returns the string representation of the constraint.
 1497            </summary>
 1498            <returns></returns>
 1499        </member>
 1500        <member name="T:NUnit.Framework.Constraints.NotConstraint">
 1501            <summary>
 1502            NotConstraint negates the effect of some other constraint
 1503            </summary>
 1504        </member>
 1505        <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 1506            <summary>
 1507            Initializes a new instance of the <see cref="T:NotConstraint"/> class.
 1508            </summary>
 1509            <param name="baseConstraint">The base constraint to be negated.</param>
 1510        </member>
 1511        <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
 1512            <summary>
 1513            Test whether the constraint is satisfied by a given value
 1514            </summary>
 1515            <param name="actual">The value to be tested</param>
 1516            <returns>True for if the base constraint fails, false if it succeeds</returns>
 1517        </member>
 1518        <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1519            <summary>
 1520            Write the constraint description to a MessageWriter
 1521            </summary>
 1522            <param name="writer">The writer on which the description is displayed</param>
 1523        </member>
 1524        <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 1525            <summary>
 1526            Write the actual value for a failing constraint test to a MessageWriter.
 1527            </summary>
 1528            <param name="writer">The writer on which the actual value is displayed</param>
 1529        </member>
 1530        <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
 1531            <summary>
 1532            AllItemsConstraint applies another constraint to each
 1533            item in a collection, succeeding if they all succeed.
 1534            </summary>
 1535        </member>
 1536        <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 1537            <summary>
 1538            Construct an AllItemsConstraint on top of an existing constraint
 1539            </summary>
 1540            <param name="itemConstraint"></param>
 1541        </member>
 1542        <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
 1543            <summary>
 1544            Apply the item constraint to each item in the collection,
 1545            failing if any item fails.
 1546            </summary>
 1547            <param name="actual"></param>
 1548            <returns></returns>
 1549        </member>
 1550        <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1551            <summary>
 1552            Write a description of this constraint to a MessageWriter
 1553            </summary>
 1554            <param name="writer"></param>
 1555        </member>
 1556        <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
 1557            <summary>
 1558            SomeItemsConstraint applies another constraint to each
 1559            item in a collection, succeeding if any of them succeeds.
 1560            </summary>
 1561        </member>
 1562        <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 1563            <summary>
 1564            Construct a SomeItemsConstraint on top of an existing constraint
 1565            </summary>
 1566            <param name="itemConstraint"></param>
 1567        </member>
 1568        <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
 1569            <summary>
 1570            Apply the item constraint to each item in the collection,
 1571            succeeding if any item succeeds.
 1572            </summary>
 1573            <param name="actual"></param>
 1574            <returns></returns>
 1575        </member>
 1576        <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1577            <summary>
 1578            Write a description of this constraint to a MessageWriter
 1579            </summary>
 1580            <param name="writer"></param>
 1581        </member>
 1582        <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
 1583            <summary>
 1584            NoItemConstraint applies another constraint to each
 1585            item in a collection, failing if any of them succeeds.
 1586            </summary>
 1587        </member>
 1588        <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 1589            <summary>
 1590            Construct a SomeItemsConstraint on top of an existing constraint
 1591            </summary>
 1592            <param name="itemConstraint"></param>
 1593        </member>
 1594        <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
 1595            <summary>
 1596            Apply the item constraint to each item in the collection,
 1597            failing if any item fails.
 1598            </summary>
 1599            <param name="actual"></param>
 1600            <returns></returns>
 1601        </member>
 1602        <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1603            <summary>
 1604            Write a description of this constraint to a MessageWriter
 1605            </summary>
 1606            <param name="writer"></param>
 1607        </member>
 1608        <member name="T:NUnit.Framework.Constraints.Numerics">
 1609            <summary>
 1610            The Numerics class contains common operations on numeric values.
 1611            </summary>
 1612        </member>
 1613        <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
 1614            <summary>
 1615            Checks the type of the object, returning true if
 1616            the object is a numeric type.
 1617            </summary>
 1618            <param name="obj">The object to check</param>
 1619            <returns>true if the object is a numeric type</returns>
 1620        </member>
 1621        <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
 1622            <summary>
 1623            Checks the type of the object, returning true if
 1624            the object is a floating point numeric type.
 1625            </summary>
 1626            <param name="obj">The object to check</param>
 1627            <returns>true if the object is a floating point numeric type</returns>
 1628        </member>
 1629        <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
 1630            <summary>
 1631            Checks the type of the object, returning true if
 1632            the object is a fixed point numeric type.
 1633            </summary>
 1634            <param name="obj">The object to check</param>
 1635            <returns>true if the object is a fixed point numeric type</returns>
 1636        </member>
 1637        <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
 1638            <summary>
 1639            Test two numeric values for equality, performing the usual numeric 
 1640            conversions and using a provided or default tolerance. If the tolerance 
 1641            provided is Empty, this method may set it to a default tolerance.
 1642            </summary>
 1643            <param name="expected">The expected value</param>
 1644            <param name="actual">The actual value</param>
 1645            <param name="tolerance">A reference to the tolerance in effect</param>
 1646            <returns>True if the values are equal</returns>
 1647        </member>
 1648        <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)">
 1649            <summary>
 1650            Compare two numeric values, performing the usual numeric conversions.
 1651            </summary>
 1652            <param name="expected">The expected value</param>
 1653            <param name="actual">The actual value</param>
 1654            <returns>The relationship of the values to each other</returns>
 1655        </member>
 1656        <member name="T:NUnit.Framework.Constraints.MessageWriter">
 1657            <summary>
 1658            MessageWriter is the abstract base for classes that write
 1659            constraint descriptions and messages in some form. The
 1660            class has separate methods for writing various components
 1661            of a message, allowing implementations to tailor the
 1662            presentation as needed.
 1663            </summary>
 1664        </member>
 1665        <member name="M:NUnit.Framework.Constraints.MessageWriter.#ctor">
 1666            <summary>
 1667            Construct a MessageWriter given a culture
 1668            </summary>
 1669        </member>
 1670        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])">
 1671            <summary>
 1672            Method to write single line  message with optional args, usually
 1673            written to precede the general failure message.
 1674            </summary>
 1675            <param name="message">The message to be written</param>
 1676            <param name="args">Any arguments used in formatting the message</param>
 1677        </member>
 1678        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
 1679            <summary>
 1680            Method to write single line  message with optional args, usually
 1681            written to precede the general failure message, at a givel 
 1682            indentation level.
 1683            </summary>
 1684            <param name="level">The indentation level of the message</param>
 1685            <param name="message">The message to be written</param>
 1686            <param name="args">Any arguments used in formatting the message</param>
 1687        </member>
 1688        <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
 1689            <summary>
 1690            Display Expected and Actual lines for a constraint. This
 1691            is called by MessageWriter's default implementation of 
 1692            WriteMessageTo and provides the generic two-line display. 
 1693            </summary>
 1694            <param name="constraint">The constraint that failed</param>
 1695        </member>
 1696        <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)">
 1697            <summary>
 1698            Display Expected and Actual lines for given values. This
 1699            method may be called by constraints that need more control over
 1700            the display of actual and expected values than is provided
 1701            by the default implementation.
 1702            </summary>
 1703            <param name="expected">The expected value</param>
 1704            <param name="actual">The actual value causing the failure</param>
 1705        </member>
 1706        <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
 1707            <summary>
 1708            Display Expected and Actual lines for given values, including
 1709            a tolerance value on the Expected line.
 1710            </summary>
 1711            <param name="expected">The expected value</param>
 1712            <param name="actual">The actual value causing the failure</param>
 1713            <param name="tolerance">The tolerance within which the test was made</param>
 1714        </member>
 1715        <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
 1716            <summary>
 1717            Display the expected and actual string values on separate lines.
 1718            If the mismatch parameter is >=0, an additional line is displayed
 1719            line containing a caret that points to the mismatch point.
 1720            </summary>
 1721            <param name="expected">The expected string value</param>
 1722            <param name="actual">The actual string value</param>
 1723            <param name="mismatch">The point at which the strings don't match or -1</param>
 1724            <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
 1725            <param name="clipping">If true, the strings should be clipped to fit the line</param>
 1726        </member>
 1727        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)">
 1728            <summary>
 1729            Writes the text for a connector.
 1730            </summary>
 1731            <param name="connector">The connector.</param>
 1732        </member>
 1733        <member name="M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)">
 1734            <summary>
 1735            Writes the text for a predicate.
 1736            </summary>
 1737            <param name="predicate">The predicate.</param>
 1738        </member>
 1739        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)">
 1740            <summary>
 1741            Writes the text for an expected value.
 1742            </summary>
 1743            <param name="expected">The expected value.</param>
 1744        </member>
 1745        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)">
 1746            <summary>
 1747            Writes the text for a modifier
 1748            </summary>
 1749            <param name="modifier">The modifier.</param>
 1750        </member>
 1751        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)">
 1752            <summary>
 1753            Writes the text for an actual value.
 1754            </summary>
 1755            <param name="actual">The actual value.</param>
 1756        </member>
 1757        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)">
 1758            <summary>
 1759            Writes the text for a generalized value.
 1760            </summary>
 1761            <param name="val">The value.</param>
 1762        </member>
 1763        <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
 1764            <summary>
 1765            Writes the text for a collection value,
 1766            starting at a particular point, to a max length
 1767            </summary>
 1768            <param name="collection">The collection containing elements to write.</param>
 1769            <param name="start">The starting point of the elements to write</param>
 1770            <param name="max">The maximum number of elements to write</param>
 1771        </member>
 1772        <member name="P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength">
 1773            <summary>
 1774            Abstract method to get the max line length
 1775            </summary>
 1776        </member>
 1777        <member name="T:NUnit.Framework.Constraints.MsgUtils">
 1778            <summary>
 1779            Static methods used in creating messages
 1780            </summary>
 1781        </member>
 1782        <member name="F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS">
 1783            <summary>
 1784            Static string used when strings are clipped
 1785            </summary>
 1786        </member>
 1787        <member name="M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)">
 1788            <summary>
 1789            Returns the representation of a type as used in NUnitLite.
 1790            This is the same as Type.ToString() except for arrays,
 1791            which are displayed with their declared sizes.
 1792            </summary>
 1793            <param name="obj"></param>
 1794            <returns></returns>
 1795        </member>
 1796        <member name="M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)">
 1797            <summary>
 1798            Converts any control characters in a string 
 1799            to their escaped representation.
 1800            </summary>
 1801            <param name="s">The string to be converted</param>
 1802            <returns>The converted string</returns>
 1803        </member>
 1804        <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
 1805            <summary>
 1806            Return the a string representation for a set of indices into an array
 1807            </summary>
 1808            <param name="indices">Array of indices for which a string is needed</param>
 1809        </member>
 1810        <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
 1811            <summary>
 1812            Get an array of indices representing the point in a collection or
 1813            array corresponding to a single int index into the collection.
 1814            </summary>
 1815            <param name="collection">The collection to which the indices apply</param>
 1816            <param name="index">Index in the collection</param>
 1817            <returns>Array of indices</returns>
 1818        </member>
 1819        <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
 1820            <summary>
 1821            Clip a string to a given length, starting at a particular offset, returning the clipped
 1822            string with ellipses representing the removed parts
 1823            </summary>
 1824            <param name="s">The string to be clipped</param>
 1825            <param name="maxStringLength">The maximum permitted length of the result string</param>
 1826            <param name="clipStart">The point at which to start clipping</param>
 1827            <returns>The clipped string</returns>
 1828        </member>
 1829        <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
 1830            <summary>
 1831            Clip the expected and actual strings in a coordinated fashion, 
 1832            so that they may be displayed together.
 1833            </summary>
 1834            <param name="expected"></param>
 1835            <param name="actual"></param>
 1836            <param name="maxDisplayLength"></param>
 1837            <param name="mismatch"></param>
 1838        </member>
 1839        <member name="M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
 1840            <summary>
 1841            Shows the position two strings start to differ.  Comparison 
 1842            starts at the start index.
 1843            </summary>
 1844            <param name="expected">The expected string</param>
 1845            <param name="actual">The actual string</param>
 1846            <param name="istart">The index in the strings at which comparison should start</param>
 1847            <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
 1848            <returns>-1 if no mismatch found, or the index where mismatch found</returns>
 1849        </member>
 1850        <member name="T:NUnit.Framework.Constraints.PathConstraint">
 1851            <summary>
 1852            PathConstraint serves as the abstract base of constraints
 1853            that operate on paths and provides several helper methods.
 1854            </summary>
 1855        </member>
 1856        <member name="F:NUnit.Framework.Constraints.PathConstraint.expected">
 1857            <summary>
 1858            The expected path used in the constraint
 1859            </summary>
 1860        </member>
 1861        <member name="F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive">
 1862            <summary>
 1863            Flag indicating whether a caseInsensitive comparison should be made
 1864            </summary>
 1865        </member>
 1866        <member name="M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)">
 1867            <summary>
 1868            Construct a PathConstraint for a give expected path
 1869            </summary>
 1870            <param name="expected">The expected path</param>
 1871        </member>
 1872        <member name="M:NUnit.Framework.Constraints.PathConstraint.GetStringRepresentation">
 1873            <summary>
 1874            Returns the string representation of this constraint
 1875            </summary>
 1876        </member>
 1877        <member name="M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)">
 1878            <summary>
 1879            Canonicalize the provided path
 1880            </summary>
 1881            <param name="path"></param>
 1882            <returns>The path in standardized form</returns>
 1883        </member>
 1884        <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSamePath(System.String,System.String)">
 1885            <summary>
 1886            Test whether two paths are the same
 1887            </summary>
 1888            <param name="path1">The first path</param>
 1889            <param name="path2">The second path</param>
 1890            <returns></returns>
 1891        </member>
 1892        <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSamePathOrUnder(System.String,System.String)">
 1893            <summary>
 1894            Test whether one path is the same as or under another path
 1895            </summary>
 1896            <param name="path1">The first path - supposed to be the parent path</param>
 1897            <param name="path2">The second path - supposed to be the child path</param>
 1898            <returns></returns>
 1899        </member>
 1900        <member name="P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase">
 1901            <summary>
 1902            Modifies the current instance to be case-insensitve
 1903            and returns it.
 1904            </summary>
 1905        </member>
 1906        <member name="P:NUnit.Framework.Constraints.PathConstraint.RespectCase">
 1907            <summary>
 1908            Modifies the current instance to be case-sensitve
 1909            and returns it.
 1910            </summary>
 1911        </member>
 1912        <member name="T:NUnit.Framework.Constraints.SamePathConstraint">
 1913            <summary>
 1914            Summary description for SamePathConstraint.
 1915            </summary>
 1916        </member>
 1917        <member name="M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)">
 1918            <summary>
 1919            Initializes a new instance of the <see cref="T:SamePathConstraint"/> class.
 1920            </summary>
 1921            <param name="expected">The expected path</param>
 1922        </member>
 1923        <member name="M:NUnit.Framework.Constraints.SamePathConstraint.Matches(System.Object)">
 1924            <summary>
 1925            Test whether the constraint is satisfied by a given value
 1926            </summary>
 1927            <param name="actual">The value to be tested</param>
 1928            <returns>True for success, false for failure</returns>
 1929        </member>
 1930        <member name="M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1931            <summary>
 1932            Write the constraint description to a MessageWriter
 1933            </summary>
 1934            <param name="writer">The writer on which the description is displayed</param>
 1935        </member>
 1936        <member name="T:NUnit.Framework.Constraints.SamePathOrUnderConstraint">
 1937            <summary>
 1938            SamePathOrUnderConstraint tests that one path is under another
 1939            </summary>
 1940        </member>
 1941        <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)">
 1942            <summary>
 1943            Initializes a new instance of the <see cref="T:SamePathOrUnderConstraint"/> class.
 1944            </summary>
 1945            <param name="expected">The expected path</param>
 1946        </member>
 1947        <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.Matches(System.Object)">
 1948            <summary>
 1949            Test whether the constraint is satisfied by a given value
 1950            </summary>
 1951            <param name="actual">The value to be tested</param>
 1952            <returns>True for success, false for failure</returns>
 1953        </member>
 1954        <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1955            <summary>
 1956            Write the constraint description to a MessageWriter
 1957            </summary>
 1958            <param name="writer">The writer on which the description is displayed</param>
 1959        </member>
 1960        <member name="T:NUnit.Framework.Constraints.EmptyDirectoryContraint">
 1961            <summary>
 1962            EmptyDirectoryConstraint is used to test that a directory is empty
 1963            </summary>
 1964        </member>
 1965        <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.Matches(System.Object)">
 1966            <summary>
 1967            Test whether the constraint is satisfied by a given value
 1968            </summary>
 1969            <param name="actual">The value to be tested</param>
 1970            <returns>True for success, false for failure</returns>
 1971        </member>
 1972        <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 1973            <summary>
 1974            Write the constraint description to a MessageWriter
 1975            </summary>
 1976            <param name="writer">The writer on which the description is displayed</param>
 1977        </member>
 1978        <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 1979            <summary>
 1980            Write the actual value for a failing constraint test to a
 1981            MessageWriter. The default implementation simply writes
 1982            the raw value of actual, leaving it to the writer to
 1983            perform any formatting.
 1984            </summary>
 1985            <param name="writer">The writer on which the actual value is displayed</param>
 1986        </member>
 1987        <member name="T:NUnit.Framework.Constraints.SubDirectoryConstraint">
 1988            <summary>
 1989            SubDirectoryConstraint is used to test that one directory is a subdirectory of another.
 1990            </summary>
 1991        </member>
 1992        <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.#ctor(System.IO.DirectoryInfo)">
 1993            <summary>
 1994            Initializes a new instance of the <see cref="T:SubDirectoryConstraint"/> class.
 1995            </summary>
 1996            <param name="dirInfo">The dir info.</param>
 1997        </member>
 1998        <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.Matches(System.Object)">
 1999            <summary>
 2000            Test whether the constraint is satisfied by a given value
 2001            </summary>
 2002            <param name="actual">The value to be tested</param>
 2003            <returns>True for success, false for failure</returns>
 2004        </member>
 2005        <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 2006            <summary>
 2007            Write the constraint description to a MessageWriter
 2008            </summary>
 2009            <param name="writer">The writer on which the description is displayed</param>
 2010        </member>
 2011        <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.BuildDirectoryList(System.IO.DirectoryInfo)">
 2012            <summary>
 2013            Builds a list of DirectoryInfo objects, recursing where necessary
 2014            </summary>
 2015            <param name="StartingDirectory">directory to recurse</param>
 2016            <returns>list of DirectoryInfo objects from the top level</returns>
 2017        </member>
 2018        <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.IsDirectoryOnPath(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 2019            <summary>
 2020            private method to determine whether a directory is within the path
 2021            </summary>
 2022            <param name="ParentDirectory">top-level directory to search</param>
 2023            <param name="SearchDirectory">directory to search for</param>
 2024            <returns>true if found, false if not</returns>
 2025        </member>
 2026        <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 2027            <summary>
 2028            Method to compare two DirectoryInfo objects
 2029            </summary>
 2030            <param name="expected">first directory to compare</param>
 2031            <param name="actual">second directory to compare</param>
 2032            <returns>true if equivalent, false if not</returns>
 2033        </member>
 2034        <member name="T:NUnit.Framework.Constraints.ThrowsConstraint">
 2035            <summary>
 2036            ThrowsConstraint is used to test the exception thrown by 
 2037            a delegate by applying a constraint to it.
 2038            </summary>
 2039        </member>
 2040        <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 2041            <summary>
 2042            Initializes a new instance of the <see cref="T:ThrowsConstraint"/> class,
 2043            using a constraint to be applied to the exception.
 2044            </summary>
 2045            <param name="baseConstraint">A constraint to apply to the caught exception.</param>
 2046        </member>
 2047        <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)">
 2048            <summary>
 2049            Executes the code of the delegate and captures any exception.
 2050            If a non-null base constraint was provided, it applies that
 2051            constraint to the exception.
 2052            </summary>
 2053            <param name="actual">A delegate representing the code to be tested</param>
 2054            <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>
 2055        </member>
 2056        <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
 2057            <summary>
 2058            Converts an ActualValueDelegate to a TestDelegate
 2059            before calling the primary overload.
 2060            </summary>
 2061            <param name="del"></param>
 2062            <returns></returns>
 2063        </member>
 2064        <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 2065            <summary>
 2066            Write the constraint description to a MessageWriter
 2067            </summary>
 2068            <param name="writer">The writer on which the description is displayed</param>
 2069        </member>
 2070        <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 2071            <summary>
 2072            Write the actual value for a failing constraint test to a
 2073            MessageWriter. The default implementation simply writes
 2074            the raw value of actual, leaving it to the writer to
 2075            perform any formatting.
 2076            </summary>
 2077            <param name="writer">The writer on which the actual value is displayed</param>
 2078        </member>
 2079        <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.GetStringRepresentation">
 2080            <summary>
 2081            Returns the string representation of this constraint
 2082            </summary>
 2083        </member>
 2084        <member name="P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException">
 2085            <summary>
 2086            Get the actual exception thrown - used by Assert.Throws.
 2087            </summary>
 2088        </member>
 2089        <member name="T:NUnit.Framework.Constraints.ThrowsNothingConstraint">
 2090            <summary>
 2091            ThrowsNothingConstraint tests that a delegate does not
 2092            throw an exception.
 2093            </summary>
 2094        </member>
 2095        <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)">
 2096            <summary>
 2097            Test whether the constraint is satisfied by a given value
 2098            </summary>
 2099            <param name="actual">The value to be tested</param>
 2100            <returns>True if no exception is thrown, otherwise false</returns>
 2101        </member>
 2102        <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 2103            <summary>
 2104            Write the constraint description to a MessageWriter
 2105            </summary>
 2106            <param name="writer">The writer on which the description is displayed</param>
 2107        </member>
 2108        <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 2109            <summary>
 2110            Write the actual value for a failing constraint test to a
 2111            MessageWriter. The default implementation simply writes
 2112            the raw value of actual, leaving it to the writer to
 2113            perform any formatting.
 2114            </summary>
 2115            <param name="writer">The writer on which the actual value is displayed</param>
 2116        </member>
 2117        <member name="T:NUnit.Framework.Constraints.RangeConstraint">
 2118            <summary>
 2119            RangeConstraint tests whethe two values are within a 
 2120            specified range.
 2121            </summary>
 2122        </member>
 2123        <member name="M:NUnit.Framework.Constraints.RangeConstraint.#ctor(System.IComparable,System.IComparable)">
 2124            <summary>
 2125            Initializes a new instance of the <see cref="T:RangeConstraint"/> class.
 2126            </summary>
 2127            <param name="from">From.</param>
 2128            <param name="to">To.</param>
 2129        </member>
 2130        <member name="M:NUnit.Framework.Constraints.RangeConstraint.Matches(System.Object)">
 2131            <summary>
 2132            Test whether the constraint is satisfied by a given value
 2133            </summary>
 2134            <param name="actual">The value to be tested</param>
 2135            <returns>True for success, false for failure</returns>
 2136        </member>
 2137        <member name="M:NUnit.Framework.Constraints.RangeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 2138            <summary>
 2139            Write the constraint description to a MessageWriter
 2140            </summary>
 2141            <param name="writer">The writer on which the description is displayed</param>
 2142        </member>
 2143        <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using(System.Collections.IComparer)">
 2144            <summary>
 2145            Modifies the constraint to use an IComparer and returns self.
 2146            </summary>
 2147        </member>
 2148        <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
 2149            <summary>
 2150            Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
 2151            </summary>
 2152        </member>
 2153        <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using``1(System.Comparison{``0})">
 2154            <summary>
 2155            Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
 2156            </summary>
 2157        </member>
 2158        <member name="T:NUnit.Framework.Constraints.ConstraintFactory">
 2159            <summary>
 2160            Helper class with properties and methods that supply
 2161            a number of constraints used in Asserts.
 2162            </summary>
 2163        </member>
 2164        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)">
 2165            <summary>
 2166            Returns a new PropertyConstraintExpression, which will either
 2167            test for the existence of the named property on the object
 2168            being tested or apply any following constraint to that property.
 2169            </summary>
 2170        </member>
 2171        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)">
 2172            <summary>
 2173            Returns a new AttributeConstraint checking for the
 2174            presence of a particular attribute on an object.
 2175            </summary>
 2176        </member>
 2177        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1">
 2178            <summary>
 2179            Returns a new AttributeConstraint checking for the
 2180            presence of a particular attribute on an object.
 2181            </summary>
 2182        </member>
 2183        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)">
 2184            <summary>
 2185            Returns a constraint that tests two items for equality
 2186            </summary>
 2187        </member>
 2188        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)">
 2189            <summary>
 2190            Returns a constraint that tests that two references are the same object
 2191            </summary>
 2192        </member>
 2193        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)">
 2194            <summary>
 2195            Returns a constraint that tests whether the
 2196            actual value is greater than the suppled argument
 2197            </summary>
 2198        </member>
 2199        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)">
 2200            <summary>
 2201            Returns a constraint that tests whether the
 2202            actual value is greater than or equal to the suppled argument
 2203            </summary>
 2204        </member>
 2205        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)">
 2206            <summary>
 2207            Returns a constraint that tests whether the
 2208            actual value is greater than or equal to the suppled argument
 2209            </summary>
 2210        </member>
 2211        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)">
 2212            <summary>
 2213            Returns a constraint that tests whether the
 2214            actual value is less than the suppled argument
 2215            </summary>
 2216        </member>
 2217        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)">
 2218            <summary>
 2219            Returns a constraint that tests whether the
 2220            actual value is less than or equal to the suppled argument
 2221            </summary>
 2222        </member>
 2223        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)">
 2224            <summary>
 2225            Returns a constraint that tests whether the
 2226            actual value is less than or equal to the suppled argument
 2227            </summary>
 2228        </member>
 2229        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)">
 2230            <summary>
 2231            Returns a constraint that tests whether the actual
 2232            value is of the exact type supplied as an argument.
 2233            </summary>
 2234        </member>
 2235        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1">
 2236            <summary>
 2237            Returns a constraint that tests whether the actual
 2238            value is of the exact type supplied as an argument.
 2239            </summary>
 2240        </member>
 2241        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)">
 2242            <summary>
 2243            Returns a constraint that tests whether the actual value
 2244            is of the type supplied as an argument or a derived type.
 2245            </summary>
 2246        </member>
 2247        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1">
 2248            <summary>
 2249            Returns a constraint that tests whether the actual value
 2250            is of the type supplied as an argument or a derived type.
 2251            </summary>
 2252        </member>
 2253        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)">
 2254            <summary>
 2255            Returns a constraint that tests whether the actual value
 2256            is of the type supplied as an argument or a derived type.
 2257            </summary>
 2258        </member>
 2259        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1">
 2260            <summary>
 2261            Returns a constraint that tests whether the actual value
 2262            is of the type supplied as an argument or a derived type.
 2263            </summary>
 2264        </member>
 2265        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)">
 2266            <summary>
 2267            Returns a constraint that tests whether the actual value
 2268            is assignable from the type supplied as an argument.
 2269            </summary>
 2270        </member>
 2271        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1">
 2272            <summary>
 2273            Returns a constraint that tests whether the actual value
 2274            is assignable from the type supplied as an argument.
 2275            </summary>
 2276        </member>
 2277        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)">
 2278            <summary>
 2279            Returns a constraint that tests whether the actual value
 2280            is assignable from the type supplied as an argument.
 2281            </summary>
 2282        </member>
 2283        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1">
 2284            <summary>
 2285            Returns a constraint that tests whether the actual value
 2286            is assignable from the type supplied as an argument.
 2287            </summary>
 2288        </member>
 2289        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)">
 2290            <summary>
 2291            Returns a constraint that tests whether the actual value
 2292            is a collection containing the same elements as the 
 2293            collection supplied as an argument.
 2294            </summary>
 2295        </member>
 2296        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)">
 2297            <summary>
 2298            Returns a constraint that tests whether the actual value
 2299            is a subset of the collection supplied as an argument.
 2300            </summary>
 2301        </member>
 2302        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)">
 2303            <summary>
 2304            Returns a new CollectionContainsConstraint checking for the
 2305            presence of a particular object in the collection.
 2306            </summary>
 2307        </member>
 2308        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)">
 2309            <summary>
 2310            Returns a new CollectionContainsConstraint checking for the
 2311            presence of a particular object in the collection.
 2312            </summary>
 2313        </member>
 2314        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)">
 2315            <summary>
 2316            Returns a new ContainsConstraint. This constraint
 2317            will, in turn, make use of the appropriate second-level
 2318            constraint, depending on the type of the actual argument. 
 2319            This overload is only used if the item sought is a string,
 2320            since any other type implies that we are looking for a 
 2321            collection member.
 2322            </summary>
 2323        </member>
 2324        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)">
 2325            <summary>
 2326            Returns a constraint that succeeds if the actual
 2327            value contains the substring supplied as an argument.
 2328            </summary>
 2329        </member>
 2330        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)">
 2331            <summary>
 2332            Returns a constraint that succeeds if the actual
 2333            value contains the substring supplied as an argument.
 2334            </summary>
 2335        </member>
 2336        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)">
 2337            <summary>
 2338            Returns a constraint that fails if the actual
 2339            value contains the substring supplied as an argument.
 2340            </summary>
 2341        </member>
 2342        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)">
 2343            <summary>
 2344            Returns a constraint that succeeds if the actual
 2345            value starts with the substring supplied as an argument.
 2346            </summary>
 2347        </member>
 2348        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)">
 2349            <summary>
 2350            Returns a constraint that succeeds if the actual
 2351            value starts with the substring supplied as an argument.
 2352            </summary>
 2353        </member>
 2354        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)">
 2355            <summary>
 2356            Returns a constraint that fails if the actual
 2357            value starts with the substring supplied as an argument.
 2358            </summary>
 2359        </member>
 2360        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)">
 2361            <summary>
 2362            Returns a constraint that succeeds if the actual
 2363            value ends with the substring supplied as an argument.
 2364            </summary>
 2365        </member>
 2366        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)">
 2367            <summary>
 2368            Returns a constraint that succeeds if the actual
 2369            value ends with the substring supplied as an argument.
 2370            </summary>
 2371        </member>
 2372        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)">
 2373            <summary>
 2374            Returns a constraint that fails if the actual
 2375            value ends with the substring supplied as an argument.
 2376            </summary>
 2377        </member>
 2378        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)">
 2379            <summary>
 2380            Returns a constraint that succeeds if the actual
 2381            value matches the Regex pattern supplied as an argument.
 2382            </summary>
 2383        </member>
 2384        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)">
 2385            <summary>
 2386            Returns a constraint that succeeds if the actual
 2387            value matches the Regex pattern supplied as an argument.
 2388            </summary>
 2389        </member>
 2390        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)">
 2391            <summary>
 2392            Returns a constraint that fails if the actual
 2393            value matches the pattern supplied as an argument.
 2394            </summary>
 2395        </member>
 2396        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)">
 2397            <summary>
 2398            Returns a constraint that tests whether the path provided 
 2399            is the same as an expected path after canonicalization.
 2400            </summary>
 2401        </member>
 2402        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)">
 2403            <summary>
 2404            Returns a constraint that tests whether the path provided 
 2405            is the same path or under an expected path after canonicalization.
 2406            </summary>
 2407        </member>
 2408        <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InRange(System.IComparable,System.IComparable)">
 2409            <summary>
 2410            Returns a constraint that tests whether the actual value falls 
 2411            within a specified range.
 2412            </summary>
 2413        </member>
 2414        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Not">
 2415            <summary>
 2416            Returns a ConstraintExpression that negates any
 2417            following constraint.
 2418            </summary>
 2419        </member>
 2420        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.No">
 2421            <summary>
 2422            Returns a ConstraintExpression that negates any
 2423            following constraint.
 2424            </summary>
 2425        </member>
 2426        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.All">
 2427            <summary>
 2428            Returns a ConstraintExpression, which will apply
 2429            the following constraint to all members of a collection,
 2430            succeeding if all of them succeed.
 2431            </summary>
 2432        </member>
 2433        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Some">
 2434            <summary>
 2435            Returns a ConstraintExpression, which will apply
 2436            the following constraint to all members of a collection,
 2437            succeeding if at least one of them succeeds.
 2438            </summary>
 2439        </member>
 2440        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.None">
 2441            <summary>
 2442            Returns a ConstraintExpression, which will apply
 2443            the following constraint to all members of a collection,
 2444            succeeding if all of them fail.
 2445            </summary>
 2446        </member>
 2447        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Length">
 2448            <summary>
 2449            Returns a new ConstraintExpression, which will apply the following
 2450            constraint to the Length property of the object being tested.
 2451            </summary>
 2452        </member>
 2453        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Count">
 2454            <summary>
 2455            Returns a new ConstraintExpression, which will apply the following
 2456            constraint to the Count property of the object being tested.
 2457            </summary>
 2458        </member>
 2459        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Message">
 2460            <summary>
 2461            Returns a new ConstraintExpression, which will apply the following
 2462            constraint to the Message property of the object being tested.
 2463            </summary>
 2464        </member>
 2465        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.InnerException">
 2466            <summary>
 2467            Returns a new ConstraintExpression, which will apply the following
 2468            constraint to the InnerException property of the object being tested.
 2469            </summary>
 2470        </member>
 2471        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Null">
 2472            <summary>
 2473            Returns a constraint that tests for null
 2474            </summary>
 2475        </member>
 2476        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.True">
 2477            <summary>
 2478            Returns a constraint that tests for True
 2479            </summary>
 2480        </member>
 2481        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.False">
 2482            <summary>
 2483            Returns a constraint that tests for False
 2484            </summary>
 2485        </member>
 2486        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.NaN">
 2487            <summary>
 2488            Returns a constraint that tests for NaN
 2489            </summary>
 2490        </member>
 2491        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Empty">
 2492            <summary>
 2493            Returns a constraint that tests for empty
 2494            </summary>
 2495        </member>
 2496        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Unique">
 2497            <summary>
 2498            Returns a constraint that tests whether a collection 
 2499            contains all unique items.
 2500            </summary>
 2501        </member>
 2502        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable">
 2503            <summary>
 2504            Returns a constraint that tests whether an object graph is serializable in binary format.
 2505            </summary>
 2506        </member>
 2507        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable">
 2508            <summary>
 2509            Returns a constraint that tests whether an object graph is serializable in xml format.
 2510            </summary>
 2511        </member>
 2512        <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Ordered">
 2513            <summary>
 2514            Returns a constraint that tests whether a collection is ordered
 2515            </summary>
 2516        </member>
 2517        <member name="T:NUnit.Framework.Constraints.ConstraintOperator">
 2518            <summary>
 2519            The ConstraintOperator class is used internally by a
 2520            ConstraintBuilder to represent an operator that 
 2521            modifies or combines constraints. 
 2522            
 2523            Constraint operators use left and right precedence
 2524            values to determine whether the top operator on the
 2525            stack should be reduced before pushing a new operator.
 2526            </summary>
 2527        </member>
 2528        <member name="F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence">
 2529            <summary>
 2530            The precedence value used when the operator
 2531            is about to be pushed to the stack.
 2532            </summary>
 2533        </member>
 2534        <member name="F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence">
 2535            <summary>
 2536            The precedence value used when the operator
 2537            is on the top of the stack.
 2538            </summary>
 2539        </member>
 2540        <member name="M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
 2541            <summary>
 2542            Reduce produces a constraint from the operator and 
 2543            any arguments. It takes the arguments from the constraint 
 2544            stack and pushes the resulting constraint on it.
 2545            </summary>
 2546            <param name="stack"></param>
 2547        </member>
 2548        <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext">
 2549            <summary>
 2550            The syntax element preceding this operator
 2551            </summary>
 2552        </member>
 2553        <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightContext">
 2554            <summary>
 2555            The syntax element folowing this operator
 2556            </summary>
 2557        </member>
 2558        <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence">
 2559            <summary>
 2560            The precedence value used when the operator
 2561            is about to be pushed to the stack.
 2562            </summary>
 2563        </member>
 2564        <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence">
 2565            <summary>
 2566            The precedence value used when the operator
 2567            is on the top of the stack.
 2568            </summary>
 2569        </member>
 2570        <member name="T:NUnit.Framework.Constraints.PrefixOperator">
 2571            <summary>
 2572            PrefixOperator takes a single constraint and modifies
 2573            it's action in some way.
 2574            </summary>
 2575        </member>
 2576        <member name="M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
 2577            <summary>
 2578            Reduce produces a constraint from the operator and 
 2579            any arguments. It takes the arguments from the constraint 
 2580            stack and pushes the resulting constraint on it.
 2581            </summary>
 2582            <param name="stack"></param>
 2583        </member>
 2584        <member name="M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
 2585            <summary>
 2586            Returns the constraint created by applying this
 2587            prefix to another constraint.
 2588            </summary>
 2589            <param name="constraint"></param>
 2590            <returns></returns>
 2591        </member>
 2592        <member name="T:NUnit.Framework.Constraints.NotOperator">
 2593            <summary>
 2594            Negates the test of the constraint it wraps.
 2595            </summary>
 2596        </member>
 2597        <member name="M:NUnit.Framework.Constraints.NotOperator.#ctor">
 2598            <summary>
 2599            Constructs a new NotOperator
 2600            </summary>
 2601        </member>
 2602        <member name="M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
 2603            <summary>
 2604            Returns a NotConstraint applied to its argument.
 2605            </summary>
 2606        </member>
 2607        <member name="T:NUnit.Framework.Constraints.CollectionOperator">
 2608            <summary>
 2609            Abstract base for operators that indicate how to
 2610            apply a constraint to items in a collection.
 2611            </summary>
 2612        </member>
 2613        <member name="M:NUnit.Framework.Constraints.CollectionOperator.#ctor">
 2614            <summary>
 2615            Constructs a CollectionOperator
 2616            </summary>
 2617        </member>
 2618        <member name="T:NUnit.Framework.Constraints.AllOperator">
 2619            <summary>
 2620            Represents a constraint that succeeds if all the 
 2621            members of a collection match a base constraint.
 2622            </summary>
 2623        </member>
 2624        <member name="M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
 2625            <summary>
 2626            Returns a constraint that will apply the argument
 2627            to the members of a collection, succeeding if
 2628            they all succeed.
 2629            </summary>
 2630        </member>
 2631        <member name="T:NUnit.Framework.Constraints.SomeOperator">
 2632            <summary>
 2633            Represents a constraint that succeeds if any of the 
 2634            members of a collection match a base constraint.
 2635            </summary>
 2636        </member>
 2637        <member name="M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
 2638            <summary>
 2639            Returns a constraint that will apply the argument
 2640            to the members of a collection, succeeding if
 2641            any of them succeed.
 2642            </summary>
 2643        </member>
 2644        <member name="T:NUnit.Framework.Constraints.NoneOperator">
 2645            <summary>
 2646            Represents a constraint that succeeds if none of the 
 2647            members of a collection match a base constraint.
 2648            </summary>
 2649        </member>
 2650        <member name="M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
 2651            <summary>
 2652            Returns a constraint that will apply the argument
 2653            to the members of a collection, succeeding if
 2654            none of them succeed.
 2655            </summary>
 2656        </member>
 2657        <member name="T:NUnit.Framework.Constraints.WithOperator">
 2658            <summary>
 2659            Represents a constraint that simply wraps the
 2660            constraint provided as an argument, without any
 2661            further functionality, but which modifes the
 2662            order of evaluation because of its precedence.
 2663            </summary>
 2664        </member>
 2665        <member name="M:NUnit.Framework.Constraints.WithOperator.#ctor">
 2666            <summary>
 2667            Constructor for the WithOperator
 2668            </summary>
 2669        </member>
 2670        <member name="M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
 2671            <summary>
 2672            Returns a constraint that wraps its argument
 2673            </summary>
 2674        </member>
 2675        <member name="T:NUnit.Framework.Constraints.SelfResolvingOperator">
 2676            <summary>
 2677            Abstract base class for operators that are able to reduce to a 
 2678            constraint whether or not another syntactic element follows.
 2679            </summary>
 2680        </member>
 2681        <member name="T:NUnit.Framework.Constraints.PropOperator">
 2682            <summary>
 2683            Operator used to test for the presence of a named Property
 2684            on an object and optionally apply further tests to the
 2685            value of that property.
 2686            </summary>
 2687        </member>
 2688        <member name="M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)">
 2689            <summary>
 2690            Constructs a PropOperator for a particular named property
 2691            </summary>
 2692        </member>
 2693        <member name="M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
 2694            <summary>
 2695            Reduce produces a constraint from the operator and 
 2696            any arguments. It takes the arguments from the constraint 
 2697            stack and pushes the resulting constraint on it.
 2698            </summary>
 2699            <param name="stack"></param>
 2700        </member>
 2701        <member name="P:NUnit.Framework.Constraints.PropOperator.Name">
 2702            <summary>
 2703            Gets the name of the property to which the operator applies
 2704            </summary>
 2705        </member>
 2706        <member name="T:NUnit.Framework.Constraints.AttributeOperator">
 2707            <summary>
 2708            Operator that tests for the presence of a particular attribute
 2709            on a type and optionally applies further tests to the attribute.
 2710            </summary>
 2711        </member>
 2712        <member name="M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)">
 2713            <summary>
 2714            Construct an AttributeOperator for a particular Type
 2715            </summary>
 2716            <param name="type">The Type of attribute tested</param>
 2717        </member>
 2718        <member name="M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
 2719            <summary>
 2720            Reduce produces a constraint from the operator and 
 2721            any arguments. It takes the arguments from the constraint 
 2722            stack and pushes the resulting constraint on it.
 2723            </summary>
 2724        </member>
 2725        <member name="T:NUnit.Framework.Constraints.ThrowsOperator">
 2726            <summary>
 2727            Operator that tests that an exception is thrown and
 2728            optionally applies further tests to the exception.
 2729            </summary>
 2730        </member>
 2731        <member name="M:NUnit.Framework.Constraints.ThrowsOperator.#ctor">
 2732            <summary>
 2733            Construct a ThrowsOperator
 2734            </summary>
 2735        </member>
 2736        <member name="M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
 2737            <summary>
 2738            Reduce produces a constraint from the operator and 
 2739            any arguments. It takes the arguments from the constraint 
 2740            stack and pushes the resulting constraint on it.
 2741            </summary>
 2742        </member>
 2743        <member name="T:NUnit.Framework.Constraints.BinaryOperator">
 2744            <summary>
 2745            Abstract base class for all binary operators
 2746            </summary>
 2747        </member>
 2748        <member name="M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
 2749            <summary>
 2750            Reduce produces a constraint from the operator and 
 2751            any arguments. It takes the arguments from the constraint 
 2752            stack and pushes the resulting constraint on it.
 2753            </summary>
 2754            <param name="stack"></param>
 2755        </member>
 2756        <member name="M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 2757            <summary>
 2758            Abstract method that produces a constraint by applying
 2759            the operator to its left and right constraint arguments.
 2760            </summary>
 2761        </member>
 2762        <member name="P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence">
 2763            <summary>
 2764            Gets the left precedence of the operator
 2765            </summary>
 2766        </member>
 2767        <member name="P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence">
 2768            <summary>
 2769            Gets the right precedence of the operator
 2770            </summary>
 2771        </member>
 2772        <member name="T:NUnit.Framework.Constraints.AndOperator">
 2773            <summary>
 2774            Operator that requires both it's arguments to succeed
 2775            </summary>
 2776        </member>
 2777        <member name="M:NUnit.Framework.Constraints.AndOperator.#ctor">
 2778            <summary>
 2779            Construct an AndOperator
 2780            </summary>
 2781        </member>
 2782        <member name="M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 2783            <summary>
 2784            Apply the operator to produce an AndConstraint
 2785            </summary>
 2786        </member>
 2787        <member name="T:NUnit.Framework.Constraints.OrOperator">
 2788            <summary>
 2789            Operator that requires at least one of it's arguments to succeed
 2790            </summary>
 2791        </member>
 2792        <member name="M:NUnit.Framework.Constraints.OrOperator.#ctor">
 2793            <summary>
 2794            Construct an OrOperator
 2795            </summary>
 2796        </member>
 2797        <member name="M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 2798            <summary>
 2799            Apply the operator to produce an OrConstraint
 2800            </summary>
 2801        </member>
 2802        <member name="T:NUnit.Framework.Constraints.ConstraintExpression">
 2803            <summary>
 2804            ConstraintExpression represents a compound constraint in the 
 2805            process of being constructed from a series of syntactic elements.
 2806            
 2807            Individual elements are appended to the expression as they are
 2808            reognized. Once an actual Constraint is appended, the expression
 2809            returns a resolvable Constraint.
 2810            </summary>
 2811        </member>
 2812        <member name="T:NUnit.Framework.Constraints.ConstraintExpressionBase">
 2813            <summary>
 2814            ConstraintExpressionBase is the abstract base class for the 
 2815            generated ConstraintExpression class, which represents a 
 2816            compound constraint in the process of being constructed 
 2817            from a series of syntactic elements.
 2818            
 2819            NOTE: ConstraintExpressionBase is aware of some of its
 2820            derived classes, which is an apparent violation of 
 2821            encapsulation. Ideally, these classes would be a 
 2822            single class, but they must be separated in order to
 2823            allow parts to be generated under .NET 1.x and to
 2824            provide proper user feedback in syntactically 
 2825            aware IDEs.
 2826            </summary>
 2827        </member>
 2828        <member name="F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder">
 2829            <summary>
 2830            The ConstraintBuilder holding the elements recognized so far
 2831            </summary>
 2832        </member>
 2833        <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor">
 2834            <summary>
 2835            Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> class.
 2836            </summary>
 2837        </member>
 2838        <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
 2839            <summary>
 2840            Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> 
 2841            class passing in a ConstraintBuilder, which may be pre-populated.
 2842            </summary>
 2843            <param name="builder">The builder.</param>
 2844        </member>
 2845        <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString">
 2846            <summary>
 2847            Returns a string representation of the expression as it
 2848            currently stands. This should only be used for testing,
 2849            since it has the side-effect of resolving the expression.
 2850            </summary>
 2851            <returns></returns>
 2852        </member>
 2853        <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)">
 2854            <summary>
 2855            Appends an operator to the expression and returns the
 2856            resulting expression itself.
 2857            </summary>
 2858        </member>
 2859        <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)">
 2860            <summary>
 2861            Appends a self-resolving operator to the expression and
 2862            returns a new ResolvableConstraintExpression.
 2863            </summary>
 2864        </member>
 2865        <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)">
 2866            <summary>
 2867            Appends a constraint to the expression and returns that
 2868            constraint, which is associated with the current state
 2869            of the expression being built.
 2870            </summary>
 2871        </member>
 2872        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor">
 2873            <summary>
 2874            Initializes a new instance of the <see cref="T:ConstraintExpression"/> class.
 2875            </summary>
 2876        </member>
 2877        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
 2878            <summary>
 2879            Initializes a new instance of the <see cref="T:ConstraintExpression"/> 
 2880            class passing in a ConstraintBuilder, which may be pre-populated.
 2881            </summary>
 2882            <param name="builder">The builder.</param>
 2883        </member>
 2884        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)">
 2885            <summary>
 2886            Returns a new PropertyConstraintExpression, which will either
 2887            test for the existence of the named property on the object
 2888            being tested or apply any following constraint to that property.
 2889            </summary>
 2890        </member>
 2891        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)">
 2892            <summary>
 2893            Returns a new AttributeConstraint checking for the
 2894            presence of a particular attribute on an object.
 2895            </summary>
 2896        </member>
 2897        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1">
 2898            <summary>
 2899            Returns a new AttributeConstraint checking for the
 2900            presence of a particular attribute on an object.
 2901            </summary>
 2902        </member>
 2903        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.Constraint)">
 2904            <summary>
 2905            Returns the constraint provided as an argument - used to allow custom
 2906            custom constraints to easily participate in the syntax.
 2907            </summary>
 2908        </member>
 2909        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})">
 2910            <summary>
 2911            Returns the constraint provided as an argument - used to allow custom
 2912            custom constraints to easily participate in the syntax.
 2913            </summary>
 2914        </member>
 2915        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)">
 2916            <summary>
 2917            Returns a constraint that tests two items for equality
 2918            </summary>
 2919        </member>
 2920        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)">
 2921            <summary>
 2922            Returns a constraint that tests that two references are the same object
 2923            </summary>
 2924        </member>
 2925        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)">
 2926            <summary>
 2927            Returns a constraint that tests whether the
 2928            actual value is greater than the suppled argument
 2929            </summary>
 2930        </member>
 2931        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)">
 2932            <summary>
 2933            Returns a constraint that tests whether the
 2934            actual value is greater than or equal to the suppled argument
 2935            </summary>
 2936        </member>
 2937        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)">
 2938            <summary>
 2939            Returns a constraint that tests whether the
 2940            actual value is greater than or equal to the suppled argument
 2941            </summary>
 2942        </member>
 2943        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)">
 2944            <summary>
 2945            Returns a constraint that tests whether the
 2946            actual value is less than the suppled argument
 2947            </summary>
 2948        </member>
 2949        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)">
 2950            <summary>
 2951            Returns a constraint that tests whether the
 2952            actual value is less than or equal to the suppled argument
 2953            </summary>
 2954        </member>
 2955        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)">
 2956            <summary>
 2957            Returns a constraint that tests whether the
 2958            actual value is less than or equal to the suppled argument
 2959            </summary>
 2960        </member>
 2961        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)">
 2962            <summary>
 2963            Returns a constraint that tests whether the actual
 2964            value is of the exact type supplied as an argument.
 2965            </summary>
 2966        </member>
 2967        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1">
 2968            <summary>
 2969            Returns a constraint that tests whether the actual
 2970            value is of the exact type supplied as an argument.
 2971            </summary>
 2972        </member>
 2973        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)">
 2974            <summary>
 2975            Returns a constraint that tests whether the actual value
 2976            is of the type supplied as an argument or a derived type.
 2977            </summary>
 2978        </member>
 2979        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1">
 2980            <summary>
 2981            Returns a constraint that tests whether the actual value
 2982            is of the type supplied as an argument or a derived type.
 2983            </summary>
 2984        </member>
 2985        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)">
 2986            <summary>
 2987            Returns a constraint that tests whether the actual value
 2988            is of the type supplied as an argument or a derived type.
 2989            </summary>
 2990        </member>
 2991        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1">
 2992            <summary>
 2993            Returns a constraint that tests whether the actual value
 2994            is of the type supplied as an argument or a derived type.
 2995            </summary>
 2996        </member>
 2997        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)">
 2998            <summary>
 2999            Returns a constraint that tests whether the actual value
 3000            is assignable from the type supplied as an argument.
 3001            </summary>
 3002        </member>
 3003        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1">
 3004            <summary>
 3005            Returns a constraint that tests whether the actual value
 3006            is assignable from the type supplied as an argument.
 3007            </summary>
 3008        </member>
 3009        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)">
 3010            <summary>
 3011            Returns a constraint that tests whether the actual value
 3012            is assignable from the type supplied as an argument.
 3013            </summary>
 3014        </member>
 3015        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1">
 3016            <summary>
 3017            Returns a constraint that tests whether the actual value
 3018            is assignable from the type supplied as an argument.
 3019            </summary>
 3020        </member>
 3021        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)">
 3022            <summary>
 3023            Returns a constraint that tests whether the actual value
 3024            is a collection containing the same elements as the 
 3025            collection supplied as an argument.
 3026            </summary>
 3027        </member>
 3028        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)">
 3029            <summary>
 3030            Returns a constraint that tests whether the actual value
 3031            is a subset of the collection supplied as an argument.
 3032            </summary>
 3033        </member>
 3034        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)">
 3035            <summary>
 3036            Returns a new CollectionContainsConstraint checking for the
 3037            presence of a particular object in the collection.
 3038            </summary>
 3039        </member>
 3040        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)">
 3041            <summary>
 3042            Returns a new CollectionContainsConstraint checking for the
 3043            presence of a particular object in the collection.
 3044            </summary>
 3045        </member>
 3046        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)">
 3047            <summary>
 3048            Returns a new ContainsConstraint. This constraint
 3049            will, in turn, make use of the appropriate second-level
 3050            constraint, depending on the type of the actual argument. 
 3051            This overload is only used if the item sought is a string,
 3052            since any other type implies that we are looking for a 
 3053            collection member.
 3054            </summary>
 3055        </member>
 3056        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)">
 3057            <summary>
 3058            Returns a constraint that succeeds if the actual
 3059            value contains the substring supplied as an argument.
 3060            </summary>
 3061        </member>
 3062        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)">
 3063            <summary>
 3064            Returns a constraint that succeeds if the actual
 3065            value contains the substring supplied as an argument.
 3066            </summary>
 3067        </member>
 3068        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)">
 3069            <summary>
 3070            Returns a constraint that succeeds if the actual
 3071            value starts with the substring supplied as an argument.
 3072            </summary>
 3073        </member>
 3074        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)">
 3075            <summary>
 3076            Returns a constraint that succeeds if the actual
 3077            value starts with the substring supplied as an argument.
 3078            </summary>
 3079        </member>
 3080        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)">
 3081            <summary>
 3082            Returns a constraint that succeeds if the actual
 3083            value ends with the substring supplied as an argument.
 3084            </summary>
 3085        </member>
 3086        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)">
 3087            <summary>
 3088            Returns a constraint that succeeds if the actual
 3089            value ends with the substring supplied as an argument.
 3090            </summary>
 3091        </member>
 3092        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)">
 3093            <summary>
 3094            Returns a constraint that succeeds if the actual
 3095            value matches the Regex pattern supplied as an argument.
 3096            </summary>
 3097        </member>
 3098        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)">
 3099            <summary>
 3100            Returns a constraint that succeeds if the actual
 3101            value matches the Regex pattern supplied as an argument.
 3102            </summary>
 3103        </member>
 3104        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)">
 3105            <summary>
 3106            Returns a constraint that tests whether the path provided 
 3107            is the same as an expected path after canonicalization.
 3108            </summary>
 3109        </member>
 3110        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)">
 3111            <summary>
 3112            Returns a constraint that tests whether the path provided 
 3113            is the same path or under an expected path after canonicalization.
 3114            </summary>
 3115        </member>
 3116        <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InRange(System.IComparable,System.IComparable)">
 3117            <summary>
 3118            Returns a constraint that tests whether the actual value falls 
 3119            within a specified range.
 3120            </summary>
 3121        </member>
 3122        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Not">
 3123            <summary>
 3124            Returns a ConstraintExpression that negates any
 3125            following constraint.
 3126            </summary>
 3127        </member>
 3128        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.No">
 3129            <summary>
 3130            Returns a ConstraintExpression that negates any
 3131            following constraint.
 3132            </summary>
 3133        </member>
 3134        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.All">
 3135            <summary>
 3136            Returns a ConstraintExpression, which will apply
 3137            the following constraint to all members of a collection,
 3138            succeeding if all of them succeed.
 3139            </summary>
 3140        </member>
 3141        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Some">
 3142            <summary>
 3143            Returns a ConstraintExpression, which will apply
 3144            the following constraint to all members of a collection,
 3145            succeeding if at least one of them succeeds.
 3146            </summary>
 3147        </member>
 3148        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.None">
 3149            <summary>
 3150            Returns a ConstraintExpression, which will apply
 3151            the following constraint to all members of a collection,
 3152            succeeding if all of them fail.
 3153            </summary>
 3154        </member>
 3155        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Length">
 3156            <summary>
 3157            Returns a new ConstraintExpression, which will apply the following
 3158            constraint to the Length property of the object being tested.
 3159            </summary>
 3160        </member>
 3161        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Count">
 3162            <summary>
 3163            Returns a new ConstraintExpression, which will apply the following
 3164            constraint to the Count property of the object being tested.
 3165            </summary>
 3166        </member>
 3167        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Message">
 3168            <summary>
 3169            Returns a new ConstraintExpression, which will apply the following
 3170            constraint to the Message property of the object being tested.
 3171            </summary>
 3172        </member>
 3173        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.InnerException">
 3174            <summary>
 3175            Returns a new ConstraintExpression, which will apply the following
 3176            constraint to the InnerException property of the object being tested.
 3177            </summary>
 3178        </member>
 3179        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.With">
 3180            <summary>
 3181            With is currently a NOP - reserved for future use.
 3182            </summary>
 3183        </member>
 3184        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Null">
 3185            <summary>
 3186            Returns a constraint that tests for null
 3187            </summary>
 3188        </member>
 3189        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.True">
 3190            <summary>
 3191            Returns a constraint that tests for True
 3192            </summary>
 3193        </member>
 3194        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.False">
 3195            <summary>
 3196            Returns a constraint that tests for False
 3197            </summary>
 3198        </member>
 3199        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.NaN">
 3200            <summary>
 3201            Returns a constraint that tests for NaN
 3202            </summary>
 3203        </member>
 3204        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Empty">
 3205            <summary>
 3206            Returns a constraint that tests for empty
 3207            </summary>
 3208        </member>
 3209        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Unique">
 3210            <summary>
 3211            Returns a constraint that tests whether a collection 
 3212            contains all unique items.
 3213            </summary>
 3214        </member>
 3215        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable">
 3216            <summary>
 3217            Returns a constraint that tests whether an object graph is serializable in binary format.
 3218            </summary>
 3219        </member>
 3220        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable">
 3221            <summary>
 3222            Returns a constraint that tests whether an object graph is serializable in xml format.
 3223            </summary>
 3224        </member>
 3225        <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Ordered">
 3226            <summary>
 3227            Returns a constraint that tests whether a collection is ordered
 3228            </summary>
 3229        </member>
 3230        <member name="T:NUnit.Framework.Constraints.BinarySerializableConstraint">
 3231            <summary>
 3232            BinarySerializableConstraint tests whether 
 3233            an object is serializable in binary format.
 3234            </summary>
 3235        </member>
 3236        <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)">
 3237            <summary>
 3238            Test whether the constraint is satisfied by a given value
 3239            </summary>
 3240            <param name="actual">The value to be tested</param>
 3241            <returns>True for success, false for failure</returns>
 3242        </member>
 3243        <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3244            <summary>
 3245            Write the constraint description to a MessageWriter
 3246            </summary>
 3247            <param name="writer">The writer on which the description is displayed</param>
 3248        </member>
 3249        <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 3250            <summary>
 3251            Write the actual value for a failing constraint test to a
 3252            MessageWriter. The default implementation simply writes
 3253            the raw value of actual, leaving it to the writer to
 3254            perform any formatting.
 3255            </summary>
 3256            <param name="writer">The writer on which the actual value is displayed</param>
 3257        </member>
 3258        <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.GetStringRepresentation">
 3259            <summary>
 3260            Returns the string representation
 3261            </summary>
 3262        </member>
 3263        <member name="T:NUnit.Framework.Constraints.XmlSerializableConstraint">
 3264            <summary>
 3265            BinarySerializableConstraint tests whether 
 3266            an object is serializable in binary format.
 3267            </summary>
 3268        </member>
 3269        <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)">
 3270            <summary>
 3271            Test whether the constraint is satisfied by a given value
 3272            </summary>
 3273            <param name="actual">The value to be tested</param>
 3274            <returns>True for success, false for failure</returns>
 3275        </member>
 3276        <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3277            <summary>
 3278            Write the constraint description to a MessageWriter
 3279            </summary>
 3280            <param name="writer">The writer on which the description is displayed</param>
 3281        </member>
 3282        <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 3283            <summary>
 3284            Write the actual value for a failing constraint test to a
 3285            MessageWriter. The default implementation simply writes
 3286            the raw value of actual, leaving it to the writer to
 3287            perform any formatting.
 3288            </summary>
 3289            <param name="writer">The writer on which the actual value is displayed</param>
 3290        </member>
 3291        <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.GetStringRepresentation">
 3292            <summary>
 3293            Returns the string representation of this constraint
 3294            </summary>
 3295        </member>
 3296        <member name="T:NUnit.Framework.Constraints.BasicConstraint">
 3297            <summary>
 3298            BasicConstraint is the abstract base for constraints that
 3299            perform a simple comparison to a constant value.
 3300            </summary>
 3301        </member>
 3302        <member name="M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)">
 3303            <summary>
 3304            Initializes a new instance of the <see cref="T:BasicConstraint"/> class.
 3305            </summary>
 3306            <param name="expected">The expected.</param>
 3307            <param name="description">The description.</param>
 3308        </member>
 3309        <member name="M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)">
 3310            <summary>
 3311            Test whether the constraint is satisfied by a given value
 3312            </summary>
 3313            <param name="actual">The value to be tested</param>
 3314            <returns>True for success, false for failure</returns>
 3315        </member>
 3316        <member name="M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3317            <summary>
 3318            Write the constraint description to a MessageWriter
 3319            </summary>
 3320            <param name="writer">The writer on which the description is displayed</param>
 3321        </member>
 3322        <member name="T:NUnit.Framework.Constraints.NullConstraint">
 3323            <summary>
 3324            NullConstraint tests that the actual value is null
 3325            </summary>
 3326        </member>
 3327        <member name="M:NUnit.Framework.Constraints.NullConstraint.#ctor">
 3328            <summary>
 3329            Initializes a new instance of the <see cref="T:NullConstraint"/> class.
 3330            </summary>
 3331        </member>
 3332        <member name="T:NUnit.Framework.Constraints.TrueConstraint">
 3333            <summary>
 3334            TrueConstraint tests that the actual value is true
 3335            </summary>
 3336        </member>
 3337        <member name="M:NUnit.Framework.Constraints.TrueConstraint.#ctor">
 3338            <summary>
 3339            Initializes a new instance of the <see cref="T:TrueConstraint"/> class.
 3340            </summary>
 3341        </member>
 3342        <member name="T:NUnit.Framework.Constraints.FalseConstraint">
 3343            <summary>
 3344            FalseConstraint tests that the actual value is false
 3345            </summary>
 3346        </member>
 3347        <member name="M:NUnit.Framework.Constraints.FalseConstraint.#ctor">
 3348            <summary>
 3349            Initializes a new instance of the <see cref="T:FalseConstraint"/> class.
 3350            </summary>
 3351        </member>
 3352        <member name="T:NUnit.Framework.Constraints.NaNConstraint">
 3353            <summary>
 3354            NaNConstraint tests that the actual value is a double or float NaN
 3355            </summary>
 3356        </member>
 3357        <member name="M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)">
 3358            <summary>
 3359            Test that the actual value is an NaN
 3360            </summary>
 3361            <param name="actual"></param>
 3362            <returns></returns>
 3363        </member>
 3364        <member name="M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3365            <summary>
 3366            Write the constraint description to a specified writer
 3367            </summary>
 3368            <param name="writer"></param>
 3369        </member>
 3370        <member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
 3371            <summary>
 3372            AttributeExistsConstraint tests for the presence of a
 3373            specified attribute on  a Type.
 3374            </summary>
 3375        </member>
 3376        <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)">
 3377            <summary>
 3378            Constructs an AttributeExistsConstraint for a specific attribute Type
 3379            </summary>
 3380            <param name="type"></param>
 3381        </member>
 3382        <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)">
 3383            <summary>
 3384            Tests whether the object provides the expected attribute.
 3385            </summary>
 3386            <param name="actual">A Type, MethodInfo, or other ICustomAttributeProvider</param>
 3387            <returns>True if the expected attribute is present, otherwise false</returns>
 3388        </member>
 3389        <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3390            <summary>
 3391            Writes the description of the constraint to the specified writer
 3392            </summary>
 3393        </member>
 3394        <member name="T:NUnit.Framework.Constraints.AttributeConstraint">
 3395            <summary>
 3396            AttributeConstraint tests that a specified attribute is present
 3397            on a Type or other provider and that the value of the attribute
 3398            satisfies some other constraint.
 3399            </summary>
 3400        </member>
 3401        <member name="M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)">
 3402            <summary>
 3403            Constructs an AttributeConstraint for a specified attriute
 3404            Type and base constraint.
 3405            </summary>
 3406            <param name="type"></param>
 3407            <param name="baseConstraint"></param>
 3408        </member>
 3409        <member name="M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)">
 3410            <summary>
 3411            Determines whether the Type or other provider has the 
 3412            expected attribute and if its value matches the
 3413            additional constraint specified.
 3414            </summary>
 3415        </member>
 3416        <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3417            <summary>
 3418            Writes a description of the attribute to the specified writer.
 3419            </summary>
 3420        </member>
 3421        <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 3422            <summary>
 3423            Writes the actual value supplied to the specified writer.
 3424            </summary>
 3425        </member>
 3426        <member name="M:NUnit.Framework.Constraints.AttributeConstraint.GetStringRepresentation">
 3427            <summary>
 3428            Returns a string representation of the constraint.
 3429            </summary>
 3430        </member>
 3431        <member name="T:NUnit.Framework.Constraints.ResolvableConstraintExpression">
 3432            <summary>
 3433            ResolvableConstraintExpression is used to represent a compound
 3434            constraint being constructed at a point where the last operator
 3435            may either terminate the expression or may have additional 
 3436            qualifying constraints added to it. 
 3437            
 3438            It is used, for example, for a Property element or for
 3439            an Exception element, either of which may be optionally
 3440            followed by constraints that apply to the property or 
 3441            exception.
 3442            </summary>
 3443        </member>
 3444        <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor">
 3445            <summary>
 3446            Create a new instance of ResolvableConstraintExpression
 3447            </summary>
 3448        </member>
 3449        <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
 3450            <summary>
 3451            Create a new instance of ResolvableConstraintExpression,
 3452            passing in a pre-populated ConstraintBuilder.
 3453            </summary>
 3454        </member>
 3455        <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve">
 3456            <summary>
 3457            Resolve the current expression to a Constraint
 3458            </summary>
 3459        </member>
 3460        <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
 3461            <summary>
 3462            Appends an And Operator to the expression
 3463            </summary>
 3464        </member>
 3465        <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or">
 3466            <summary>
 3467            Appends an Or operator to the expression.
 3468            </summary>
 3469        </member>
 3470        <member name="T:NUnit.Framework.Constraints.DelayedConstraint">
 3471            <summary>
 3472             Applies a delay to the match so that a match can be evaluated in the future.
 3473            </summary>
 3474        </member>
 3475        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)">
 3476            <summary>
 3477             Creates a new DelayedConstraint
 3478            </summary>
 3479            <param name="baseConstraint">The inner constraint two decorate</param>
 3480            <param name="delayInMilliseconds">The time interval after which the match is performed</param>
 3481            <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
 3482        </member>
 3483        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)">
 3484            <summary>
 3485             Creates a new DelayedConstraint
 3486            </summary>
 3487            <param name="baseConstraint">The inner constraint two decorate</param>
 3488            <param name="delayInMilliseconds">The time interval after which the match is performed</param>
 3489            <param name="pollingInterval">The time interval used for polling</param>
 3490            <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
 3491        </member>
 3492        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)">
 3493            <summary>
 3494            Test whether the constraint is satisfied by a given value
 3495            </summary>
 3496            <param name="actual">The value to be tested</param>
 3497            <returns>True for if the base constraint fails, false if it succeeds</returns>
 3498        </member>
 3499        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
 3500            <summary>
 3501            Test whether the constraint is satisfied by a delegate
 3502            </summary>
 3503            <param name="del">The delegate whose value is to be tested</param>
 3504            <returns>True for if the base constraint fails, false if it succeeds</returns>
 3505        </member>
 3506        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)">
 3507            <summary>
 3508            Test whether the constraint is satisfied by a given reference.
 3509            Overridden to wait for the specified delay period before
 3510            calling the base constraint with the dereferenced value.
 3511            </summary>
 3512            <param name="actual">A reference to the value to be tested</param>
 3513            <returns>True for success, false for failure</returns>
 3514        </member>
 3515        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 3516            <summary>
 3517            Write the constraint description to a MessageWriter
 3518            </summary>
 3519            <param name="writer">The writer on which the description is displayed</param>
 3520        </member>
 3521        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
 3522            <summary>
 3523            Write the actual value for a failing constraint test to a MessageWriter.
 3524            </summary>
 3525            <param name="writer">The writer on which the actual value is displayed</param>
 3526        </member>
 3527        <member name="M:NUnit.Framework.Constraints.DelayedConstraint.GetStringRepresentation">
 3528            <summary>
 3529            Returns the string representation of the constraint.
 3530            </summary>
 3531        </member>
 3532        <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics">
 3533            <summary>Helper routines for working with floating point numbers</summary>
 3534            <remarks>
 3535              <para>
 3536                The floating point comparison code is based on this excellent article:
 3537                http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
 3538              </para>
 3539              <para>
 3540                "ULP" means Unit in the Last Place and in the context of this library refers to
 3541                the distance between two adjacent floating point numbers. IEEE floating point
 3542                numbers can only represent a finite subset of natural numbers, with greater
 3543                accuracy for smaller numbers and lower accuracy for very large numbers.
 3544              </para>
 3545              <para>
 3546                If a comparison is allowed "2 ulps" of deviation, that means the values are
 3547                allowed to deviate by up to 2 adjacent floating point values, which might be
 3548                as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.
 3549              </para>
 3550            </remarks>
 3551        </member>
 3552        <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)">
 3553            <summary>Compares two floating point values for equality</summary>
 3554            <param name="left">First floating point value to be compared</param>
 3555            <param name="right">Second floating point value t be compared</param>
 3556            <param name="maxUlps">
 3557              Maximum number of representable floating point values that are allowed to
 3558              be between the left and the right floating point values
 3559            </param>
 3560            <returns>True if both numbers are equal or close to being equal</returns>
 3561            <remarks>
 3562              <para>
 3563                Floating point values can only represent a finite subset of natural numbers.
 3564                For example, the values 2.00000000 and 2.00000024 can be stored in a float,
 3565                but nothing inbetween them.
 3566              </para>
 3567              <para>
 3568                This comparison will count how many possible floating point values are between
 3569                the left and the right number. If the number of possible values between both
 3570                numbers is less than or equal to maxUlps, then the numbers are considered as
 3571                being equal.
 3572              </para>
 3573              <para>
 3574                Implementation partially follows the code outlined here:
 3575                http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
 3576              </para>
 3577            </remarks>
 3578        </member>
 3579        <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)">
 3580            <summary>Compares two double precision floating point values for equality</summary>
 3581            <param name="left">First double precision floating point value to be compared</param>
 3582            <param name="right">Second double precision floating point value t be compared</param>
 3583            <param name="maxUlps">
 3584              Maximum number of representable double precision floating point values that are
 3585              allowed to be between the left and the right double precision floating point values
 3586            </param>
 3587            <returns>True if both numbers are equal or close to being equal</returns>
 3588            <remarks>
 3589              <para>
 3590                Double precision floating point values can only represent a limited series of
 3591                natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004
 3592                can be stored in a double, but nothing inbetween them.
 3593              </para>
 3594              <para>
 3595                This comparison will count how many possible double precision floating point
 3596                values are between the left and the right number. If the number of possible
 3597                values between both numbers is less than or equal to maxUlps, then the numbers
 3598                are considered as being equal.
 3599              </para>
 3600              <para>
 3601                Implementation partially follows the code outlined here:
 3602                http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
 3603              </para>
 3604            </remarks>
 3605        </member>
 3606        <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)">
 3607            <summary>
 3608              Reinterprets the memory contents of a floating point value as an integer value
 3609            </summary>
 3610            <param name="value">
 3611              Floating point value whose memory contents to reinterpret
 3612            </param>
 3613            <returns>
 3614              The memory contents of the floating point value interpreted as an integer
 3615            </returns>
 3616        </member>
 3617        <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)">
 3618            <summary>
 3619              Reinterprets the memory contents of a double precision floating point
 3620              value as an integer value
 3621            </summary>
 3622            <param name="value">
 3623              Double precision floating point value whose memory contents to reinterpret
 3624            </param>
 3625            <returns>
 3626              The memory contents of the double precision floating point value
 3627              interpreted as an integer
 3628            </returns>
 3629        </member>
 3630        <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)">
 3631            <summary>
 3632              Reinterprets the memory contents of an integer as a floating point value
 3633            </summary>
 3634            <param name="value">Integer value whose memory contents to reinterpret</param>
 3635            <returns>
 3636              The memory contents of the integer value interpreted as a floating point value
 3637            </returns>
 3638        </member>
 3639        <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)">
 3640            <summary>
 3641              Reinterprets the memory contents of an integer value as a double precision
 3642              floating point value
 3643            </summary>
 3644            <param name="value">Integer whose memory contents to reinterpret</param>
 3645            <returns>
 3646              The memory contents of the integer interpreted as a double precision
 3647              floating point value
 3648            </returns>
 3649        </member>
 3650        <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion">
 3651            <summary>Union of a floating point variable and an integer</summary>
 3652        </member>
 3653        <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float">
 3654            <summary>The union's value as a floating point variable</summary>
 3655        </member>
 3656        <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int">
 3657            <summary>The union's value as an integer</summary>
 3658        </member>
 3659        <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt">
 3660            <summary>The union's value as an unsigned integer</summary>
 3661        </member>
 3662        <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion">
 3663            <summary>Union of a double precision floating point variable and a long</summary>
 3664        </member>
 3665        <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double">
 3666            <summary>The union's value as a double precision floating point variable</summary>
 3667        </member>
 3668        <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long">
 3669            <summary>The union's value as a long</summary>
 3670        </member>
 3671        <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong">
 3672            <summary>The union's value as an unsigned long</summary>
 3673        </member>
 3674        <member name="T:NUnit.Framework.Constraints.ToleranceMode">
 3675            <summary>
 3676            Modes in which the tolerance value for a comparison can
 3677            be interpreted.
 3678            </summary>
 3679        </member>
 3680        <member name="F:NUnit.Framework.Constraints.ToleranceMode.None">
 3681            <summary>
 3682            The tolerance was created with a value, without specifying 
 3683            how the value would be used. This is used to prevent setting
 3684            the mode more than once and is generally changed to Linear
 3685            upon execution of the test.
 3686            </summary>
 3687        </member>
 3688        <member name="F:NUnit.Framework.Constraints.ToleranceMode.Linear">
 3689            <summary>
 3690            The tolerance is used as a numeric range within which
 3691            two compared values are considered to be equal.
 3692            </summary>
 3693        </member>
 3694        <member name="F:NUnit.Framework.Constraints.ToleranceMode.Percent">
 3695            <summary>
 3696            Interprets the tolerance as the percentage by which
 3697            the two compared values my deviate from each other.
 3698            </summary>
 3699        </member>
 3700        <member name="F:NUnit.Framework.Constraints.ToleranceMode.Ulps">
 3701            <summary>
 3702            Compares two values based in their distance in
 3703            representable numbers.
 3704            </summary>
 3705        </member>
 3706        <member name="T:NUnit.Framework.Constraints.Tolerance">
 3707            <summary>
 3708            The Tolerance class generalizes the notion of a tolerance
 3709            within which an equality test succeeds. Normally, it is
 3710            used with numeric types, but it can be used with any
 3711            type that supports taking a difference between two 
 3712            objects and comparing that difference to a value.
 3713            </summary>
 3714        </member>
 3715        <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)">
 3716            <summary>
 3717            Constructs a linear tolerance of a specdified amount
 3718            </summary>
 3719        </member>
 3720        <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)">
 3721            <summary>
 3722            Constructs a tolerance given an amount and ToleranceMode
 3723            </summary>
 3724        </member>
 3725        <member name="M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric">
 3726            <summary>
 3727            Tests that the current Tolerance is linear with a 
 3728            numeric value, throwing an exception if it is not.
 3729            </summary>
 3730        </member>
 3731        <member name="P:NUnit.Framework.Constraints.Tolerance.Empty">
 3732            <summary>
 3733            Returns an empty Tolerance object, equivalent to 
 3734            specifying an exact match.
 3735            </summary>
 3736        </member>
 3737        <member name="P:NUnit.Framework.Constraints.Tolerance.Mode">
 3738            <summary>
 3739            Gets the ToleranceMode for the current Tolerance
 3740            </summary>
 3741        </member>
 3742        <member name="P:NUnit.Framework.Constraints.Tolerance.Value">
 3743            <summary>
 3744            Gets the value of the current Tolerance instance.
 3745            </summary>
 3746        </member>
 3747        <member name="P:NUnit.Framework.Constraints.Tolerance.Percent">
 3748            <summary>
 3749            Returns a new tolerance, using the current amount as a percentage.
 3750            </summary>
 3751        </member>
 3752        <member name="P:NUnit.Framework.Constraints.Tolerance.Ulps">
 3753            <summary>
 3754            Returns a new tolerance, using the current amount in Ulps.
 3755            </summary>
 3756        </member>
 3757        <member name="P:NUnit.Framework.Constraints.Tolerance.Days">
 3758            <summary>
 3759            Returns a new tolerance with a TimeSpan as the amount, using 
 3760            the current amount as a number of days.
 3761            </summary>
 3762        </member>
 3763        <member name="P:NUnit.Framework.Constraints.Tolerance.Hours">
 3764            <summary>
 3765            Returns a new tolerance with a TimeSpan as the amount, using 
 3766            the current amount as a number of hours.
 3767            </summary>
 3768        </member>
 3769        <member name="P:NUnit.Framework.Constraints.Tolerance.Minutes">
 3770            <summary>
 3771            Returns a new tolerance with a TimeSpan as the amount, using 
 3772            the current amount as a number of minutes.
 3773            </summary>
 3774        </member>
 3775        <member name="P:NUnit.Framework.Constraints.Tolerance.Seconds">
 3776            <summary>
 3777            Returns a new tolerance with a TimeSpan as the amount, using 
 3778            the current amount as a number of seconds.
 3779            </summary>
 3780        </member>
 3781        <member name="P:NUnit.Framework.Constraints.Tolerance.Milliseconds">
 3782            <summary>
 3783            Returns a new tolerance with a TimeSpan as the amount, using 
 3784            the current amount as a number of milliseconds.
 3785            </summary>
 3786        </member>
 3787        <member name="P:NUnit.Framework.Constraints.Tolerance.Ticks">
 3788            <summary>
 3789            Returns a new tolerance with a TimeSpan as the amount, using 
 3790            the current amount as a number of clock ticks.
 3791            </summary>
 3792        </member>
 3793        <member name="P:NUnit.Framework.Constraints.Tolerance.IsEmpty">
 3794            <summary>
 3795            Returns true if the current tolerance is empty.
 3796            </summary>
 3797        </member>
 3798        <member name="T:NUnit.Framework.Constraints.ComparisonAdapter">
 3799            <summary>
 3800            ComparisonAdapter class centralizes all comparisons of
 3801            values in NUnit, adapting to the use of any provided
 3802            IComparer, IComparer&lt;T&gt; or Comparison&lt;T&gt;
 3803            </summary>
 3804        </member>
 3805        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)">
 3806            <summary>
 3807            Returns a ComparisonAdapter that wraps an IComparer
 3808            </summary>
 3809        </member>
 3810        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})">
 3811            <summary>
 3812            Returns a ComparisonAdapter that wraps an IComparer&lt;T&gt;
 3813            </summary>
 3814        </member>
 3815        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})">
 3816            <summary>
 3817            Returns a ComparisonAdapter that wraps a Comparison&lt;T&gt;
 3818            </summary>
 3819        </member>
 3820        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)">
 3821            <summary>
 3822            Compares two objects
 3823            </summary>
 3824        </member>
 3825        <member name="P:NUnit.Framework.Constraints.ComparisonAdapter.Default">
 3826            <summary>
 3827            Gets the default ComparisonAdapter, which wraps an
 3828            NUnitComparer object.
 3829            </summary>
 3830        </member>
 3831        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)">
 3832            <summary>
 3833            Construct a ComparisonAdapter for an IComparer
 3834            </summary>
 3835        </member>
 3836        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)">
 3837            <summary>
 3838            Compares two objects
 3839            </summary>
 3840            <param name="expected"></param>
 3841            <param name="actual"></param>
 3842            <returns></returns>
 3843        </member>
 3844        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor">
 3845            <summary>
 3846            Construct a default ComparisonAdapter
 3847            </summary>
 3848        </member>
 3849        <member name="T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1">
 3850            <summary>
 3851            ComparisonAdapter&lt;T&gt; extends ComparisonAdapter and
 3852            allows use of an IComparer&lt;T&gt; or Comparison&lt;T&gt;
 3853            to actually perform the comparison.
 3854            </summary>
 3855        </member>
 3856        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})">
 3857            <summary>
 3858            Construct a ComparisonAdapter for an IComparer&lt;T&gt;
 3859            </summary>
 3860        </member>
 3861        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)">
 3862            <summary>
 3863            Compare a Type T to an object
 3864            </summary>
 3865        </member>
 3866        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})">
 3867            <summary>
 3868            Construct a ComparisonAdapter for a Comparison&lt;T&gt;
 3869            </summary>
 3870        </member>
 3871        <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)">
 3872            <summary>
 3873            Compare a Type T to an object
 3874            </summary>
 3875        </member>
 3876        <member name="T:NUnit.Framework.Constraints.EqualityAdapter">
 3877            <summary>
 3878            EqualityAdapter class handles all equality comparisons
 3879            that use an IEqualityComparer, IEqualityComparer&lt;T&gt;
 3880            or a ComparisonAdapter.
 3881            </summary>
 3882        </member>
 3883        <member name="M:NUnit.Framework.Constraints.EqualityAdapter.ObjectsEqual(System.Object,System.Object)">
 3884            <summary>
 3885            Compares two objects, returning true if they are equal
 3886            </summary>
 3887        </member>
 3888        <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)">
 3889            <summary>
 3890            Returns an EqualityAdapter that wraps an IComparer.
 3891            </summary>
 3892        </member>
 3893        <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)">
 3894            <summary>
 3895            Returns an EqualityAdapter that wraps an IEqualityComparer.
 3896            </summary>
 3897        </member>
 3898        <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})">
 3899            <summary>
 3900            Returns an EqualityAdapter that wraps an IEqualityComparer&lt;T&gt;.
 3901            </summary>
 3902        </member>
 3903        <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})">
 3904            <summary>
 3905            Returns an EqualityAdapter that wraps an IComparer&lt;T&gt;.
 3906            </summary>
 3907        </member>
 3908        <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})">
 3909            <summary>
 3910            Returns an EqualityAdapter that wraps a Comparison&lt;T&gt;.
 3911            </summary>
 3912        </member>
 3913        <member name="T:NUnit.Framework.Constraints.NUnitComparer">
 3914            <summary>
 3915            NUnitComparer encapsulates NUnit's default behavior
 3916            in comparing two objects.
 3917            </summary>
 3918        </member>
 3919        <member name="M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)">
 3920            <summary>
 3921            Compares two objects
 3922            </summary>
 3923            <param name="x"></param>
 3924            <param name="y"></param>
 3925            <returns></returns>
 3926        </member>
 3927        <member name="P:NUnit.Framework.Constraints.NUnitComparer.Default">
 3928            <summary>
 3929            Returns the default NUnitComparer.
 3930            </summary>
 3931        </member>
 3932        <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer">
 3933            <summary>
 3934            NUnitEqualityComparer encapsulates NUnit's handling of
 3935            equality tests between objects.
 3936            </summary>
 3937        </member>
 3938        <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive">
 3939            <summary>
 3940            If true, all string comparisons will ignore case
 3941            </summary>
 3942        </member>
 3943        <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection">
 3944            <summary>
 3945            If true, arrays will be treated as collections, allowing
 3946            those of different dimensions to be compared
 3947            </summary>
 3948        </member>
 3949        <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.tolerance">
 3950            <summary>
 3951            If non-zero, equality comparisons within the specified 
 3952            tolerance will succeed.
 3953            </summary>
 3954        </member>
 3955        <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparer">
 3956            <summary>
 3957            Comparison object used in comparisons for some constraints.
 3958            </summary>
 3959        </member>
 3960        <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ObjectsEqual(System.Object,System.Object)">
 3961            <summary>
 3962            Compares two objects for equality.
 3963            </summary>
 3964        </member>
 3965        <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array)">
 3966            <summary>
 3967            Helper method to compare two arrays
 3968            </summary>
 3969        </member>
 3970        <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 3971            <summary>
 3972            Method to compare two DirectoryInfo objects
 3973            </summary>
 3974            <param name="x">first directory to compare</param>
 3975            <param name="y">second directory to compare</param>
 3976            <returns>true if equivalent, false if not</returns>
 3977        </member>
 3978        <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default">
 3979            <summary>
 3980            Returns the default NUnitEqualityComparer
 3981            </summary>
 3982        </member>
 3983        <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase">
 3984            <summary>
 3985            Gets and sets a flag indicating whether case should
 3986            be ignored in determining equality.
 3987            </summary>
 3988        </member>
 3989        <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection">
 3990            <summary>
 3991            Gets and sets a flag indicating that arrays should be
 3992            compared as collections, without regard to their shape.
 3993            </summary>
 3994        </member>
 3995        <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparer">
 3996            <summary>
 3997            Gets and sets an external comparer to be used to
 3998            test for equality. It is applied to members of
 3999            collections, in place of NUnit's own logic.
 4000            </summary>
 4001        </member>
 4002        <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Tolerance">
 4003            <summary>
 4004            Gets and sets a tolerance used to compare objects of 
 4005            certin types.
 4006            </summary>
 4007        </member>
 4008        <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints">
 4009            <summary>
 4010            Gets the list of failure points for the last Match performed.
 4011            </summary>
 4012        </member>
 4013        <member name="T:NUnit.Framework.Constraints.PredicateConstraint`1">
 4014            <summary>
 4015            Predicate constraint wraps a Predicate in a constraint,
 4016            returning success if the predicate is true.
 4017            </summary>
 4018        </member>
 4019        <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
 4020            <summary>
 4021            Construct a PredicateConstraint from a predicate
 4022            </summary>
 4023        </member>
 4024        <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)">
 4025            <summary>
 4026            Determines whether the predicate succeeds when applied
 4027            to the actual value.
 4028            </summary>
 4029        </member>
 4030        <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
 4031            <summary>
 4032            Writes the description to a MessageWriter
 4033            </summary>
 4034        </member>
 4035        <member name="T:NUnit.Framework.Constraints.CollectionTally">
 4036            <summary>
 4037            CollectionTally counts (tallies) the number of
 4038            occurences of each object in one or more enumerations.
 4039            </summary>
 4040        </member>
 4041        <member name="M:NUnit.Framework.Constraints.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)">
 4042            <summary>
 4043            Construct a CollectionTally object from a comparer and a collection
 4044            </summary>
 4045        </member>
 4046        <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Object)">
 4047            <summary>
 4048            Try to remove an object from the tally
 4049            </summary>
 4050            <param name="o">The object to remove</param>
 4051            <returns>True if successful, false if the object was not found</returns>
 4052        </member>
 4053        <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Collections.IEnumerable)">
 4054            <summary>
 4055            Try to remove a set of objects from the tally
 4056            </summary>
 4057            <param name="c">The objects to remove</param>
 4058            <returns>True if successful, false if any object was not found</returns>
 4059        </member>
 4060        <member name="P:NUnit.Framework.Constraints.CollectionTally.Count">
 4061            <summary>
 4062            The number of objects remaining in the tally
 4063            </summary>
 4064        </member>
 4065        <member name="T:NUnit.Framework.SetUpFixtureAttribute">
 4066            <summary>
 4067            SetUpFixtureAttribute is used to identify a SetUpFixture
 4068            </summary>
 4069        </member>
 4070        <member name="T:NUnit.Framework.StringAssert">
 4071            <summary>
 4072            Basic Asserts on strings.
 4073            </summary>
 4074        </member>
 4075        <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
 4076            <summary>
 4077            The Equals method throws an AssertionException. This is done 
 4078            to make sure there is no mistake by calling this function.
 4079            </summary>
 4080            <param name="a"></param>
 4081            <param name="b"></param>
 4082        </member>
 4083        <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
 4084            <summary>
 4085            override the default ReferenceEquals to throw an AssertionException. This 
 4086            implementation makes sure there is no mistake in calling this function 
 4087            as part of Assert. 
 4088            </summary>
 4089            <param name="a"></param>
 4090            <param name="b"></param>
 4091        </member>
 4092        <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
 4093            <summary>
 4094            Asserts that a string is found within another string.
 4095            </summary>
 4096            <param name="expected">The expected string</param>
 4097            <param name="actual">The string to be examined</param>
 4098            <param name="message">The message to display in case of failure</param>
 4099            <param name="args">Arguments used in formatting the message</param>
 4100        </member>
 4101        <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
 4102            <summary>
 4103            Asserts that a string is found within another string.
 4104            </summary>
 4105            <param name="expected">The expected string</param>
 4106            <param name="actual">The string to be examined</param>
 4107            <param name="message">The message to display in case of failure</param>
 4108        </member>
 4109        <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
 4110            <summary>
 4111            Asserts that a string is found within another string.
 4112            </summary>
 4113            <param name="expected">The expected string</param>
 4114            <param name="actual">The string to be examined</param>
 4115        </member>
 4116        <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
 4117            <summary>
 4118            Asserts that a string is not found within another string.
 4119            </summary>
 4120            <param name="expected">The expected string</param>
 4121            <param name="actual">The string to be examined</param>
 4122            <param name="message">The message to display in case of failure</param>
 4123            <param name="args">Arguments used in formatting the message</param>
 4124        </member>
 4125        <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)">
 4126            <summary>
 4127            Asserts that a string is found within another string.
 4128            </summary>
 4129            <param name="expected">The expected string</param>
 4130            <param name="actual">The string to be examined</param>
 4131            <param name="message">The message to display in case of failure</param>
 4132        </member>
 4133        <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)">
 4134            <summary>
 4135            Asserts that a string is found within another string.
 4136            </summary>
 4137            <param name="expected">The expected string</param>
 4138            <param name="actual">The string to be examined</param>
 4139        </member>
 4140        <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
 4141            <summary>
 4142            Asserts that a string starts with another string.
 4143            </summary>
 4144            <param name="expected">The expected string</param>
 4145            <param name="actual">The string to be examined</param>
 4146            <param name="message">The message to display in case of failure</param>
 4147            <param name="args">Arguments used in formatting the message</param>
 4148        </member>
 4149        <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
 4150            <summary>
 4151            Asserts that a string starts with another string.
 4152            </summary>
 4153            <param name="expected">The expected string</param>
 4154            <param name="actual">The string to be examined</param>
 4155            <param name="message">The message to display in case of failure</param>
 4156        </member>
 4157        <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
 4158            <summary>
 4159            Asserts that a string starts with another string.
 4160            </summary>
 4161            <param name="expected">The expected string</param>
 4162            <param name="actual">The string to be examined</param>
 4163        </member>
 4164        <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])">
 4165            <summary>
 4166            Asserts that a string does not start with another string.
 4167            </summary>
 4168            <param name="expected">The expected string</param>
 4169            <param name="actual">The string to be examined</param>
 4170            <param name="message">The message to display in case of failure</param>
 4171            <param name="args">Arguments used in formatting the message</param>
 4172        </member>
 4173        <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)">
 4174            <summary>
 4175            Asserts that a string does not start with another string.
 4176            </summary>
 4177            <param name="expected">The expected string</param>
 4178            <param name="actual">The string to be examined</param>
 4179            <param name="message">The message to display in case of failure</param>
 4180        </member>
 4181        <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)">
 4182            <summary>
 4183            Asserts that a string does not start with another string.
 4184            </summary>
 4185            <param name="expected">The expected string</param>
 4186            <param name="actual">The string to be examined</param>
 4187        </member>
 4188        <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
 4189            <summary>
 4190            Asserts that a string ends with another string.
 4191            </summary>
 4192            <param name="expected">The expected string</param>
 4193            <param name="actual">The string to be examined</param>
 4194            <param name="message">The message to display in case of failure</param>
 4195            <param name="args">Arguments used in formatting the message</param>
 4196        </member>
 4197        <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
 4198            <summary>
 4199            Asserts that a string ends with another string.
 4200            </summary>
 4201            <param name="expected">The expected string</param>
 4202            <param name="actual">The string to be examined</param>
 4203            <param name="message">The message to display in case of failure</param>
 4204        </member>
 4205        <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
 4206            <summary>
 4207            Asserts that a string ends with another string.
 4208            </summary>
 4209            <param name="expected">The expected string</param>
 4210            <param name="actual">The string to be examined</param>
 4211        </member>
 4212        <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])">
 4213            <summary>
 4214            Asserts that a string does not end with another string.
 4215            </summary>
 4216            <param name="expected">The expected string</param>
 4217            <param name="actual">The string to be examined</param>
 4218            <param name="message">The message to display in case of failure</param>
 4219            <param name="args">Arguments used in formatting the message</param>
 4220        </member>
 4221        <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)">
 4222            <summary>
 4223            Asserts that a string does not end with another string.
 4224            </summary>
 4225            <param name="expected">The expected string</param>
 4226            <param name="actual">The string to be examined</param>
 4227            <param name="message">The message to display in case of failure</param>
 4228        </member>
 4229        <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)">
 4230            <summary>
 4231            Asserts that a string does not end with another string.
 4232            </summary>
 4233            <param name="expected">The expected string</param>
 4234            <param name="actual">The string to be examined</param>
 4235        </member>
 4236        <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
 4237            <summary>
 4238            Asserts that two strings are equal, without regard to case.
 4239            </summary>
 4240            <param name="expected">The expected string</param>
 4241            <param name="actual">The actual string</param>
 4242            <param name="message">The message to display in case of failure</param>
 4243            <param name="args">Arguments used in formatting the message</param>
 4244        </member>
 4245        <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
 4246            <summary>
 4247            Asserts that two strings are equal, without regard to case.
 4248            </summary>
 4249            <param name="expected">The expected string</param>
 4250            <param name="actual">The actual string</param>
 4251            <param name="message">The message to display in case of failure</param>
 4252        </member>
 4253        <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
 4254            <summary>
 4255            Asserts that two strings are equal, without regard to case.
 4256            </summary>
 4257            <param name="expected">The expected string</param>
 4258            <param name="actual">The actual string</param>
 4259        </member>
 4260        <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
 4261            <summary>
 4262            Asserts that two strings are not equal, without regard to case.
 4263            </summary>
 4264            <param name="expected">The expected string</param>
 4265            <param name="actual">The actual string</param>
 4266            <param name="message">The message to display in case of failure</param>
 4267            <param name="args">Arguments used in formatting the message</param>
 4268        </member>
 4269        <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)">
 4270            <summary>
 4271            Asserts that two strings are Notequal, without regard to case.
 4272            </summary>
 4273            <param name="expected">The expected string</param>
 4274            <param name="actual">The actual string</param>
 4275            <param name="message">The message to display in case of failure</param>
 4276        </member>
 4277        <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)">
 4278            <summary>
 4279            Asserts that two strings are not equal, without regard to case.
 4280            </summary>
 4281            <param name="expected">The expected string</param>
 4282            <param name="actual">The actual string</param>
 4283        </member>
 4284        <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
 4285            <summary>
 4286            Asserts that a string matches an expected regular expression pattern.
 4287            </summary>
 4288            <param name="pattern">The regex pattern to be matched</param>
 4289            <param name="actual">The actual string</param>
 4290            <param name="message">The message to display in case of failure</param>
 4291            <param name="args">Arguments used in formatting the message</param>
 4292        </member>
 4293        <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
 4294            <summary>
 4295            Asserts that a string matches an expected regular expression pattern.
 4296            </summary>
 4297            <param name="pattern">The regex pattern to be matched</param>
 4298            <param name="actual">The actual string</param>
 4299            <param name="message">The message to display in case of failure</param>
 4300        </member>
 4301        <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
 4302            <summary>
 4303            Asserts that a string matches an expected regular expression pattern.
 4304            </summary>
 4305            <param name="pattern">The regex pattern to be matched</param>
 4306            <param name="actual">The actual string</param>
 4307        </member>
 4308        <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])">
 4309            <summary>
 4310            Asserts that a string does not match an expected regular expression pattern.
 4311            </summary>
 4312            <param name="pattern">The regex pattern to be used</param>
 4313            <param name="actual">The actual string</param>
 4314            <param name="message">The message to display in case of failure</param>
 4315            <param name="args">Arguments used in formatting the message</param>
 4316        </member>
 4317        <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)">
 4318            <summary>
 4319            Asserts that a string does not match an expected regular expression pattern.
 4320            </summary>
 4321            <param name="pattern">The regex pattern to be used</param>
 4322            <param name="actual">The actual string</param>
 4323            <param name="message">The message to display in case of failure</param>
 4324        </member>
 4325        <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)">
 4326            <summary>
 4327            Asserts that a string does not match an expected regular expression pattern.
 4328            </summary>
 4329            <param name="pattern">The regex pattern to be used</param>
 4330            <param name="actual">The actual string</param>
 4331        </member>
 4332        <member name="T:NUnit.Framework.PropertyAttribute">
 4333            <summary>
 4334            PropertyAttribute is used to attach information to a test as a name/value pair..
 4335            </summary>
 4336        </member>
 4337        <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
 4338            <summary>
 4339            Construct a PropertyAttribute with a name and string value
 4340            </summary>
 4341            <param name="propertyName">The name of the property</param>
 4342            <param name="propertyValue">The property value</param>
 4343        </member>
 4344        <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
 4345            <summary>
 4346            Construct a PropertyAttribute with a name and int value
 4347            </summary>
 4348            <param name="propertyName">The name of the property</param>
 4349            <param name="propertyValue">The property value</param>
 4350        </member>
 4351        <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
 4352            <summary>
 4353            Construct a PropertyAttribute with a name and double value
 4354            </summary>
 4355            <param name="propertyName">The name of the property</param>
 4356            <param name="propertyValue">The property value</param>
 4357        </member>
 4358        <member name="M:NUnit.Framework.PropertyAttribute.#ctor">
 4359            <summary>
 4360            Constructor for derived classes that set the
 4361            property dictionary directly.
 4362            </summary>
 4363        </member>
 4364        <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
 4365            <summary>
 4366            Constructor for use by derived classes that use the
 4367            name of the type as the property name. Derived classes
 4368            must ensure that the Type of the property value is
 4369            a standard type supported by the BCL. Any custom
 4370            types will cause a serialization Exception when
 4371            in the client.
 4372            </summary>
 4373        </member>
 4374        <member name="P:NUnit.Framework.PropertyAttribute.Properties">
 4375            <summary>
 4376            Gets the property dictionary for this attribute
 4377            </summary>
 4378        </member>
 4379        <member name="T:NUnit.Framework.CollectionAssert">
 4380            <summary>
 4381            A set of Assert methods operationg on one or more collections
 4382            </summary>
 4383        </member>
 4384        <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
 4385            <summary>
 4386            The Equals method throws an AssertionException. This is done 
 4387            to make sure there is no mistake by calling this function.
 4388            </summary>
 4389            <param name="a"></param>
 4390            <param name="b"></param>
 4391        </member>
 4392        <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
 4393            <summary>
 4394            override the default ReferenceEquals to throw an AssertionException. This 
 4395            implementation makes sure there is no mistake in calling this function 
 4396            as part of Assert. 
 4397            </summary>
 4398            <param name="a"></param>
 4399            <param name="b"></param>
 4400        </member>
 4401        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
 4402            <summary>
 4403            Asserts that all items contained in collection are of the type specified by expectedType.
 4404            </summary>
 4405            <param name="collection">IEnumerable containing objects to be considered</param>
 4406            <param name="expectedType">System.Type that all objects in collection must be instances of</param>
 4407        </member>
 4408        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
 4409            <summary>
 4410            Asserts that all items contained in collection are of the type specified by expectedType.
 4411            </summary>
 4412            <param name="collection">IEnumerable containing objects to be considered</param>
 4413            <param name="expectedType">System.Type that all objects in collection must be instances of</param>
 4414            <param name="message">The message that will be displayed on failure</param>
 4415        </member>
 4416        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
 4417            <summary>
 4418            Asserts that all items contained in collection are of the type specified by expectedType.
 4419            </summary>
 4420            <param name="collection">IEnumerable containing objects to be considered</param>
 4421            <param name="expectedType">System.Type that all objects in collection must be instances of</param>
 4422            <param name="message">The message that will be displayed on failure</param>
 4423            <param name="args">Arguments to be used in formatting the message</param>
 4424        </member>
 4425        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)">
 4426            <summary>
 4427            Asserts that all items contained in collection are not equal to null.
 4428            </summary>
 4429            <param name="collection">IEnumerable containing objects to be considered</param>
 4430        </member>
 4431        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
 4432            <summary>
 4433            Asserts that all items contained in collection are not equal to null.
 4434            </summary>
 4435            <param name="collection">IEnumerable containing objects to be considered</param>
 4436            <param name="message">The message that will be displayed on failure</param>
 4437        </member>
 4438        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
 4439            <summary>
 4440            Asserts that all items contained in collection are not equal to null.
 4441            </summary>
 4442            <param name="collection">IEnumerable of objects to be considered</param>
 4443            <param name="message">The message that will be displayed on failure</param>
 4444            <param name="args">Arguments to be used in formatting the message</param>
 4445        </member>
 4446        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)">
 4447            <summary>
 4448            Ensures that every object contained in collection exists within the collection
 4449            once and only once.
 4450            </summary>
 4451            <param name="collection">IEnumerable of objects to be considered</param>
 4452        </member>
 4453        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
 4454            <summary>
 4455            Ensures that every object contained in collection exists within the collection
 4456            once and only once.
 4457            </summary>
 4458            <param name="collection">IEnumerable of objects to be considered</param>
 4459            <param name="message">The message that will be displayed on failure</param>
 4460        </member>
 4461        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
 4462            <summary>
 4463            Ensures that every object contained in collection exists within the collection
 4464            once and only once.
 4465            </summary>
 4466            <param name="collection">IEnumerable of objects to be considered</param>
 4467            <param name="message">The message that will be displayed on failure</param>
 4468            <param name="args">Arguments to be used in formatting the message</param>
 4469        </member>
 4470        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
 4471            <summary>
 4472            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 4473            and contain the exact same objects in the same order.
 4474            </summary>
 4475            <param name="expected">The first IEnumerable of objects to be considered</param>
 4476            <param name="actual">The second IEnumerable of objects to be considered</param>
 4477        </member>
 4478        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
 4479            <summary>
 4480            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 4481            and contain the exact same objects in the same order.
 4482            If comparer is not null then it will be used to compare the objects.
 4483            </summary>
 4484            <param name="expected">The first IEnumerable of objects to be considered</param>
 4485            <param name="actual">The second IEnumerable of objects to be considered</param>
 4486            <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
 4487        </member>
 4488        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
 4489            <summary>
 4490            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 4491            and contain the exact same objects in the same order.
 4492            </summary>
 4493            <param name="expected">The first IEnumerable of objects to be considered</param>
 4494            <param name="actual">The second IEnumerable of objects to be considered</param>
 4495            <param name="message">The message that will be displayed on failure</param>
 4496        </member>
 4497        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
 4498            <summary>
 4499            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 4500            and contain the exact same objects in the same order.
 4501            If comparer is not null then it will be used to compare the objects.
 4502            </summary>
 4503            <param name="expected">The first IEnumerable of objects to be considered</param>
 4504            <param name="actual">The second IEnumerable of objects to be considered</param>
 4505            <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
 4506            <param name="message">The message that will be displayed on failure</param>
 4507        </member>
 4508        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
 4509            <summary>
 4510            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 4511            and contain the exact same objects in the same order.
 4512            </summary>
 4513            <param name="expected">The first IEnumerable of objects to be considered</param>
 4514            <param name="actual">The second IEnumerable of objects to be considered</param>
 4515            <param name="message">The message that will be displayed on failure</param>
 4516            <param name="args">Arguments to be used in formatting the message</param>
 4517        </member>
 4518        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
 4519            <summary>
 4520            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 4521            and contain the exact same objects in the same order.
 4522            If comparer is not null then it will be used to compare the objects.
 4523            </summary>
 4524            <param name="expected">The first IEnumerable of objects to be considered</param>
 4525            <param name="actual">The second IEnumerable of objects to be considered</param>
 4526            <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
 4527            <param name="message">The message that will be displayed on failure</param>
 4528            <param name="args">Arguments to be used in formatting the message</param>
 4529        </member>
 4530        <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
 4531            <summary>
 4532            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
 4533            </summary>
 4534            <param name="expected">The first IEnumerable of objects to be considered</param>
 4535            <param name="actual">The second IEnumerable of objects to be considered</param>
 4536        </member>
 4537        <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
 4538            <summary>
 4539            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
 4540            </summary>
 4541            <param name="expected">The first IEnumerable of objects to be considered</param>
 4542            <param name="actual">The second IEnumerable of objects to be considered</param>
 4543            <param name="message">The message that will be displayed on failure</param>
 4544        </member>
 4545        <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
 4546            <summary>
 4547            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
 4548            </summary>
 4549            <param name="expected">The first IEnumerable of objects to be considered</param>
 4550            <param name="actual">The second IEnumerable of objects to be considered</param>
 4551            <param name="message">The message that will be displayed on failure</param>
 4552            <param name="args">Arguments to be used in formatting the message</param>
 4553        </member>
 4554        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
 4555            <summary>
 4556            Asserts that expected and actual are not exactly equal.
 4557            </summary>
 4558            <param name="expected">The first IEnumerable of objects to be considered</param>
 4559            <param name="actual">The second IEnumerable of objects to be considered</param>
 4560        </member>
 4561        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
 4562            <summary>
 4563            Asserts that expected and actual are not exactly equal.
 4564            If comparer is not null then it will be used to compare the objects.
 4565            </summary>
 4566            <param name="expected">The first IEnumerable of objects to be considered</param>
 4567            <param name="actual">The second IEnumerable of objects to be considered</param>
 4568            <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
 4569        </member>
 4570        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
 4571            <summary>
 4572            Asserts that expected and actual are not exactly equal.
 4573            </summary>
 4574            <param name="expected">The first IEnumerable of objects to be considered</param>
 4575            <param name="actual">The second IEnumerable of objects to be considered</param>
 4576            <param name="message">The message that will be displayed on failure</param>
 4577        </member>
 4578        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
 4579            <summary>
 4580            Asserts that expected and actual are not exactly equal.
 4581            If comparer is not null then it will be used to compare the objects.
 4582            </summary>
 4583            <param name="expected">The first IEnumerable of objects to be considered</param>
 4584            <param name="actual">The second IEnumerable of objects to be considered</param>
 4585            <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
 4586            <param name="message">The message that will be displayed on failure</param>
 4587        </member>
 4588        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
 4589            <summary>
 4590            Asserts that expected and actual are not exactly equal.
 4591            </summary>
 4592            <param name="expected">The first IEnumerable of objects to be considered</param>
 4593            <param name="actual">The second IEnumerable of objects to be considered</param>
 4594            <param name="message">The message that will be displayed on failure</param>
 4595            <param name="args">Arguments to be used in formatting the message</param>
 4596        </member>
 4597        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
 4598            <summary>
 4599            Asserts that expected and actual are not exactly equal.
 4600            If comparer is not null then it will be used to compare the objects.
 4601            </summary>
 4602            <param name="expected">The first IEnumerable of objects to be considered</param>
 4603            <param name="actual">The second IEnumerable of objects to be considered</param>
 4604            <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
 4605            <param name="message">The message that will be displayed on failure</param>
 4606            <param name="args">Arguments to be used in formatting the message</param>
 4607        </member>
 4608        <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
 4609            <summary>
 4610            Asserts that expected and actual are not equivalent.
 4611            </summary>
 4612            <param name="expected">The first IEnumerable of objects to be considered</param>
 4613            <param name="actual">The second IEnumerable of objects to be considered</param>
 4614        </member>
 4615        <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
 4616            <summary>
 4617            Asserts that expected and actual are not equivalent.
 4618            </summary>
 4619            <param name="expected">The first IEnumerable of objects to be considered</param>
 4620            <param name="actual">The second IEnumerable of objects to be considered</param>
 4621            <param name="message">The message that will be displayed on failure</param>
 4622        </member>
 4623        <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
 4624            <summary>
 4625            Asserts that expected and actual are not equivalent.
 4626            </summary>
 4627            <param name="expected">The first IEnumerable of objects to be considered</param>
 4628            <param name="actual">The second IEnumerable of objects to be considered</param>
 4629            <param name="message">The message that will be displayed on failure</param>
 4630            <param name="args">Arguments to be used in formatting the message</param>
 4631        </member>
 4632        <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)">
 4633            <summary>
 4634            Asserts that collection contains actual as an item.
 4635            </summary>
 4636            <param name="collection">IEnumerable of objects to be considered</param>
 4637            <param name="actual">Object to be found within collection</param>
 4638        </member>
 4639        <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
 4640            <summary>
 4641            Asserts that collection contains actual as an item.
 4642            </summary>
 4643            <param name="collection">IEnumerable of objects to be considered</param>
 4644            <param name="actual">Object to be found within collection</param>
 4645            <param name="message">The message that will be displayed on failure</param>
 4646        </member>
 4647        <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
 4648            <summary>
 4649            Asserts that collection contains actual as an item.
 4650            </summary>
 4651            <param name="collection">IEnumerable of objects to be considered</param>
 4652            <param name="actual">Object to be found within collection</param>
 4653            <param name="message">The message that will be displayed on failure</param>
 4654            <param name="args">Arguments to be used in formatting the message</param>
 4655        </member>
 4656        <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)">
 4657            <summary>
 4658            Asserts that collection does not contain actual as an item.
 4659            </summary>
 4660            <param name="collection">IEnumerable of objects to be considered</param>
 4661            <param name="actual">Object that cannot exist within collection</param>
 4662        </member>
 4663        <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
 4664            <summary>
 4665            Asserts that collection does not contain actual as an item.
 4666            </summary>
 4667            <param name="collection">IEnumerable of objects to be considered</param>
 4668            <param name="actual">Object that cannot exist within collection</param>
 4669            <param name="message">The message that will be displayed on failure</param>
 4670        </member>
 4671        <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
 4672            <summary>
 4673            Asserts that collection does not contain actual as an item.
 4674            </summary>
 4675            <param name="collection">IEnumerable of objects to be considered</param>
 4676            <param name="actual">Object that cannot exist within collection</param>
 4677            <param name="message">The message that will be displayed on failure</param>
 4678            <param name="args">Arguments to be used in formatting the message</param>
 4679        </member>
 4680        <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
 4681            <summary>
 4682            Asserts that superset is not a subject of subset.
 4683            </summary>
 4684            <param name="subset">The IEnumerable superset to be considered</param>
 4685            <param name="superset">The IEnumerable subset to be considered</param>
 4686        </member>
 4687        <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
 4688            <summary>
 4689            Asserts that superset is not a subject of subset.
 4690            </summary>
 4691            <param name="subset">The IEnumerable superset to be considered</param>
 4692            <param name="superset">The IEnumerable subset to be considered</param>
 4693            <param name="message">The message that will be displayed on failure</param>
 4694        </member>
 4695        <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
 4696            <summary>
 4697            Asserts that superset is not a subject of subset.
 4698            </summary>
 4699            <param name="subset">The IEnumerable superset to be considered</param>
 4700            <param name="superset">The IEnumerable subset to be considered</param>
 4701            <param name="message">The message that will be displayed on failure</param>
 4702            <param name="args">Arguments to be used in formatting the message</param>
 4703        </member>
 4704        <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
 4705            <summary>
 4706            Asserts that superset is a subset of subset.
 4707            </summary>
 4708            <param name="subset">The IEnumerable superset to be considered</param>
 4709            <param name="superset">The IEnumerable subset to be considered</param>
 4710        </member>
 4711        <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
 4712            <summary>
 4713            Asserts that superset is a subset of subset.
 4714            </summary>
 4715            <param name="subset">The IEnumerable superset to be considered</param>
 4716            <param name="superset">The IEnumerable subset to be considered</param>
 4717            <param name="message">The message that will be displayed on failure</param>
 4718        </member>
 4719        <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
 4720            <summary>
 4721            Asserts that superset is a subset of subset.
 4722            </summary>
 4723            <param name="subset">The IEnumerable superset to be considered</param>
 4724            <param name="superset">The IEnumerable subset to be considered</param>
 4725            <param name="message">The message that will be displayed on failure</param>
 4726            <param name="args">Arguments to be used in formatting the message</param>
 4727        </member>
 4728        <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
 4729            <summary>
 4730            Assert that an array, list or other collection is empty
 4731            </summary>
 4732            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4733            <param name="message">The message to be displayed on failure</param>
 4734            <param name="args">Arguments to be used in formatting the message</param>
 4735        </member>
 4736        <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
 4737            <summary>
 4738            Assert that an array, list or other collection is empty
 4739            </summary>
 4740            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4741            <param name="message">The message to be displayed on failure</param>
 4742        </member>
 4743        <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
 4744            <summary>
 4745            Assert that an array,list or other collection is empty
 4746            </summary>
 4747            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4748        </member>
 4749        <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
 4750            <summary>
 4751            Assert that an array, list or other collection is empty
 4752            </summary>
 4753            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4754            <param name="message">The message to be displayed on failure</param>
 4755            <param name="args">Arguments to be used in formatting the message</param>
 4756        </member>
 4757        <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
 4758            <summary>
 4759            Assert that an array, list or other collection is empty
 4760            </summary>
 4761            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4762            <param name="message">The message to be displayed on failure</param>
 4763        </member>
 4764        <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
 4765            <summary>
 4766            Assert that an array,list or other collection is empty
 4767            </summary>
 4768            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4769        </member>
 4770        <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])">
 4771            <summary>
 4772            Assert that an array, list or other collection is ordered
 4773            </summary>
 4774            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4775            <param name="message">The message to be displayed on failure</param>
 4776            <param name="args">Arguments to be used in formatting the message</param>
 4777        </member>
 4778        <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)">
 4779            <summary>
 4780            Assert that an array, list or other collection is ordered
 4781            </summary>
 4782            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4783            <param name="message">The message to be displayed on failure</param>
 4784        </member>
 4785        <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)">
 4786            <summary>
 4787            Assert that an array, list or other collection is ordered
 4788            </summary>
 4789            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4790        </member>
 4791        <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
 4792            <summary>
 4793            Assert that an array, list or other collection is ordered
 4794            </summary>
 4795            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4796            <param name="comparer">A custom comparer to perform the comparisons</param>
 4797            <param name="message">The message to be displayed on failure</param>
 4798            <param name="args">Arguments to be used in formatting the message</param>
 4799        </member>
 4800        <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
 4801            <summary>
 4802            Assert that an array, list or other collection is ordered
 4803            </summary>
 4804            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4805            <param name="comparer">A custom comparer to perform the comparisons</param>
 4806            <param name="message">The message to be displayed on failure</param>
 4807        </member>
 4808        <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)">
 4809            <summary>
 4810            Assert that an array, list or other collection is ordered
 4811            </summary>
 4812            <param name="collection">An array, list or other collection implementing IEnumerable</param>
 4813            <param name="comparer">A custom comparer to perform the comparisons</param>
 4814        </member>
 4815        <member name="T:NUnit.Framework.FileAssert">
 4816            <summary>
 4817            Summary description for FileAssert.
 4818            </summary>
 4819        </member>
 4820        <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
 4821            <summary>
 4822            The Equals method throws an AssertionException. This is done 
 4823            to make sure there is no mistake by calling this function.
 4824            </summary>
 4825            <param name="a"></param>
 4826            <param name="b"></param>
 4827        </member>
 4828        <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
 4829            <summary>
 4830            override the default ReferenceEquals to throw an AssertionException. This 
 4831            implementation makes sure there is no mistake in calling this function 
 4832            as part of Assert. 
 4833            </summary>
 4834            <param name="a"></param>
 4835            <param name="b"></param>
 4836        </member>
 4837        <member name="M:NUnit.Framework.FileAssert.#ctor">
 4838            <summary>
 4839            We don't actually want any instances of this object, but some people
 4840            like to inherit from it to add other static methods. Hence, the
 4841            protected constructor disallows any instances of this object. 
 4842            </summary>
 4843        </member>
 4844        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
 4845            <summary>
 4846            Verifies that two Streams are equal.  Two Streams are considered
 4847            equal if both are null, or if both have the same value byte for byte.
 4848            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4849            </summary>
 4850            <param name="expected">The expected Stream</param>
 4851            <param name="actual">The actual Stream</param>
 4852            <param name="message">The message to display if Streams are not equal</param>
 4853            <param name="args">Arguments to be used in formatting the message</param>
 4854        </member>
 4855        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
 4856            <summary>
 4857            Verifies that two Streams are equal.  Two Streams are considered
 4858            equal if both are null, or if both have the same value byte for byte.
 4859            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4860            </summary>
 4861            <param name="expected">The expected Stream</param>
 4862            <param name="actual">The actual Stream</param>
 4863            <param name="message">The message to display if objects are not equal</param>
 4864        </member>
 4865        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
 4866            <summary>
 4867            Verifies that two Streams are equal.  Two Streams are considered
 4868            equal if both are null, or if both have the same value byte for byte.
 4869            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4870            </summary>
 4871            <param name="expected">The expected Stream</param>
 4872            <param name="actual">The actual Stream</param>
 4873        </member>
 4874        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
 4875            <summary>
 4876            Verifies that two files are equal.  Two files are considered
 4877            equal if both are null, or if both have the same value byte for byte.
 4878            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4879            </summary>
 4880            <param name="expected">A file containing the value that is expected</param>
 4881            <param name="actual">A file containing the actual value</param>
 4882            <param name="message">The message to display if Streams are not equal</param>
 4883            <param name="args">Arguments to be used in formatting the message</param>
 4884        </member>
 4885        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
 4886            <summary>
 4887            Verifies that two files are equal.  Two files are considered
 4888            equal if both are null, or if both have the same value byte for byte.
 4889            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4890            </summary>
 4891            <param name="expected">A file containing the value that is expected</param>
 4892            <param name="actual">A file containing the actual value</param>
 4893            <param name="message">The message to display if objects are not equal</param>
 4894        </member>
 4895        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
 4896            <summary>
 4897            Verifies that two files are equal.  Two files are considered
 4898            equal if both are null, or if both have the same value byte for byte.
 4899            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4900            </summary>
 4901            <param name="expected">A file containing the value that is expected</param>
 4902            <param name="actual">A file containing the actual value</param>
 4903        </member>
 4904        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
 4905            <summary>
 4906            Verifies that two files are equal.  Two files are considered
 4907            equal if both are null, or if both have the same value byte for byte.
 4908            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4909            </summary>
 4910            <param name="expected">The path to a file containing the value that is expected</param>
 4911            <param name="actual">The path to a file containing the actual value</param>
 4912            <param name="message">The message to display if Streams are not equal</param>
 4913            <param name="args">Arguments to be used in formatting the message</param>
 4914        </member>
 4915        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
 4916            <summary>
 4917            Verifies that two files are equal.  Two files are considered
 4918            equal if both are null, or if both have the same value byte for byte.
 4919            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4920            </summary>
 4921            <param name="expected">The path to a file containing the value that is expected</param>
 4922            <param name="actual">The path to a file containing the actual value</param>
 4923            <param name="message">The message to display if objects are not equal</param>
 4924        </member>
 4925        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
 4926            <summary>
 4927            Verifies that two files are equal.  Two files are considered
 4928            equal if both are null, or if both have the same value byte for byte.
 4929            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4930            </summary>
 4931            <param name="expected">The path to a file containing the value that is expected</param>
 4932            <param name="actual">The path to a file containing the actual value</param>
 4933        </member>
 4934        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
 4935            <summary>
 4936            Asserts that two Streams are not equal. If they are equal
 4937            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4938            </summary>
 4939            <param name="expected">The expected Stream</param>
 4940            <param name="actual">The actual Stream</param>
 4941            <param name="message">The message to be displayed when the two Stream are the same.</param>
 4942            <param name="args">Arguments to be used in formatting the message</param>
 4943        </member>
 4944        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
 4945            <summary>
 4946            Asserts that two Streams are not equal. If they are equal
 4947            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4948            </summary>
 4949            <param name="expected">The expected Stream</param>
 4950            <param name="actual">The actual Stream</param>
 4951            <param name="message">The message to be displayed when the Streams are the same.</param>
 4952        </member>
 4953        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
 4954            <summary>
 4955            Asserts that two Streams are not equal. If they are equal
 4956            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4957            </summary>
 4958            <param name="expected">The expected Stream</param>
 4959            <param name="actual">The actual Stream</param>
 4960        </member>
 4961        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
 4962            <summary>
 4963            Asserts that two files are not equal. If they are equal
 4964            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4965            </summary>
 4966            <param name="expected">A file containing the value that is expected</param>
 4967            <param name="actual">A file containing the actual value</param>
 4968            <param name="message">The message to display if Streams are not equal</param>
 4969            <param name="args">Arguments to be used in formatting the message</param>
 4970        </member>
 4971        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
 4972            <summary>
 4973            Asserts that two files are not equal. If they are equal
 4974            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4975            </summary>
 4976            <param name="expected">A file containing the value that is expected</param>
 4977            <param name="actual">A file containing the actual value</param>
 4978            <param name="message">The message to display if objects are not equal</param>
 4979        </member>
 4980        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
 4981            <summary>
 4982            Asserts that two files are not equal. If they are equal
 4983            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4984            </summary>
 4985            <param name="expected">A file containing the value that is expected</param>
 4986            <param name="actual">A file containing the actual value</param>
 4987        </member>
 4988        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
 4989            <summary>
 4990            Asserts that two files are not equal. If they are equal
 4991            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 4992            </summary>
 4993            <param name="expected">The path to a file containing the value that is expected</param>
 4994            <param name="actual">The path to a file containing the actual value</param>
 4995            <param name="message">The message to display if Streams are not equal</param>
 4996            <param name="args">Arguments to be used in formatting the message</param>
 4997        </member>
 4998        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
 4999            <summary>
 5000            Asserts that two files are not equal. If they are equal
 5001            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5002            </summary>
 5003            <param name="expected">The path to a file containing the value that is expected</param>
 5004            <param name="actual">The path to a file containing the actual value</param>
 5005            <param name="message">The message to display if objects are not equal</param>
 5006        </member>
 5007        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
 5008            <summary>
 5009            Asserts that two files are not equal. If they are equal
 5010            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5011            </summary>
 5012            <param name="expected">The path to a file containing the value that is expected</param>
 5013            <param name="actual">The path to a file containing the actual value</param>
 5014        </member>
 5015        <member name="T:NUnit.Framework.DescriptionAttribute">
 5016            <summary>
 5017            Attribute used to provide descriptive text about a 
 5018            test case or fixture.
 5019            </summary>
 5020        </member>
 5021        <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
 5022            <summary>
 5023            Construct the attribute
 5024            </summary>
 5025            <param name="description">Text describing the test</param>
 5026        </member>
 5027        <member name="P:NUnit.Framework.DescriptionAttribute.Description">
 5028            <summary>
 5029            Gets the test description
 5030            </summary>
 5031        </member>
 5032        <member name="T:NUnit.Framework.IExpectException">
 5033            <summary>
 5034            Interface implemented by a user fixture in order to
 5035            validate any expected exceptions. It is only called
 5036            for test methods marked with the ExpectedException
 5037            attribute.
 5038            </summary>
 5039        </member>
 5040        <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
 5041            <summary>
 5042            Method to handle an expected exception
 5043            </summary>
 5044            <param name="ex">The exception to be handled</param>
 5045        </member>
 5046        <member name="T:NUnit.Framework.TextMessageWriter">
 5047            <summary>
 5048            TextMessageWriter writes constraint descriptions and messages
 5049            in displayable form as a text stream. It tailors the display
 5050            of individual message components to form the standard message
 5051            format of NUnit assertion failure messages.
 5052            </summary>
 5053        </member>
 5054        <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
 5055            <summary>
 5056            Prefix used for the expected value line of a message
 5057            </summary>
 5058        </member>
 5059        <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
 5060            <summary>
 5061            Prefix used for the actual value line of a message
 5062            </summary>
 5063        </member>
 5064        <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
 5065            <summary>
 5066            Length of a message prefix
 5067            </summary>
 5068        </member>
 5069        <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
 5070            <summary>
 5071            Construct a TextMessageWriter
 5072            </summary>
 5073        </member>
 5074        <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
 5075            <summary>
 5076            Construct a TextMessageWriter, specifying a user message
 5077            and optional formatting arguments.
 5078            </summary>
 5079            <param name="userMessage"></param>
 5080            <param name="args"></param>
 5081        </member>
 5082        <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
 5083            <summary>
 5084            Method to write single line  message with optional args, usually
 5085            written to precede the general failure message, at a givel 
 5086            indentation level.
 5087            </summary>
 5088            <param name="level">The indentation level of the message</param>
 5089            <param name="message">The message to be written</param>
 5090            <param name="args">Any arguments used in formatting the message</param>
 5091        </member>
 5092        <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
 5093            <summary>
 5094            Display Expected and Actual lines for a constraint. This
 5095            is called by MessageWriter's default implementation of 
 5096            WriteMessageTo and provides the generic two-line display. 
 5097            </summary>
 5098            <param name="constraint">The constraint that failed</param>
 5099        </member>
 5100        <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
 5101            <summary>
 5102            Display Expected and Actual lines for given values. This
 5103            method may be called by constraints that need more control over
 5104            the display of actual and expected values than is provided
 5105            by the default implementation.
 5106            </summary>
 5107            <param name="expected">The expected value</param>
 5108            <param name="actual">The actual value causing the failure</param>
 5109        </member>
 5110        <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
 5111            <summary>
 5112            Display Expected and Actual lines for given values, including
 5113            a tolerance value on the expected line.
 5114            </summary>
 5115            <param name="expected">The expected value</param>
 5116            <param name="actual">The actual value causing the failure</param>
 5117            <param name="tolerance">The tolerance within which the test was made</param>
 5118        </member>
 5119        <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
 5120            <summary>
 5121            Display the expected and actual string values on separate lines.
 5122            If the mismatch parameter is >=0, an additional line is displayed
 5123            line containing a caret that points to the mismatch point.
 5124            </summary>
 5125            <param name="expected">The expected string value</param>
 5126            <param name="actual">The actual string value</param>
 5127            <param name="mismatch">The point at which the strings don't match or -1</param>
 5128            <param name="ignoreCase">If true, case is ignored in string comparisons</param>
 5129            <param name="clipping">If true, clip the strings to fit the max line length</param>
 5130        </member>
 5131        <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
 5132            <summary>
 5133            Writes the text for a connector.
 5134            </summary>
 5135            <param name="connector">The connector.</param>
 5136        </member>
 5137        <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
 5138            <summary>
 5139            Writes the text for a predicate.
 5140            </summary>
 5141            <param name="predicate">The predicate.</param>
 5142        </member>
 5143        <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
 5144            <summary>
 5145            Write the text for a modifier.
 5146            </summary>
 5147            <param name="modifier">The modifier.</param>
 5148        </member>
 5149        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
 5150            <summary>
 5151            Writes the text for an expected value.
 5152            </summary>
 5153            <param name="expected">The expected value.</param>
 5154        </member>
 5155        <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
 5156            <summary>
 5157            Writes the text for an actual value.
 5158            </summary>
 5159            <param name="actual">The actual value.</param>
 5160        </member>
 5161        <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
 5162            <summary>
 5163            Writes the text for a generalized value.
 5164            </summary>
 5165            <param name="val">The value.</param>
 5166        </member>
 5167        <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
 5168            <summary>
 5169            Writes the text for a collection value,
 5170            starting at a particular point, to a max length
 5171            </summary>
 5172            <param name="collection">The collection containing elements to write.</param>
 5173            <param name="start">The starting point of the elements to write</param>
 5174            <param name="max">The maximum number of elements to write</param>
 5175        </member>
 5176        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
 5177            <summary>
 5178            Write the generic 'Expected' line for a constraint
 5179            </summary>
 5180            <param name="constraint">The constraint that failed</param>
 5181        </member>
 5182        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
 5183            <summary>
 5184            Write the generic 'Expected' line for a given value
 5185            </summary>
 5186            <param name="expected">The expected value</param>
 5187        </member>
 5188        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)">
 5189            <summary>
 5190            Write the generic 'Expected' line for a given value
 5191            and tolerance.
 5192            </summary>
 5193            <param name="expected">The expected value</param>
 5194            <param name="tolerance">The tolerance within which the test was made</param>
 5195        </member>
 5196        <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
 5197            <summary>
 5198            Write the generic 'Actual' line for a constraint
 5199            </summary>
 5200            <param name="constraint">The constraint for which the actual value is to be written</param>
 5201        </member>
 5202        <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
 5203            <summary>
 5204            Write the generic 'Actual' line for a given value
 5205            </summary>
 5206            <param name="actual">The actual value causing a failure</param>
 5207        </member>
 5208        <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
 5209            <summary>
 5210            Gets or sets the maximum line length for this writer
 5211            </summary>
 5212        </member>
 5213        <member name="T:NUnit.Framework.AssertionHelper">
 5214            <summary>
 5215            AssertionHelper is an optional base class for user tests,
 5216            allowing the use of shorter names for constraints and
 5217            asserts and avoiding conflict with the definition of 
 5218            <see cref="T:NUnit.Framework.Is"/>, from which it inherits much of its
 5219            behavior, in certain mock object frameworks.
 5220            </summary>
 5221        </member>
 5222        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
 5223            <summary>
 5224            Apply a constraint to an actual value, succeeding if the constraint
 5225            is satisfied and throwing an assertion exception on failure. Works
 5226            identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)"/>
 5227            </summary>
 5228            <param name="constraint">A Constraint to be applied</param>
 5229            <param name="actual">The actual value to test</param>
 5230        </member>
 5231        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 5232            <summary>
 5233            Apply a constraint to an actual value, succeeding if the constraint
 5234            is satisfied and throwing an assertion exception on failure. Works
 5235            identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)"/>
 5236            </summary>
 5237            <param name="constraint">A Constraint to be applied</param>
 5238            <param name="actual">The actual value to test</param>
 5239            <param name="message">The message that will be displayed on failure</param>
 5240        </member>
 5241        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 5242            <summary>
 5243            Apply a constraint to an actual value, succeeding if the constraint
 5244            is satisfied and throwing an assertion exception on failure. Works
 5245            identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])"/>
 5246            </summary>
 5247            <param name="constraint">A Constraint to be applied</param>
 5248            <param name="actual">The actual value to test</param>
 5249            <param name="message">The message that will be displayed on failure</param>
 5250            <param name="args">Arguments to be used in formatting the message</param>
 5251        </member>
 5252        <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
 5253            <summary>
 5254            Apply a constraint to an actual value, succeeding if the constraint
 5255            is satisfied and throwing an assertion exception on failure.
 5256            </summary>
 5257            <param name="expr">A Constraint expression to be applied</param>
 5258            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 5259        </member>
 5260        <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 5261            <summary>
 5262            Apply a constraint to an actual value, succeeding if the constraint
 5263            is satisfied and throwing an assertion exception on failure.
 5264            </summary>
 5265            <param name="expr">A Constraint expression to be applied</param>
 5266            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 5267            <param name="message">The message that will be displayed on failure</param>
 5268        </member>
 5269        <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 5270            <summary>
 5271            Apply a constraint to an actual value, succeeding if the constraint
 5272            is satisfied and throwing an assertion exception on failure.
 5273            </summary>
 5274            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 5275            <param name="expr">A Constraint expression to be applied</param>
 5276            <param name="message">The message that will be displayed on failure</param>
 5277            <param name="args">Arguments to be used in formatting the message</param>
 5278        </member>
 5279        <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
 5280            <summary>
 5281            Apply a constraint to a referenced value, succeeding if the constraint
 5282            is satisfied and throwing an assertion exception on failure.
 5283            </summary>
 5284            <param name="constraint">A Constraint to be applied</param>
 5285            <param name="actual">The actual value to test</param>
 5286        </member>
 5287        <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 5288            <summary>
 5289            Apply a constraint to a referenced value, succeeding if the constraint
 5290            is satisfied and throwing an assertion exception on failure.
 5291            </summary>
 5292            <param name="constraint">A Constraint to be applied</param>
 5293            <param name="actual">The actual value to test</param>
 5294            <param name="message">The message that will be displayed on failure</param>
 5295        </member>
 5296        <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 5297            <summary>
 5298            Apply a constraint to a referenced value, succeeding if the constraint
 5299            is satisfied and throwing an assertion exception on failure.
 5300            </summary>
 5301            <param name="expression">A Constraint to be applied</param>
 5302            <param name="actual">The actual value to test</param>
 5303            <param name="message">The message that will be displayed on failure</param>
 5304            <param name="args">Arguments to be used in formatting the message</param>
 5305        </member>
 5306        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
 5307            <summary>
 5308            Asserts that a condition is true. If the condition is false the method throws
 5309            an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to 
 5310            <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
 5311            </summary> 
 5312            <param name="condition">The evaluated condition</param>
 5313            <param name="message">The message to display if the condition is false</param>
 5314            <param name="args">Arguments to be used in formatting the message</param>
 5315        </member>
 5316        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
 5317            <summary>
 5318            Asserts that a condition is true. If the condition is false the method throws
 5319            an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to 
 5320            <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
 5321            </summary>
 5322            <param name="condition">The evaluated condition</param>
 5323            <param name="message">The message to display if the condition is false</param>
 5324        </member>
 5325        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
 5326            <summary>
 5327            Asserts that a condition is true. If the condition is false the method throws
 5328            an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
 5329            </summary>
 5330            <param name="condition">The evaluated condition</param>
 5331        </member>
 5332        <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
 5333            <summary>
 5334            Asserts that the code represented by a delegate throws an exception
 5335            that satisfies the constraint provided.
 5336            </summary>
 5337            <param name="code">A TestDelegate to be executed</param>
 5338            <param name="constraint">A ThrowsConstraint used in the test</param>
 5339        </member>
 5340        <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
 5341            <summary>
 5342            Returns a ListMapper based on a collection.
 5343            </summary>
 5344            <param name="original">The original collection</param>
 5345            <returns></returns>
 5346        </member>
 5347        <member name="T:NUnit.Framework.IncludeExcludeAttribute">
 5348            <summary>
 5349            Abstract base for Attributes that are used to include tests
 5350            in the test run based on environmental settings.
 5351            </summary>
 5352        </member>
 5353        <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
 5354            <summary>
 5355            Constructor with no included items specified, for use
 5356            with named property syntax.
 5357            </summary>
 5358        </member>
 5359        <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
 5360            <summary>
 5361            Constructor taking one or more included items
 5362            </summary>
 5363            <param name="include">Comma-delimited list of included items</param>
 5364        </member>
 5365        <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
 5366            <summary>
 5367            Name of the item that is needed in order for
 5368            a test to run. Multiple itemss may be given,
 5369            separated by a comma.
 5370            </summary>
 5371        </member>
 5372        <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
 5373            <summary>
 5374            Name of the item to be excluded. Multiple items
 5375            may be given, separated by a comma.
 5376            </summary>
 5377        </member>
 5378        <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
 5379            <summary>
 5380            The reason for including or excluding the test
 5381            </summary>
 5382        </member>
 5383        <member name="T:NUnit.Framework.PlatformAttribute">
 5384            <summary>
 5385            PlatformAttribute is used to mark a test fixture or an
 5386            individual method as applying to a particular platform only.
 5387            </summary>
 5388        </member>
 5389        <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
 5390            <summary>
 5391            Constructor with no platforms specified, for use
 5392            with named property syntax.
 5393            </summary>
 5394        </member>
 5395        <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
 5396            <summary>
 5397            Constructor taking one or more platforms
 5398            </summary>
 5399            <param name="platforms">Comma-deliminted list of platforms</param>
 5400        </member>
 5401        <member name="T:NUnit.Framework.CultureAttribute">
 5402            <summary>
 5403            CultureAttribute is used to mark a test fixture or an
 5404            individual method as applying to a particular Culture only.
 5405            </summary>
 5406        </member>
 5407        <member name="M:NUnit.Framework.CultureAttribute.#ctor">
 5408            <summary>
 5409            Constructor with no cultures specified, for use
 5410            with named property syntax.
 5411            </summary>
 5412        </member>
 5413        <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
 5414            <summary>
 5415            Constructor taking one or more cultures
 5416            </summary>
 5417            <param name="cultures">Comma-deliminted list of cultures</param>
 5418        </member>
 5419        <member name="T:NUnit.Framework.SetCultureAttribute">
 5420            <summary>
 5421            Summary description for SetCultureAttribute.
 5422            </summary>
 5423        </member>
 5424        <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
 5425            <summary>
 5426            Construct given the name of a culture
 5427            </summary>
 5428            <param name="culture"></param>
 5429        </member>
 5430        <member name="T:NUnit.Framework.GlobalSettings">
 5431            <summary>
 5432            GlobalSettings is a place for setting default values used
 5433            by the framework in performing asserts.
 5434            </summary>
 5435        </member>
 5436        <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
 5437            <summary>
 5438            Default tolerance for floating point equality
 5439            </summary>
 5440        </member>
 5441        <member name="T:NUnit.Framework.DirectoryAssert">
 5442            <summary>
 5443            Summary description for DirectoryAssert
 5444            </summary>
 5445        </member>
 5446        <member name="M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)">
 5447            <summary>
 5448            The Equals method throws an AssertionException. This is done 
 5449            to make sure there is no mistake by calling this function.
 5450            </summary>
 5451            <param name="a"></param>
 5452            <param name="b"></param>
 5453        </member>
 5454        <member name="M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)">
 5455            <summary>
 5456            override the default ReferenceEquals to throw an AssertionException. This 
 5457            implementation makes sure there is no mistake in calling this function 
 5458            as part of Assert. 
 5459            </summary>
 5460            <param name="a"></param>
 5461            <param name="b"></param>
 5462        </member>
 5463        <member name="M:NUnit.Framework.DirectoryAssert.#ctor">
 5464            <summary>
 5465            We don't actually want any instances of this object, but some people
 5466            like to inherit from it to add other static methods. Hence, the
 5467            protected constructor disallows any instances of this object. 
 5468            </summary>
 5469        </member>
 5470        <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
 5471            <summary>
 5472            Verifies that two directories are equal.  Two directories are considered
 5473            equal if both are null, or if both have the same value byte for byte.
 5474            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5475            </summary>
 5476            <param name="expected">A directory containing the value that is expected</param>
 5477            <param name="actual">A directory containing the actual value</param>
 5478            <param name="message">The message to display if directories are not equal</param>
 5479            <param name="args">Arguments to be used in formatting the message</param>
 5480        </member>
 5481        <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
 5482            <summary>
 5483            Verifies that two directories are equal.  Two directories are considered
 5484            equal if both are null, or if both have the same value byte for byte.
 5485            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5486            </summary>
 5487            <param name="expected">A directory containing the value that is expected</param>
 5488            <param name="actual">A directory containing the actual value</param>
 5489            <param name="message">The message to display if directories are not equal</param>
 5490        </member>
 5491        <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 5492            <summary>
 5493            Verifies that two directories are equal.  Two directories are considered
 5494            equal if both are null, or if both have the same value byte for byte.
 5495            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5496            </summary>
 5497            <param name="expected">A directory containing the value that is expected</param>
 5498            <param name="actual">A directory containing the actual value</param>
 5499        </member>
 5500        <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
 5501            <summary>
 5502            Verifies that two directories are equal.  Two directories are considered
 5503            equal if both are null, or if both have the same value byte for byte.
 5504            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5505            </summary>
 5506            <param name="expected">A directory path string containing the value that is expected</param>
 5507            <param name="actual">A directory path string containing the actual value</param>
 5508            <param name="message">The message to display if directories are not equal</param>
 5509            <param name="args">Arguments to be used in formatting the message</param>
 5510        </member>
 5511        <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)">
 5512            <summary>
 5513            Verifies that two directories are equal.  Two directories are considered
 5514            equal if both are null, or if both have the same value byte for byte.
 5515            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5516            </summary>
 5517            <param name="expected">A directory path string containing the value that is expected</param>
 5518            <param name="actual">A directory path string containing the actual value</param>
 5519            <param name="message">The message to display if directories are not equal</param>
 5520        </member>
 5521        <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)">
 5522            <summary>
 5523            Verifies that two directories are equal.  Two directories are considered
 5524            equal if both are null, or if both have the same value byte for byte.
 5525            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5526            </summary>
 5527            <param name="expected">A directory path string containing the value that is expected</param>
 5528            <param name="actual">A directory path string containing the actual value</param>
 5529        </member>
 5530        <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
 5531            <summary>
 5532            Asserts that two directories are not equal. If they are equal
 5533            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5534            </summary>
 5535            <param name="expected">A directory containing the value that is expected</param>
 5536            <param name="actual">A directory containing the actual value</param>
 5537            <param name="message">The message to display if directories are not equal</param>
 5538            <param name="args">Arguments to be used in formatting the message</param>
 5539        </member>
 5540        <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
 5541            <summary>
 5542            Asserts that two directories are not equal. If they are equal
 5543            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5544            </summary>
 5545            <param name="expected">A directory containing the value that is expected</param>
 5546            <param name="actual">A directory containing the actual value</param>
 5547            <param name="message">The message to display if directories are not equal</param>
 5548        </member>
 5549        <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 5550            <summary>
 5551            Asserts that two directories are not equal. If they are equal
 5552            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5553            </summary>
 5554            <param name="expected">A directory containing the value that is expected</param>
 5555            <param name="actual">A directory containing the actual value</param>
 5556        </member>
 5557        <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
 5558            <summary>
 5559            Asserts that two directories are not equal. If they are equal
 5560            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5561            </summary>
 5562            <param name="expected">A directory path string containing the value that is expected</param>
 5563            <param name="actual">A directory path string containing the actual value</param>
 5564            <param name="message">The message to display if directories are equal</param>
 5565            <param name="args">Arguments to be used in formatting the message</param>
 5566        </member>
 5567        <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String)">
 5568            <summary>
 5569            Asserts that two directories are not equal. If they are equal
 5570            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5571            </summary>
 5572            <param name="expected">A directory path string containing the value that is expected</param>
 5573            <param name="actual">A directory path string containing the actual value</param>
 5574            <param name="message">The message to display if directories are equal</param>
 5575        </member>
 5576        <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String)">
 5577            <summary>
 5578            Asserts that two directories are not equal. If they are equal
 5579            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5580            </summary>
 5581            <param name="expected">A directory path string containing the value that is expected</param>
 5582            <param name="actual">A directory path string containing the actual value</param>
 5583        </member>
 5584        <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
 5585            <summary>
 5586            Asserts that the directory is empty. If it is not empty
 5587            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5588            </summary>
 5589            <param name="directory">A directory to search</param>
 5590            <param name="message">The message to display if directories are not equal</param>
 5591            <param name="args">Arguments to be used in formatting the message</param>
 5592        </member>
 5593        <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String)">
 5594            <summary>
 5595            Asserts that the directory is empty. If it is not empty
 5596            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5597            </summary>
 5598            <param name="directory">A directory to search</param>
 5599            <param name="message">The message to display if directories are not equal</param>
 5600        </member>
 5601        <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo)">
 5602            <summary>
 5603            Asserts that the directory is empty. If it is not empty
 5604            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5605            </summary>
 5606            <param name="directory">A directory to search</param>
 5607        </member>
 5608        <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String,System.Object[])">
 5609            <summary>
 5610            Asserts that the directory is empty. If it is not empty
 5611            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5612            </summary>
 5613            <param name="directory">A directory to search</param>
 5614            <param name="message">The message to display if directories are not equal</param>
 5615            <param name="args">Arguments to be used in formatting the message</param>
 5616        </member>
 5617        <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String)">
 5618            <summary>
 5619            Asserts that the directory is empty. If it is not empty
 5620            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5621            </summary>
 5622            <param name="directory">A directory to search</param>
 5623            <param name="message">The message to display if directories are not equal</param>
 5624        </member>
 5625        <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String)">
 5626            <summary>
 5627            Asserts that the directory is empty. If it is not empty
 5628            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5629            </summary>
 5630            <param name="directory">A directory to search</param>
 5631        </member>
 5632        <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
 5633            <summary>
 5634            Asserts that the directory is not empty. If it is empty
 5635            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5636            </summary>
 5637            <param name="directory">A directory to search</param>
 5638            <param name="message">The message to display if directories are not equal</param>
 5639            <param name="args">Arguments to be used in formatting the message</param>
 5640        </member>
 5641        <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String)">
 5642            <summary>
 5643            Asserts that the directory is not empty. If it is empty
 5644            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5645            </summary>
 5646            <param name="directory">A directory to search</param>
 5647            <param name="message">The message to display if directories are not equal</param>
 5648        </member>
 5649        <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo)">
 5650            <summary>
 5651            Asserts that the directory is not empty. If it is empty
 5652            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5653            </summary>
 5654            <param name="directory">A directory to search</param>
 5655        </member>
 5656        <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String,System.Object[])">
 5657            <summary>
 5658            Asserts that the directory is not empty. If it is empty
 5659            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5660            </summary>
 5661            <param name="directory">A directory to search</param>
 5662            <param name="message">The message to display if directories are not equal</param>
 5663            <param name="args">Arguments to be used in formatting the message</param>
 5664        </member>
 5665        <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String)">
 5666            <summary>
 5667            Asserts that the directory is not empty. If it is empty
 5668            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5669            </summary>
 5670            <param name="directory">A directory to search</param>
 5671            <param name="message">The message to display if directories are not equal</param>
 5672        </member>
 5673        <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String)">
 5674            <summary>
 5675            Asserts that the directory is not empty. If it is empty
 5676            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5677            </summary>
 5678            <param name="directory">A directory to search</param>
 5679        </member>
 5680        <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
 5681            <summary>
 5682            Asserts that path contains actual as a subdirectory or
 5683            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5684            </summary>
 5685            <param name="directory">A directory to search</param>
 5686            <param name="actual">sub-directory asserted to exist under directory</param>
 5687            <param name="message">The message to display if directory is not within the path</param>
 5688            <param name="args">Arguments to be used in formatting the message</param>
 5689        </member>
 5690        <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
 5691            <summary>
 5692            Asserts that path contains actual as a subdirectory or
 5693            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5694            </summary>
 5695            <param name="directory">A directory to search</param>
 5696            <param name="actual">sub-directory asserted to exist under directory</param>
 5697            <param name="message">The message to display if directory is not within the path</param>
 5698        </member>
 5699        <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 5700            <summary>
 5701            Asserts that path contains actual as a subdirectory or
 5702            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5703            </summary>
 5704            <param name="directory">A directory to search</param>
 5705            <param name="actual">sub-directory asserted to exist under directory</param>
 5706        </member>
 5707        <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String,System.Object[])">
 5708            <summary>
 5709            Asserts that path contains actual as a subdirectory or
 5710            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5711            </summary>
 5712            <param name="directory">A directory to search</param>
 5713            <param name="actual">sub-directory asserted to exist under directory</param>
 5714            <param name="message">The message to display if directory is not within the path</param>
 5715            <param name="args">Arguments to be used in formatting the message</param>
 5716        </member>
 5717        <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String)">
 5718            <summary>
 5719            Asserts that path contains actual as a subdirectory or
 5720            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5721            </summary>
 5722            <param name="directory">A directory to search</param>
 5723            <param name="actual">sub-directory asserted to exist under directory</param>
 5724            <param name="message">The message to display if directory is not within the path</param>
 5725        </member>
 5726        <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String)">
 5727            <summary>
 5728            Asserts that path contains actual as a subdirectory or
 5729            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5730            </summary>
 5731            <param name="directory">A directory to search</param>
 5732            <param name="actual">sub-directory asserted to exist under directory</param>
 5733        </member>
 5734        <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
 5735            <summary>
 5736            Asserts that path does not contain actual as a subdirectory or
 5737            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5738            </summary>
 5739            <param name="directory">A directory to search</param>
 5740            <param name="actual">sub-directory asserted to exist under directory</param>
 5741            <param name="message">The message to display if directory is not within the path</param>
 5742            <param name="args">Arguments to be used in formatting the message</param>
 5743        </member>
 5744        <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
 5745            <summary>
 5746            Asserts that path does not contain actual as a subdirectory or
 5747            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5748            </summary>
 5749            <param name="directory">A directory to search</param>
 5750            <param name="actual">sub-directory asserted to exist under directory</param>
 5751            <param name="message">The message to display if directory is not within the path</param>
 5752        </member>
 5753        <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
 5754            <summary>
 5755            Asserts that path does not contain actual as a subdirectory or
 5756            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5757            </summary>
 5758            <param name="directory">A directory to search</param>
 5759            <param name="actual">sub-directory asserted to exist under directory</param>
 5760        </member>
 5761        <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String,System.Object[])">
 5762            <summary>
 5763            Asserts that path does not contain actual as a subdirectory or
 5764            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5765            </summary>
 5766            <param name="directory">A directory to search</param>
 5767            <param name="actual">sub-directory asserted to exist under directory</param>
 5768            <param name="message">The message to display if directory is not within the path</param>
 5769            <param name="args">Arguments to be used in formatting the message</param>
 5770        </member>
 5771        <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String)">
 5772            <summary>
 5773            Asserts that path does not contain actual as a subdirectory or
 5774            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5775            </summary>
 5776            <param name="directory">A directory to search</param>
 5777            <param name="actual">sub-directory asserted to exist under directory</param>
 5778            <param name="message">The message to display if directory is not within the path</param>
 5779        </member>
 5780        <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String)">
 5781            <summary>
 5782            Asserts that path does not contain actual as a subdirectory or
 5783            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 5784            </summary>
 5785            <param name="directory">A directory to search</param>
 5786            <param name="actual">sub-directory asserted to exist under directory</param>
 5787        </member>
 5788        <member name="T:NUnit.Framework.TestCaseAttribute">
 5789            <summary>
 5790            TestCaseAttribute is used to mark parameterized test cases
 5791            and provide them with their arguments.
 5792            </summary>
 5793        </member>
 5794        <member name="T:NUnit.Framework.ITestCaseData">
 5795            <summary>
 5796            The ITestCaseData interface is implemented by a class
 5797            that is able to return complete testcases for use by
 5798            a parameterized test method.
 5799            
 5800            NOTE: This interface is used in both the framework
 5801            and the core, even though that results in two different
 5802            types. However, sharing the source code guarantees that
 5803            the various implementations will be compatible and that
 5804            the core is able to reflect successfully over the
 5805            framework implementations of ITestCaseData.
 5806            </summary>
 5807        </member>
 5808        <member name="P:NUnit.Framework.ITestCaseData.Arguments">
 5809            <summary>
 5810            Gets the argument list to be provided to the test
 5811            </summary>
 5812        </member>
 5813        <member name="P:NUnit.Framework.ITestCaseData.Result">
 5814            <summary>
 5815            Gets the expected result
 5816            </summary>
 5817        </member>
 5818        <member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
 5819            <summary>
 5820             Gets the expected exception Type
 5821            </summary>
 5822        </member>
 5823        <member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
 5824            <summary>
 5825            Gets the FullName of the expected exception
 5826            </summary>
 5827        </member>
 5828        <member name="P:NUnit.Framework.ITestCaseData.TestName">
 5829            <summary>
 5830            Gets the name to be used for the test
 5831            </summary>
 5832        </member>
 5833        <member name="P:NUnit.Framework.ITestCaseData.Description">
 5834            <summary>
 5835            Gets the description of the test
 5836            </summary>
 5837        </member>
 5838        <member name="P:NUnit.Framework.ITestCaseData.Ignored">
 5839            <summary>
 5840            Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
 5841            </summary>
 5842            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
 5843        </member>
 5844        <member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
 5845            <summary>
 5846            Gets the ignore reason.
 5847            </summary>
 5848            <value>The ignore reason.</value>
 5849        </member>
 5850        <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
 5851            <summary>
 5852            Construct a TestCaseAttribute with a list of arguments.
 5853            This constructor is not CLS-Compliant
 5854            </summary>
 5855            <param name="arguments"></param>
 5856        </member>
 5857        <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
 5858            <summary>
 5859            Construct a TestCaseAttribute with a single argument
 5860            </summary>
 5861            <param name="arg"></param>
 5862        </member>
 5863        <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
 5864            <summary>
 5865            Construct a TestCaseAttribute with a two arguments
 5866            </summary>
 5867            <param name="arg1"></param>
 5868            <param name="arg2"></param>
 5869        </member>
 5870        <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
 5871            <summary>
 5872            Construct a TestCaseAttribute with a three arguments
 5873            </summary>
 5874            <param name="arg1"></param>
 5875            <param name="arg2"></param>
 5876            <param name="arg3"></param>
 5877        </member>
 5878        <member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
 5879            <summary>
 5880            Gets the list of arguments to a test case
 5881            </summary>
 5882        </member>
 5883        <member name="P:NUnit.Framework.TestCaseAttribute.Result">
 5884            <summary>
 5885            Gets or sets the expected result.
 5886            </summary>
 5887            <value>The result.</value>
 5888        </member>
 5889        <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
 5890            <summary>
 5891            Gets or sets the expected exception.
 5892            </summary>
 5893            <value>The expected exception.</value>
 5894        </member>
 5895        <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
 5896            <summary>
 5897            Gets or sets the name the expected exception.
 5898            </summary>
 5899            <value>The expected name of the exception.</value>
 5900        </member>
 5901        <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
 5902            <summary>
 5903            Gets or sets the expected message of the expected exception
 5904            </summary>
 5905            <value>The expected message of the exception.</value>
 5906        </member>
 5907        <member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
 5908            <summary>
 5909             Gets or sets the type of match to be performed on the expected message
 5910            </summary>
 5911        </member>
 5912        <member name="P:NUnit.Framework.TestCaseAttribute.Description">
 5913            <summary>
 5914            Gets or sets the description.
 5915            </summary>
 5916            <value>The description.</value>
 5917        </member>
 5918        <member name="P:NUnit.Framework.TestCaseAttribute.TestName">
 5919            <summary>
 5920            Gets or sets the name of the test.
 5921            </summary>
 5922            <value>The name of the test.</value>
 5923        </member>
 5924        <member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
 5925            <summary>
 5926            Gets or sets the ignored status of the test
 5927            </summary>
 5928        </member>
 5929        <member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
 5930            <summary>
 5931            Gets or sets the ignored status of the test
 5932            </summary>
 5933        </member>
 5934        <member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
 5935            <summary>
 5936            Gets the ignore reason.
 5937            </summary>
 5938            <value>The ignore reason.</value>
 5939        </member>
 5940        <member name="T:NUnit.Framework.TestCaseData">
 5941            <summary>
 5942            The TestCaseData class represents a set of arguments
 5943            and other parameter info to be used for a parameterized
 5944            test case. It provides a number of instance modifiers
 5945            for use in initializing the test case.
 5946            
 5947            Note: Instance modifiers are getters that return
 5948            the same instance after modifying it's state.
 5949            </summary>
 5950        </member>
 5951        <member name="F:NUnit.Framework.TestCaseData.arguments">
 5952            <summary>
 5953            The argument list to be provided to the test
 5954            </summary>
 5955        </member>
 5956        <member name="F:NUnit.Framework.TestCaseData.result">
 5957            <summary>
 5958            The expected result to be returned
 5959            </summary>
 5960        </member>
 5961        <member name="F:NUnit.Framework.TestCaseData.expectedExceptionType">
 5962            <summary>
 5963             The expected exception Type
 5964            </summary>
 5965        </member>
 5966        <member name="F:NUnit.Framework.TestCaseData.expectedExceptionName">
 5967            <summary>
 5968            The FullName of the expected exception
 5969            </summary>
 5970        </member>
 5971        <member name="F:NUnit.Framework.TestCaseData.testName">
 5972            <summary>
 5973            The name to be used for the test
 5974            </summary>
 5975        </member>
 5976        <member name="F:NUnit.Framework.TestCaseData.description">
 5977            <summary>
 5978            The description of the test
 5979            </summary>
 5980        </member>
 5981        <member name="F:NUnit.Framework.TestCaseData.properties">
 5982            <summary>
 5983            A dictionary of properties, used to add information
 5984            to tests without requiring the class to change.
 5985            </summary>
 5986        </member>
 5987        <member name="F:NUnit.Framework.TestCaseData.isIgnored">
 5988            <summary>
 5989            If true, indicates that the test case is to be ignored
 5990            </summary>
 5991        </member>
 5992        <member name="F:NUnit.Framework.TestCaseData.ignoreReason">
 5993            <summary>
 5994            The reason for ignoring a test case
 5995            </summary>
 5996        </member>
 5997        <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object[])">
 5998            <summary>
 5999            Initializes a new instance of the <see cref="T:TestCaseData"/> class.
 6000            </summary>
 6001            <param name="args">The arguments.</param>
 6002        </member>
 6003        <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object)">
 6004            <summary>
 6005            Initializes a new instance of the <see cref="T:TestCaseData"/> class.
 6006            </summary>
 6007            <param name="arg">The argument.</param>
 6008        </member>
 6009        <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)">
 6010            <summary>
 6011            Initializes a new instance of the <see cref="T:TestCaseData"/> class.
 6012            </summary>
 6013            <param name="arg1">The first argument.</param>
 6014            <param name="arg2">The second argument.</param>
 6015        </member>
 6016        <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)">
 6017            <summary>
 6018            Initializes a new instance of the <see cref="T:TestCaseData"/> class.
 6019            </summary>
 6020            <param name="arg1">The first argument.</param>
 6021            <param name="arg2">The second argument.</param>
 6022            <param name="arg3">The third argument.</param>
 6023        </member>
 6024        <member name="M:NUnit.Framework.TestCaseData.Returns(System.Object)">
 6025            <summary>
 6026            Sets the expected result for the test
 6027            </summary>
 6028            <param name="result">The expected result</param>
 6029            <returns>A modified TestCaseData</returns>
 6030        </member>
 6031        <member name="M:NUnit.Framework.TestCaseData.Throws(System.Type)">
 6032            <summary>
 6033            Sets the expected exception type for the test
 6034            </summary>
 6035            <param name="exceptionType">Type of the expected exception.</param>
 6036            <returns>The modified TestCaseData instance</returns>
 6037        </member>
 6038        <member name="M:NUnit.Framework.TestCaseData.Throws(System.String)">
 6039            <summary>
 6040            Sets the expected exception type for the test
 6041            </summary>
 6042            <param name="exceptionName">FullName of the expected exception.</param>
 6043            <returns>The modified TestCaseData instance</returns>
 6044        </member>
 6045        <member name="M:NUnit.Framework.TestCaseData.SetName(System.String)">
 6046            <summary>
 6047            Sets the name of the test case
 6048            </summary>
 6049            <returns>The modified TestCaseData instance</returns>
 6050        </member>
 6051        <member name="M:NUnit.Framework.TestCaseData.SetDescription(System.String)">
 6052            <summary>
 6053            Sets the description for the test case
 6054            being constructed.
 6055            </summary>
 6056            <param name="description">The description.</param>
 6057            <returns>The modified TestCaseData instance.</returns>
 6058        </member>
 6059        <member name="M:NUnit.Framework.TestCaseData.SetCategory(System.String)">
 6060            <summary>
 6061            Applies a category to the test
 6062            </summary>
 6063            <param name="category"></param>
 6064            <returns></returns>
 6065        </member>
 6066        <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)">
 6067            <summary>
 6068            Applies a named property to the test
 6069            </summary>
 6070            <param name="propName"></param>
 6071            <param name="propValue"></param>
 6072            <returns></returns>
 6073        </member>
 6074        <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)">
 6075            <summary>
 6076            Applies a named property to the test
 6077            </summary>
 6078            <param name="propName"></param>
 6079            <param name="propValue"></param>
 6080            <returns></returns>
 6081        </member>
 6082        <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)">
 6083            <summary>
 6084            Applies a named property to the test
 6085            </summary>
 6086            <param name="propName"></param>
 6087            <param name="propValue"></param>
 6088            <returns></returns>
 6089        </member>
 6090        <member name="M:NUnit.Framework.TestCaseData.Ignore">
 6091            <summary>
 6092            Ignores this TestCase.
 6093            </summary>
 6094            <returns></returns>
 6095        </member>
 6096        <member name="M:NUnit.Framework.TestCaseData.Ignore(System.String)">
 6097            <summary>
 6098            Ignores this TestCase, specifying the reason.
 6099            </summary>
 6100            <param name="reason">The reason.</param>
 6101            <returns></returns>
 6102        </member>
 6103        <member name="P:NUnit.Framework.TestCaseData.Arguments">
 6104            <summary>
 6105            Gets the argument list to be provided to the test
 6106            </summary>
 6107        </member>
 6108        <member name="P:NUnit.Framework.TestCaseData.Result">
 6109            <summary>
 6110            Gets the expected result
 6111            </summary>
 6112        </member>
 6113        <member name="P:NUnit.Framework.TestCaseData.ExpectedException">
 6114            <summary>
 6115             Gets the expected exception Type
 6116            </summary>
 6117        </member>
 6118        <member name="P:NUnit.Framework.TestCaseData.ExpectedExceptionName">
 6119            <summary>
 6120            Gets the FullName of the expected exception
 6121            </summary>
 6122        </member>
 6123        <member name="P:NUnit.Framework.TestCaseData.TestName">
 6124            <summary>
 6125            Gets the name to be used for the test
 6126            </summary>
 6127        </member>
 6128        <member name="P:NUnit.Framework.TestCaseData.Description">
 6129            <summary>
 6130            Gets the description of the test
 6131            </summary>
 6132        </member>
 6133        <member name="P:NUnit.Framework.TestCaseData.Ignored">
 6134            <summary>
 6135            Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
 6136            </summary>
 6137            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
 6138        </member>
 6139        <member name="P:NUnit.Framework.TestCaseData.IgnoreReason">
 6140            <summary>
 6141            Gets the ignore reason.
 6142            </summary>
 6143            <value>The ignore reason.</value>
 6144        </member>
 6145        <member name="P:NUnit.Framework.TestCaseData.Categories">
 6146            <summary>
 6147            Gets a list of categories associated with this test.
 6148            </summary>
 6149        </member>
 6150        <member name="P:NUnit.Framework.TestCaseData.Properties">
 6151            <summary>
 6152            Gets the property dictionary for this test
 6153            </summary>
 6154        </member>
 6155        <member name="T:NUnit.Framework.SuccessException">
 6156            <summary>
 6157            Thrown when an assertion failed.
 6158            </summary>
 6159        </member>
 6160        <member name="M:NUnit.Framework.SuccessException.#ctor(System.String)">
 6161            <param name="message"></param>
 6162        </member>
 6163        <member name="M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)">
 6164            <param name="message">The error message that explains 
 6165            the reason for the exception</param>
 6166            <param name="inner">The exception that caused the 
 6167            current exception</param>
 6168        </member>
 6169        <member name="M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
 6170            <summary>
 6171            Serialization Constructor
 6172            </summary>
 6173        </member>
 6174        <member name="T:NUnit.Framework.InconclusiveException">
 6175            <summary>
 6176            Thrown when a test executes inconclusively.
 6177            </summary>
 6178            
 6179        </member>
 6180        <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String)">
 6181            <param name="message">The error message that explains 
 6182            the reason for the exception</param>
 6183        </member>
 6184        <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)">
 6185            <param name="message">The error message that explains 
 6186            the reason for the exception</param>
 6187            <param name="inner">The exception that caused the 
 6188            current exception</param>
 6189        </member>
 6190        <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
 6191            <summary>
 6192            Serialization Constructor
 6193            </summary>
 6194        </member>
 6195        <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
 6196            <summary>
 6197            Attribute used to identify a method that is 
 6198            called before any tests in a fixture are run.
 6199            </summary>
 6200        </member>
 6201        <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
 6202            <summary>
 6203            Attribute used to identify a method that is called after
 6204            all the tests in a fixture have run. The method is 
 6205            guaranteed to be called, even if an exception is thrown.
 6206            </summary>
 6207        </member>
 6208        <member name="T:NUnit.Framework.ExplicitAttribute">
 6209            <summary>
 6210            ExplicitAttribute marks a test or test fixture so that it will
 6211            only be run if explicitly executed from the gui or command line
 6212            or if it is included by use of a filter. The test will not be
 6213            run simply because an enclosing suite is run.
 6214            </summary>
 6215        </member>
 6216        <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
 6217            <summary>
 6218            Default constructor
 6219            </summary>
 6220        </member>
 6221        <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
 6222            <summary>
 6223            Constructor with a reason
 6224            </summary>
 6225            <param name="reason">The reason test is marked explicit</param>
 6226        </member>
 6227        <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
 6228            <summary>
 6229            The reason test is marked explicit
 6230            </summary>
 6231        </member>
 6232        <member name="T:NUnit.Framework.AssertionException">
 6233            <summary>
 6234            Thrown when an assertion failed.
 6235            </summary>
 6236            
 6237        </member>
 6238        <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
 6239            <param name="message">The error message that explains 
 6240            the reason for the exception</param>
 6241        </member>
 6242        <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
 6243            <param name="message">The error message that explains 
 6244            the reason for the exception</param>
 6245            <param name="inner">The exception that caused the 
 6246            current exception</param>
 6247        </member>
 6248        <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
 6249            <summary>
 6250            Serialization Constructor
 6251            </summary>
 6252        </member>
 6253        <member name="T:NUnit.Framework.IgnoreException">
 6254            <summary>
 6255            Thrown when an assertion failed.
 6256            </summary>
 6257        </member>
 6258        <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
 6259            <param name="message"></param>
 6260        </member>
 6261        <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
 6262            <param name="message">The error message that explains 
 6263            the reason for the exception</param>
 6264            <param name="inner">The exception that caused the 
 6265            current exception</param>
 6266        </member>
 6267        <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
 6268            <summary>
 6269            Serialization Constructor
 6270            </summary>
 6271        </member>
 6272        <member name="T:NUnit.Framework.MessageMatch">
 6273            <summary>
 6274            Enumeration indicating how the expected message parameter is to be used
 6275            </summary>
 6276        </member>
 6277        <member name="F:NUnit.Framework.MessageMatch.Exact">
 6278            Expect an exact match
 6279        </member>
 6280        <member name="F:NUnit.Framework.MessageMatch.Contains">
 6281            Expect a message containing the parameter string
 6282        </member>
 6283        <member name="F:NUnit.Framework.MessageMatch.Regex">
 6284            Match the regular expression provided as a parameter
 6285        </member>
 6286        <member name="F:NUnit.Framework.MessageMatch.StartsWith">
 6287            Expect a message that starts with the parameter string
 6288        </member>
 6289        <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
 6290            <summary>
 6291            ExpectedExceptionAttribute
 6292            </summary>
 6293            
 6294        </member>
 6295        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
 6296            <summary>
 6297            Constructor for a non-specific exception
 6298            </summary>
 6299        </member>
 6300        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
 6301            <summary>
 6302            Constructor for a given type of exception
 6303            </summary>
 6304            <param name="exceptionType">The type of the expected exception</param>
 6305        </member>
 6306        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
 6307            <summary>
 6308            Constructor for a given exception name
 6309            </summary>
 6310            <param name="exceptionName">The full name of the expected exception</param>
 6311        </member>
 6312        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
 6313            <summary>
 6314            Gets or sets the expected exception type
 6315            </summary>
 6316        </member>
 6317        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
 6318            <summary>
 6319            Gets or sets the full Type name of the expected exception
 6320            </summary>
 6321        </member>
 6322        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
 6323            <summary>
 6324            Gets or sets the expected message text
 6325            </summary>
 6326        </member>
 6327        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
 6328            <summary>
 6329            Gets or sets the user message displayed in case of failure
 6330            </summary>
 6331        </member>
 6332        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
 6333            <summary>
 6334             Gets or sets the type of match to be performed on the expected message
 6335            </summary>
 6336        </member>
 6337        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
 6338            <summary>
 6339             Gets the name of a method to be used as an exception handler
 6340            </summary>
 6341        </member>
 6342        <member name="T:NUnit.Framework.IgnoreAttribute">
 6343            <summary>
 6344            Attribute used to mark a test that is to be ignored.
 6345            Ignored tests result in a warning message when the
 6346            tests are run.
 6347            </summary>
 6348        </member>
 6349        <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
 6350            <summary>
 6351            Constructs the attribute without giving a reason 
 6352            for ignoring the test.
 6353            </summary>
 6354        </member>
 6355        <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
 6356            <summary>
 6357            Constructs the attribute giving a reason for ignoring the test
 6358            </summary>
 6359            <param name="reason">The reason for ignoring the test</param>
 6360        </member>
 6361        <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
 6362            <summary>
 6363            The reason for ignoring a test
 6364            </summary>
 6365        </member>
 6366        <member name="T:NUnit.Framework.SetUpAttribute">
 6367            <summary>
 6368            Attribute used to mark a class that contains one-time SetUp 
 6369            and/or TearDown methods that apply to all the tests in a
 6370            namespace or an assembly.
 6371            </summary>
 6372        </member>
 6373        <member name="T:NUnit.Framework.SuiteAttribute">
 6374            <summary>
 6375            Attribute used to mark a static (shared in VB) property
 6376            that returns a list of tests.
 6377            </summary>
 6378        </member>
 6379        <member name="T:NUnit.Framework.TearDownAttribute">
 6380            <summary>
 6381            Attribute used to identify a method that is called 
 6382            immediately after each test is run. The method is 
 6383            guaranteed to be called, even if an exception is thrown.
 6384            </summary>
 6385        </member>
 6386        <member name="T:NUnit.Framework.TestAttribute">
 6387            <summary>
 6388            Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/> 
 6389            class makes the method callable from the NUnit test runner. There is a property 
 6390            called Description which is optional which you can provide a more detailed test
 6391            description. This class cannot be inherited.
 6392            </summary>
 6393            
 6394            <example>
 6395            [TestFixture]
 6396            public class Fixture
 6397            {
 6398              [Test]
 6399              public void MethodToTest()
 6400              {}
 6401              
 6402              [Test(Description = "more detailed description")]
 6403              publc void TestDescriptionMethod()
 6404              {}
 6405            }
 6406            </example>
 6407            
 6408        </member>
 6409        <member name="P:NUnit.Framework.TestAttribute.Description">
 6410            <summary>
 6411            Descriptive text for this test
 6412            </summary>
 6413        </member>
 6414        <member name="T:NUnit.Framework.TestFixtureAttribute">
 6415            <example>
 6416            [TestFixture]
 6417            public class ExampleClass 
 6418            {}
 6419            </example>
 6420        </member>
 6421        <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
 6422            <summary>
 6423            Default constructor
 6424            </summary>
 6425        </member>
 6426        <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
 6427            <summary>
 6428            Construct with a object[] representing a set of arguments. 
 6429            In .NET 2.0, the arguments may later be separated into
 6430            type arguments and constructor arguments.
 6431            </summary>
 6432            <param name="arguments"></param>
 6433        </member>
 6434        <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
 6435            <summary>
 6436            Descriptive text for this fixture
 6437            </summary>
 6438        </member>
 6439        <member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
 6440            <summary>
 6441            The arguments originally provided to the attribute
 6442            </summary>
 6443        </member>
 6444        <member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
 6445            <summary>
 6446            Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
 6447            </summary>
 6448            <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
 6449        </member>
 6450        <member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
 6451            <summary>
 6452            Gets or sets the ignore reason. May set Ignored as a side effect.
 6453            </summary>
 6454            <value>The ignore reason.</value>
 6455        </member>
 6456        <member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
 6457            <summary>
 6458            Get or set the type arguments. If not set
 6459            explicitly, any leading arguments that are
 6460            Types are taken as type arguments.
 6461            </summary>
 6462        </member>
 6463        <member name="T:NUnit.Framework.RequiredAddinAttribute">
 6464            <summary>
 6465            RequiredAddinAttribute may be used to indicate the names of any addins
 6466            that must be present in order to run some or all of the tests in an
 6467            assembly. If the addin is not loaded, the entire assembly is marked
 6468            as NotRunnable.
 6469            </summary>
 6470        </member>
 6471        <member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
 6472            <summary>
 6473            Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
 6474            </summary>
 6475            <param name="requiredAddin">The required addin.</param>
 6476        </member>
 6477        <member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
 6478            <summary>
 6479            Gets the name of required addin.
 6480            </summary>
 6481            <value>The required addin name.</value>
 6482        </member>
 6483        <member name="T:NUnit.Framework.CombinatorialAttribute">
 6484            <summary>
 6485            Marks a test to use a combinatorial join of any argument data 
 6486            provided. NUnit will create a test case for every combination of 
 6487            the arguments provided. This can result in a large number of test
 6488            cases and so should be used judiciously. This is the default join
 6489            type, so the attribute need not be used except as documentation.
 6490            </summary>
 6491        </member>
 6492        <member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
 6493            <summary>
 6494            Default constructor
 6495            </summary>
 6496        </member>
 6497        <member name="T:NUnit.Framework.PairwiseAttribute">
 6498            <summary>
 6499            Marks a test to use pairwise join of any argument data provided. 
 6500            NUnit will attempt too excercise every pair of argument values at 
 6501            least once, using as small a number of test cases as it can. With
 6502            only two arguments, this is the same as a combinatorial join.
 6503            </summary>
 6504        </member>
 6505        <member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
 6506            <summary>
 6507            Default constructor
 6508            </summary>
 6509        </member>
 6510        <member name="T:NUnit.Framework.SequentialAttribute">
 6511            <summary>
 6512            Marks a test to use a sequential join of any argument data
 6513            provided. NUnit will use arguements for each parameter in
 6514            sequence, generating test cases up to the largest number
 6515            of argument values provided and using null for any arguments
 6516            for which it runs out of values. Normally, this should be
 6517            used with the same number of arguments for each parameter.
 6518            </summary>
 6519        </member>
 6520        <member name="M:NUnit.Framework.SequentialAttribute.#ctor">
 6521            <summary>
 6522            Default constructor
 6523            </summary>
 6524        </member>
 6525        <member name="T:NUnit.Framework.ParameterDataAttribute">
 6526            <summary>
 6527            Abstract base class for attributes that apply to parameters 
 6528            and supply data for the parameter.
 6529            </summary>
 6530        </member>
 6531        <member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
 6532            <summary>
 6533            Gets the data to be provided to the specified parameter
 6534            </summary>
 6535        </member>
 6536        <member name="T:NUnit.Framework.ValuesAttribute">
 6537            <summary>
 6538            ValuesAttribute is used to provide literal arguments for
 6539            an individual parameter of a test.
 6540            </summary>
 6541        </member>
 6542        <member name="F:NUnit.Framework.ValuesAttribute.data">
 6543            <summary>
 6544            The collection of data to be returned. Must
 6545            be set by any derived attribute classes.
 6546            We use an object[] so that the individual
 6547            elements may have their type changed in GetData
 6548            if necessary.
 6549            </summary>
 6550        </member>
 6551        <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
 6552            <summary>
 6553            Construct with one argument
 6554            </summary>
 6555            <param name="arg1"></param>
 6556        </member>
 6557        <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
 6558            <summary>
 6559            Construct with two arguments
 6560            </summary>
 6561            <param name="arg1"></param>
 6562            <param name="arg2"></param>
 6563        </member>
 6564        <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
 6565            <summary>
 6566            Construct with three arguments
 6567            </summary>
 6568            <param name="arg1"></param>
 6569            <param name="arg2"></param>
 6570            <param name="arg3"></param>
 6571        </member>
 6572        <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
 6573            <summary>
 6574            Construct with an array of arguments
 6575            </summary>
 6576            <param name="args"></param>
 6577        </member>
 6578        <member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
 6579            <summary>
 6580            Get the collection of values to be used as arguments
 6581            </summary>
 6582        </member>
 6583        <member name="T:NUnit.Framework.RandomAttribute">
 6584            <summary>
 6585            RandomAttribute is used to supply a set of random values
 6586            to a single parameter of a parameterized test.
 6587            </summary>
 6588        </member>
 6589        <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
 6590            <summary>
 6591            Construct a set of doubles from 0.0 to 1.0,
 6592            specifying only the count.
 6593            </summary>
 6594            <param name="count"></param>
 6595        </member>
 6596        <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
 6597            <summary>
 6598            Construct a set of doubles from min to max
 6599            </summary>
 6600            <param name="min"></param>
 6601            <param name="max"></param>
 6602            <param name="count"></param>
 6603        </member>
 6604        <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
 6605            <summary>
 6606            Construct a set of ints from min to max
 6607            </summary>
 6608            <param name="min"></param>
 6609            <param name="max"></param>
 6610            <param name="count"></param>
 6611        </member>
 6612        <member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
 6613            <summary>
 6614            Get the collection of values to be used as arguments
 6615            </summary>
 6616        </member>
 6617        <member name="T:NUnit.Framework.RangeAttribute">
 6618            <summary>
 6619            RangeAttribute is used to supply a range of values to an
 6620            individual parameter of a parameterized test.
 6621            </summary>
 6622        </member>
 6623        <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
 6624            <summary>
 6625            Construct a range of ints using default step of 1
 6626            </summary>
 6627            <param name="from"></param>
 6628            <param name="to"></param>
 6629        </member>
 6630        <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
 6631            <summary>
 6632            Construct a range of ints specifying the step size 
 6633            </summary>
 6634            <param name="from"></param>
 6635            <param name="to"></param>
 6636            <param name="step"></param>
 6637        </member>
 6638        <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
 6639            <summary>
 6640            Construct a range of longs
 6641            </summary>
 6642            <param name="from"></param>
 6643            <param name="to"></param>
 6644            <param name="step"></param>
 6645        </member>
 6646        <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
 6647            <summary>
 6648            Construct a range of doubles
 6649            </summary>
 6650            <param name="from"></param>
 6651            <param name="to"></param>
 6652            <param name="step"></param>
 6653        </member>
 6654        <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
 6655            <summary>
 6656            Construct a range of floats
 6657            </summary>
 6658            <param name="from"></param>
 6659            <param name="to"></param>
 6660            <param name="step"></param>
 6661        </member>
 6662        <member name="T:NUnit.Framework.Has">
 6663            <summary>
 6664            Helper class with properties and methods that supply
 6665            a number of constraints used in Asserts.
 6666            </summary>
 6667        </member>
 6668        <member name="M:NUnit.Framework.Has.Property(System.String)">
 6669            <summary>
 6670            Returns a new PropertyConstraintExpression, which will either
 6671            test for the existence of the named property on the object
 6672            being tested or apply any following constraint to that property.
 6673            </summary>
 6674        </member>
 6675        <member name="M:NUnit.Framework.Has.Attribute(System.Type)">
 6676            <summary>
 6677            Returns a new AttributeConstraint checking for the
 6678            presence of a particular attribute on an object.
 6679            </summary>
 6680        </member>
 6681        <member name="M:NUnit.Framework.Has.Attribute``1">
 6682            <summary>
 6683            Returns a new AttributeConstraint checking for the
 6684            presence of a particular attribute on an object.
 6685            </summary>
 6686        </member>
 6687        <member name="M:NUnit.Framework.Has.Member(System.Object)">
 6688            <summary>
 6689            Returns a new CollectionContainsConstraint checking for the
 6690            presence of a particular object in the collection.
 6691            </summary>
 6692        </member>
 6693        <member name="P:NUnit.Framework.Has.No">
 6694            <summary>
 6695            Returns a ConstraintExpression that negates any
 6696            following constraint.
 6697            </summary>
 6698        </member>
 6699        <member name="P:NUnit.Framework.Has.All">
 6700            <summary>
 6701            Returns a ConstraintExpression, which will apply
 6702            the following constraint to all members of a collection,
 6703            succeeding if all of them succeed.
 6704            </summary>
 6705        </member>
 6706        <member name="P:NUnit.Framework.Has.Some">
 6707            <summary>
 6708            Returns a ConstraintExpression, which will apply
 6709            the following constraint to all members of a collection,
 6710            succeeding if at least one of them succeeds.
 6711            </summary>
 6712        </member>
 6713        <member name="P:NUnit.Framework.Has.None">
 6714            <summary>
 6715            Returns a ConstraintExpression, which will apply
 6716            the following constraint to all members of a collection,
 6717            succeeding if all of them fail.
 6718            </summary>
 6719        </member>
 6720        <member name="P:NUnit.Framework.Has.Length">
 6721            <summary>
 6722            Returns a new ConstraintExpression, which will apply the following
 6723            constraint to the Length property of the object being tested.
 6724            </summary>
 6725        </member>
 6726        <member name="P:NUnit.Framework.Has.Count">
 6727            <summary>
 6728            Returns a new ConstraintExpression, which will apply the following
 6729            constraint to the Count property of the object being tested.
 6730            </summary>
 6731        </member>
 6732        <member name="P:NUnit.Framework.Has.Message">
 6733            <summary>
 6734            Returns a new ConstraintExpression, which will apply the following
 6735            constraint to the Message property of the object being tested.
 6736            </summary>
 6737        </member>
 6738        <member name="P:NUnit.Framework.Has.InnerException">
 6739            <summary>
 6740            Returns a new ConstraintExpression, which will apply the following
 6741            constraint to the InnerException property of the object being tested.
 6742            </summary>
 6743        </member>
 6744        <member name="T:NUnit.Framework.Is">
 6745            <summary>
 6746            Helper class with properties and methods that supply
 6747            a number of constraints used in Asserts.
 6748            </summary>
 6749        </member>
 6750        <member name="M:NUnit.Framework.Is.EqualTo(System.Object)">
 6751            <summary>
 6752            Returns a constraint that tests two items for equality
 6753            </summary>
 6754        </member>
 6755        <member name="M:NUnit.Framework.Is.SameAs(System.Object)">
 6756            <summary>
 6757            Returns a constraint that tests that two references are the same object
 6758            </summary>
 6759        </member>
 6760        <member name="M:NUnit.Framework.Is.GreaterThan(System.Object)">
 6761            <summary>
 6762            Returns a constraint that tests whether the
 6763            actual value is greater than the suppled argument
 6764            </summary>
 6765        </member>
 6766        <member name="M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)">
 6767            <summary>
 6768            Returns a constraint that tests whether the
 6769            actual value is greater than or equal to the suppled argument
 6770            </summary>
 6771        </member>
 6772        <member name="M:NUnit.Framework.Is.AtLeast(System.Object)">
 6773            <summary>
 6774            Returns a constraint that tests whether the
 6775            actual value is greater than or equal to the suppled argument
 6776            </summary>
 6777        </member>
 6778        <member name="M:NUnit.Framework.Is.LessThan(System.Object)">
 6779            <summary>
 6780            Returns a constraint that tests whether the
 6781            actual value is less than the suppled argument
 6782            </summary>
 6783        </member>
 6784        <member name="M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)">
 6785            <summary>
 6786            Returns a constraint that tests whether the
 6787            actual value is less than or equal to the suppled argument
 6788            </summary>
 6789        </member>
 6790        <member name="M:NUnit.Framework.Is.AtMost(System.Object)">
 6791            <summary>
 6792            Returns a constraint that tests whether the
 6793            actual value is less than or equal to the suppled argument
 6794            </summary>
 6795        </member>
 6796        <member name="M:NUnit.Framework.Is.TypeOf(System.Type)">
 6797            <summary>
 6798            Returns a constraint that tests whether the actual
 6799            value is of the exact type supplied as an argument.
 6800            </summary>
 6801        </member>
 6802        <member name="M:NUnit.Framework.Is.TypeOf``1">
 6803            <summary>
 6804            Returns a constraint that tests whether the actual
 6805            value is of the exact type supplied as an argument.
 6806            </summary>
 6807        </member>
 6808        <member name="M:NUnit.Framework.Is.InstanceOf(System.Type)">
 6809            <summary>
 6810            Returns a constraint that tests whether the actual value
 6811            is of the type supplied as an argument or a derived type.
 6812            </summary>
 6813        </member>
 6814        <member name="M:NUnit.Framework.Is.InstanceOf``1">
 6815            <summary>
 6816            Returns a constraint that tests whether the actual value
 6817            is of the type supplied as an argument or a derived type.
 6818            </summary>
 6819        </member>
 6820        <member name="M:NUnit.Framework.Is.InstanceOfType(System.Type)">
 6821            <summary>
 6822            Returns a constraint that tests whether the actual value
 6823            is of the type supplied as an argument or a derived type.
 6824            </summary>
 6825        </member>
 6826        <member name="M:NUnit.Framework.Is.InstanceOfType``1">
 6827            <summary>
 6828            Returns a constraint that tests whether the actual value
 6829            is of the type supplied as an argument or a derived type.
 6830            </summary>
 6831        </member>
 6832        <member name="M:NUnit.Framework.Is.AssignableFrom(System.Type)">
 6833            <summary>
 6834            Returns a constraint that tests whether the actual value
 6835            is assignable from the type supplied as an argument.
 6836            </summary>
 6837        </member>
 6838        <member name="M:NUnit.Framework.Is.AssignableFrom``1">
 6839            <summary>
 6840            Returns a constraint that tests whether the actual value
 6841            is assignable from the type supplied as an argument.
 6842            </summary>
 6843        </member>
 6844        <member name="M:NUnit.Framework.Is.AssignableTo(System.Type)">
 6845            <summary>
 6846            Returns a constraint that tests whether the actual value
 6847            is assignable from the type supplied as an argument.
 6848            </summary>
 6849        </member>
 6850        <member name="M:NUnit.Framework.Is.AssignableTo``1">
 6851            <summary>
 6852            Returns a constraint that tests whether the actual value
 6853            is assignable from the type supplied as an argument.
 6854            </summary>
 6855        </member>
 6856        <member name="M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)">
 6857            <summary>
 6858            Returns a constraint that tests whether the actual value
 6859            is a collection containing the same elements as the 
 6860            collection supplied as an argument.
 6861            </summary>
 6862        </member>
 6863        <member name="M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)">
 6864            <summary>
 6865            Returns a constraint that tests whether the actual value
 6866            is a subset of the collection supplied as an argument.
 6867            </summary>
 6868        </member>
 6869        <member name="M:NUnit.Framework.Is.StringContaining(System.String)">
 6870            <summary>
 6871            Returns a constraint that succeeds if the actual
 6872            value contains the substring supplied as an argument.
 6873            </summary>
 6874        </member>
 6875        <member name="M:NUnit.Framework.Is.StringStarting(System.String)">
 6876            <summary>
 6877            Returns a constraint that succeeds if the actual
 6878            value starts with the substring supplied as an argument.
 6879            </summary>
 6880        </member>
 6881        <member name="M:NUnit.Framework.Is.StringEnding(System.String)">
 6882            <summary>
 6883            Returns a constraint that succeeds if the actual
 6884            value ends with the substring supplied as an argument.
 6885            </summary>
 6886        </member>
 6887        <member name="M:NUnit.Framework.Is.StringMatching(System.String)">
 6888            <summary>
 6889            Returns a constraint that succeeds if the actual
 6890            value matches the Regex pattern supplied as an argument.
 6891            </summary>
 6892        </member>
 6893        <member name="M:NUnit.Framework.Is.SamePath(System.String)">
 6894            <summary>
 6895            Returns a constraint that tests whether the path provided 
 6896            is the same as an expected path after canonicalization.
 6897            </summary>
 6898        </member>
 6899        <member name="M:NUnit.Framework.Is.SamePathOrUnder(System.String)">
 6900            <summary>
 6901            Returns a constraint that tests whether the path provided 
 6902            is the same path or under an expected path after canonicalization.
 6903            </summary>
 6904        </member>
 6905        <member name="M:NUnit.Framework.Is.InRange(System.IComparable,System.IComparable)">
 6906            <summary>
 6907            Returns a constraint that tests whether the actual value falls 
 6908            within a specified range.
 6909            </summary>
 6910        </member>
 6911        <member name="P:NUnit.Framework.Is.Not">
 6912            <summary>
 6913            Returns a ConstraintExpression that negates any
 6914            following constraint.
 6915            </summary>
 6916        </member>
 6917        <member name="P:NUnit.Framework.Is.All">
 6918            <summary>
 6919            Returns a ConstraintExpression, which will apply
 6920            the following constraint to all members of a collection,
 6921            succeeding if all of them succeed.
 6922            </summary>
 6923        </member>
 6924        <member name="P:NUnit.Framework.Is.Null">
 6925            <summary>
 6926            Returns a constraint that tests for null
 6927            </summary>
 6928        </member>
 6929        <member name="P:NUnit.Framework.Is.True">
 6930            <summary>
 6931            Returns a constraint that tests for True
 6932            </summary>
 6933        </member>
 6934        <member name="P:NUnit.Framework.Is.False">
 6935            <summary>
 6936            Returns a constraint that tests for False
 6937            </summary>
 6938        </member>
 6939        <member name="P:NUnit.Framework.Is.NaN">
 6940            <summary>
 6941            Returns a constraint that tests for NaN
 6942            </summary>
 6943        </member>
 6944        <member name="P:NUnit.Framework.Is.Empty">
 6945            <summary>
 6946            Returns a constraint that tests for empty
 6947            </summary>
 6948        </member>
 6949        <member name="P:NUnit.Framework.Is.Unique">
 6950            <summary>
 6951            Returns a constraint that tests whether a collection 
 6952            contains all unique items.
 6953            </summary>
 6954        </member>
 6955        <member name="P:NUnit.Framework.Is.BinarySerializable">
 6956            <summary>
 6957            Returns a constraint that tests whether an object graph is serializable in binary format.
 6958            </summary>
 6959        </member>
 6960        <member name="P:NUnit.Framework.Is.XmlSerializable">
 6961            <summary>
 6962            Returns a constraint that tests whether an object graph is serializable in xml format.
 6963            </summary>
 6964        </member>
 6965        <member name="P:NUnit.Framework.Is.Ordered">
 6966            <summary>
 6967            Returns a constraint that tests whether a collection is ordered
 6968            </summary>
 6969        </member>
 6970        <member name="T:NUnit.Framework.List">
 6971            <summary>
 6972            The List class is a helper class with properties and methods
 6973            that supply a number of constraints used with lists and collections.
 6974            </summary>
 6975        </member>
 6976        <member name="M:NUnit.Framework.List.Map(System.Collections.ICollection)">
 6977            <summary>
 6978            List.Map returns a ListMapper, which can be used to map
 6979            the original collection to another collection.
 6980            </summary>
 6981            <param name="actual"></param>
 6982            <returns></returns>
 6983        </member>
 6984        <member name="T:NUnit.Framework.ListMapper">
 6985            <summary>
 6986            ListMapper is used to transform a collection used as an actual argument
 6987            producing another collection to be used in the assertion.
 6988            </summary>
 6989        </member>
 6990        <member name="M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)">
 6991            <summary>
 6992            Construct a ListMapper based on a collection
 6993            </summary>
 6994            <param name="original">The collection to be transformed</param>
 6995        </member>
 6996        <member name="M:NUnit.Framework.ListMapper.Property(System.String)">
 6997            <summary>
 6998            Produces a collection containing all the values of a property
 6999            </summary>
 7000            <param name="name">The collection of property values</param>
 7001            <returns></returns>
 7002        </member>
 7003        <member name="T:NUnit.Framework.Text">
 7004            <summary>
 7005            Helper class with static methods used to supply constraints
 7006            that operate on strings.
 7007            </summary>
 7008        </member>
 7009        <member name="M:NUnit.Framework.Text.Contains(System.String)">
 7010            <summary>
 7011            Returns a constraint that succeeds if the actual
 7012            value contains the substring supplied as an argument.
 7013            </summary>
 7014        </member>
 7015        <member name="M:NUnit.Framework.Text.DoesNotContain(System.String)">
 7016            <summary>
 7017            Returns a constraint that fails if the actual
 7018            value contains the substring supplied as an argument.
 7019            </summary>
 7020        </member>
 7021        <member name="M:NUnit.Framework.Text.StartsWith(System.String)">
 7022            <summary>
 7023            Returns a constraint that succeeds if the actual
 7024            value starts with the substring supplied as an argument.
 7025            </summary>
 7026        </member>
 7027        <member name="M:NUnit.Framework.Text.DoesNotStartWith(System.String)">
 7028            <summary>
 7029            Returns a constraint that fails if the actual
 7030            value starts with the substring supplied as an argument.
 7031            </summary>
 7032        </member>
 7033        <member name="M:NUnit.Framework.Text.EndsWith(System.String)">
 7034            <summary>
 7035            Returns a constraint that succeeds if the actual
 7036            value ends with the substring supplied as an argument.
 7037            </summary>
 7038        </member>
 7039        <member name="M:NUnit.Framework.Text.DoesNotEndWith(System.String)">
 7040            <summary>
 7041            Returns a constraint that fails if the actual
 7042            value ends with the substring supplied as an argument.
 7043            </summary>
 7044        </member>
 7045        <member name="M:NUnit.Framework.Text.Matches(System.String)">
 7046            <summary>
 7047            Returns a constraint that succeeds if the actual
 7048            value matches the Regex pattern supplied as an argument.
 7049            </summary>
 7050        </member>
 7051        <member name="M:NUnit.Framework.Text.DoesNotMatch(System.String)">
 7052            <summary>
 7053            Returns a constraint that fails if the actual
 7054            value matches the pattern supplied as an argument.
 7055            </summary>
 7056        </member>
 7057        <member name="P:NUnit.Framework.Text.All">
 7058            <summary>
 7059            Returns a ConstraintExpression, which will apply
 7060            the following constraint to all members of a collection,
 7061            succeeding if all of them succeed.
 7062            </summary>
 7063        </member>
 7064        <member name="T:NUnit.Framework.Throws">
 7065            <summary>
 7066            Helper class with properties and methods that supply
 7067            constraints that operate on exceptions.
 7068            </summary>
 7069        </member>
 7070        <member name="M:NUnit.Framework.Throws.TypeOf(System.Type)">
 7071            <summary>
 7072            Creates a constraint specifying the exact type of exception expected
 7073            </summary>
 7074        </member>
 7075        <member name="M:NUnit.Framework.Throws.TypeOf``1">
 7076            <summary>
 7077            Creates a constraint specifying the exact type of exception expected
 7078            </summary>
 7079        </member>
 7080        <member name="M:NUnit.Framework.Throws.InstanceOf(System.Type)">
 7081            <summary>
 7082            Creates a constraint specifying the type of exception expected
 7083            </summary>
 7084        </member>
 7085        <member name="M:NUnit.Framework.Throws.InstanceOf``1">
 7086            <summary>
 7087            Creates a constraint specifying the type of exception expected
 7088            </summary>
 7089        </member>
 7090        <member name="P:NUnit.Framework.Throws.Exception">
 7091            <summary>
 7092            Creates a constraint specifying an expected exception
 7093            </summary>
 7094        </member>
 7095        <member name="P:NUnit.Framework.Throws.InnerException">
 7096            <summary>
 7097            Creates a constraint specifying an exception with a given InnerException
 7098            </summary>
 7099        </member>
 7100        <member name="P:NUnit.Framework.Throws.TargetInvocationException">
 7101            <summary>
 7102            Creates a constraint specifying an expected TargetInvocationException
 7103            </summary>
 7104        </member>
 7105        <member name="P:NUnit.Framework.Throws.ArgumentException">
 7106            <summary>
 7107            Creates a constraint specifying an expected TargetInvocationException
 7108            </summary>
 7109        </member>
 7110        <member name="P:NUnit.Framework.Throws.InvalidOperationException">
 7111            <summary>
 7112            Creates a constraint specifying an expected TargetInvocationException
 7113            </summary>
 7114        </member>
 7115        <member name="P:NUnit.Framework.Throws.Nothing">
 7116            <summary>
 7117            Creates a constraint specifying that no exception is thrown
 7118            </summary>
 7119        </member>
 7120        <member name="T:NUnit.Framework.TestCaseSourceAttribute">
 7121            <summary>
 7122            FactoryAttribute indicates the source to be used to
 7123            provide test cases for a test method.
 7124            </summary>
 7125        </member>
 7126        <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
 7127            <summary>
 7128            Construct with the name of the factory - for use with languages
 7129            that don't support params arrays.
 7130            </summary>
 7131            <param name="sourceName">An array of the names of the factories that will provide data</param>
 7132        </member>
 7133        <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
 7134            <summary>
 7135            Construct with a Type and name - for use with languages
 7136            that don't support params arrays.
 7137            </summary>
 7138            <param name="sourceType">The Type that will provide data</param>
 7139            <param name="sourceName">The name of the method, property or field that will provide data</param>
 7140        </member>
 7141        <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
 7142            <summary>
 7143            The name of a the method, property or fiend to be used as a source
 7144            </summary>
 7145        </member>
 7146        <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
 7147            <summary>
 7148            A Type to be used as a source
 7149            </summary>
 7150        </member>
 7151        <member name="T:NUnit.Framework.ValueSourceAttribute">
 7152            <summary>
 7153            ValueSourceAttribute indicates the source to be used to
 7154            provide data for one parameter of a test method.
 7155            </summary>
 7156        </member>
 7157        <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
 7158            <summary>
 7159            Construct with the name of the factory - for use with languages
 7160            that don't support params arrays.
 7161            </summary>
 7162            <param name="sourceName">The name of the data source to be used</param>
 7163        </member>
 7164        <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
 7165            <summary>
 7166            Construct with a Type and name - for use with languages
 7167            that don't support params arrays.
 7168            </summary>
 7169            <param name="sourceType">The Type that will provide data</param>
 7170            <param name="sourceName">The name of the method, property or field that will provide data</param>
 7171        </member>
 7172        <member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
 7173            <summary>
 7174            The name of a the method, property or fiend to be used as a source
 7175            </summary>
 7176        </member>
 7177        <member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
 7178            <summary>
 7179            A Type to be used as a source
 7180            </summary>
 7181        </member>
 7182        <member name="T:NUnit.Framework.Iz">
 7183            <summary>
 7184            The Iz class is a synonym for Is intended for use in VB,
 7185            which regards Is as a keyword.
 7186            </summary>
 7187        </member>
 7188        <member name="T:NUnit.Framework.TimeoutAttribute">
 7189            <summary>
 7190            WUsed on a method, marks the test with a timeout value in milliseconds. 
 7191            The test will be run in a separate thread and is cancelled if the timeout 
 7192            is exceeded. Used on a method or assembly, sets the default timeout 
 7193            for all contained test methods.
 7194            </summary>
 7195        </member>
 7196        <member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
 7197            <summary>
 7198            Construct a TimeoutAttribute given a time in milliseconds
 7199            </summary>
 7200            <param name="timeout">The timeout value in milliseconds</param>
 7201        </member>
 7202        <member name="T:NUnit.Framework.RequiresSTAAttribute">
 7203            <summary>
 7204            Marks a test that must run in the STA, causing it
 7205            to run in a separate thread if necessary.
 7206            
 7207            On methods, you may also use STAThreadAttribute
 7208            to serve the same purpose.
 7209            </summary>
 7210        </member>
 7211        <member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
 7212            <summary>
 7213            Construct a RequiresSTAAttribute
 7214            </summary>
 7215        </member>
 7216        <member name="T:NUnit.Framework.RequiresMTAAttribute">
 7217            <summary>
 7218            Marks a test that must run in the MTA, causing it
 7219            to run in a separate thread if necessary.
 7220            
 7221            On methods, you may also use MTAThreadAttribute
 7222            to serve the same purpose.
 7223            </summary>
 7224        </member>
 7225        <member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
 7226            <summary>
 7227            Construct a RequiresMTAAttribute
 7228            </summary>
 7229        </member>
 7230        <member name="T:NUnit.Framework.RequiresThreadAttribute">
 7231            <summary>
 7232            Marks a test that must run on a separate thread.
 7233            </summary>
 7234        </member>
 7235        <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
 7236            <summary>
 7237            Construct a RequiresThreadAttribute
 7238            </summary>
 7239        </member>
 7240        <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
 7241            <summary>
 7242            Construct a RequiresThreadAttribute, specifying the apartment
 7243            </summary>
 7244        </member>
 7245        <member name="T:NUnit.Framework.MaxTimeAttribute">
 7246            <summary>
 7247            Summary description for MaxTimeAttribute.
 7248            </summary>
 7249        </member>
 7250        <member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
 7251            <summary>
 7252            Construct a MaxTimeAttribute, given a time in milliseconds.
 7253            </summary>
 7254            <param name="milliseconds">The maximum elapsed time in milliseconds</param>
 7255        </member>
 7256        <member name="T:NUnit.Framework.RepeatAttribute">
 7257            <summary>
 7258            RepeatAttribute may be applied to test case in order
 7259            to run it multiple times.
 7260            </summary>
 7261        </member>
 7262        <member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
 7263            <summary>
 7264            Construct a RepeatAttribute
 7265            </summary>
 7266            <param name="count">The number of times to run the test</param>
 7267        </member>
 7268        <member name="T:NUnit.Framework.Assume">
 7269            <summary>
 7270            Provides static methods to express the assumptions
 7271            that must be met for a test to give a meaningful
 7272            result. If an assumption is not met, the test
 7273            should produce an inconclusive result.
 7274            </summary>
 7275        </member>
 7276        <member name="M:NUnit.Framework.Assume.Equals(System.Object,System.Object)">
 7277            <summary>
 7278            The Equals method throws an AssertionException. This is done 
 7279            to make sure there is no mistake by calling this function.
 7280            </summary>
 7281            <param name="a"></param>
 7282            <param name="b"></param>
 7283        </member>
 7284        <member name="M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)">
 7285            <summary>
 7286            override the default ReferenceEquals to throw an AssertionException. This 
 7287            implementation makes sure there is no mistake in calling this function 
 7288            as part of Assert. 
 7289            </summary>
 7290            <param name="a"></param>
 7291            <param name="b"></param>
 7292        </member>
 7293        <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
 7294            <summary>
 7295            Apply a constraint to an actual value, succeeding if the constraint
 7296            is satisfied and throwing an InconclusiveException on failure.
 7297            </summary>
 7298            <param name="expression">A Constraint expression to be applied</param>
 7299            <param name="actual">The actual value to test</param>
 7300        </member>
 7301        <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 7302            <summary>
 7303            Apply a constraint to an actual value, succeeding if the constraint
 7304            is satisfied and throwing an InconclusiveException on failure.
 7305            </summary>
 7306            <param name="expression">A Constraint expression to be applied</param>
 7307            <param name="actual">The actual value to test</param>
 7308            <param name="message">The message that will be displayed on failure</param>
 7309        </member>
 7310        <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 7311            <summary>
 7312            Apply a constraint to an actual value, succeeding if the constraint
 7313            is satisfied and throwing an InconclusiveException on failure.
 7314            </summary>
 7315            <param name="expression">A Constraint expression to be applied</param>
 7316            <param name="actual">The actual value to test</param>
 7317            <param name="message">The message that will be displayed on failure</param>
 7318            <param name="args">Arguments to be used in formatting the message</param>
 7319        </member>
 7320        <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
 7321            <summary>
 7322            Apply a constraint to an actual value, succeeding if the constraint
 7323            is satisfied and throwing an InconclusiveException on failure.
 7324            </summary>
 7325            <param name="expr">A Constraint expression to be applied</param>
 7326            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 7327        </member>
 7328        <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 7329            <summary>
 7330            Apply a constraint to an actual value, succeeding if the constraint
 7331            is satisfied and throwing an InconclusiveException on failure.
 7332            </summary>
 7333            <param name="expr">A Constraint expression to be applied</param>
 7334            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 7335            <param name="message">The message that will be displayed on failure</param>
 7336        </member>
 7337        <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 7338            <summary>
 7339            Apply a constraint to an actual value, succeeding if the constraint
 7340            is satisfied and throwing an InconclusiveException on failure.
 7341            </summary>
 7342            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 7343            <param name="expr">A Constraint expression to be applied</param>
 7344            <param name="message">The message that will be displayed on failure</param>
 7345            <param name="args">Arguments to be used in formatting the message</param>
 7346        </member>
 7347        <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
 7348            <summary>
 7349            Apply a constraint to a referenced value, succeeding if the constraint
 7350            is satisfied and throwing an InconclusiveException on failure.
 7351            </summary>
 7352            <param name="expression">A Constraint expression to be applied</param>
 7353            <param name="actual">The actual value to test</param>
 7354        </member>
 7355        <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 7356            <summary>
 7357            Apply a constraint to a referenced value, succeeding if the constraint
 7358            is satisfied and throwing an InconclusiveException on failure.
 7359            </summary>
 7360            <param name="expression">A Constraint expression to be applied</param>
 7361            <param name="actual">The actual value to test</param>
 7362            <param name="message">The message that will be displayed on failure</param>
 7363        </member>
 7364        <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 7365            <summary>
 7366            Apply a constraint to a referenced value, succeeding if the constraint
 7367            is satisfied and throwing an InconclusiveException on failure.
 7368            </summary>
 7369            <param name="expression">A Constraint expression to be applied</param>
 7370            <param name="actual">The actual value to test</param>
 7371            <param name="message">The message that will be displayed on failure</param>
 7372            <param name="args">Arguments to be used in formatting the message</param>
 7373        </member>
 7374        <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String,System.Object[])">
 7375            <summary>
 7376            Asserts that a condition is true. If the condition is false the method throws
 7377            an <see cref="T:NUnit.Framework.InconclusiveException"/>.
 7378            </summary> 
 7379            <param name="condition">The evaluated condition</param>
 7380            <param name="message">The message to display if the condition is false</param>
 7381            <param name="args">Arguments to be used in formatting the message</param>
 7382        </member>
 7383        <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String)">
 7384            <summary>
 7385            Asserts that a condition is true. If the condition is false the method throws
 7386            an <see cref="T:NUnit.Framework.InconclusiveException"/>.
 7387            </summary>
 7388            <param name="condition">The evaluated condition</param>
 7389            <param name="message">The message to display if the condition is false</param>
 7390        </member>
 7391        <member name="M:NUnit.Framework.Assume.That(System.Boolean)">
 7392            <summary>
 7393            Asserts that a condition is true. If the condition is false the 
 7394            method throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
 7395            </summary>
 7396            <param name="condition">The evaluated condition</param>
 7397        </member>
 7398        <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
 7399            <summary>
 7400            Asserts that the code represented by a delegate throws an exception
 7401            that satisfies the constraint provided.
 7402            </summary>
 7403            <param name="code">A TestDelegate to be executed</param>
 7404            <param name="constraint">A ThrowsConstraint used in the test</param>
 7405        </member>
 7406        <member name="T:NUnit.Framework.Randomizer">
 7407            <summary>
 7408            Randomizer returns a set of random values in a repeatable
 7409            way, to allow re-running of tests if necessary.
 7410            </summary>
 7411        </member>
 7412        <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.MemberInfo)">
 7413            <summary>
 7414            Get a randomizer for a particular member, returning
 7415            one that has already been created if it exists.
 7416            This ensures that the same values are generated
 7417            each time the tests are reloaded.
 7418            </summary>
 7419        </member>
 7420        <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.ParameterInfo)">
 7421            <summary>
 7422            Get a randomizer for a particular parameter, returning
 7423            one that has already been created if it exists.
 7424            This ensures that the same values are generated
 7425            each time the tests are reloaded.
 7426            </summary>
 7427        </member>
 7428        <member name="M:NUnit.Framework.Randomizer.#ctor">
 7429            <summary>
 7430            Construct a randomizer using a random seed
 7431            </summary>
 7432        </member>
 7433        <member name="M:NUnit.Framework.Randomizer.#ctor(System.Int32)">
 7434            <summary>
 7435            Construct a randomizer using a specified seed
 7436            </summary>
 7437        </member>
 7438        <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Int32)">
 7439            <summary>
 7440            Return an array of random doubles between 0.0 and 1.0.
 7441            </summary>
 7442            <param name="count"></param>
 7443            <returns></returns>
 7444        </member>
 7445        <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Double,System.Double,System.Int32)">
 7446            <summary>
 7447            Return an array of random doubles with values in a specified range.
 7448            </summary>
 7449        </member>
 7450        <member name="M:NUnit.Framework.Randomizer.GetInts(System.Int32,System.Int32,System.Int32)">
 7451            <summary>
 7452            Return an array of random ints with values in a specified range.
 7453            </summary>
 7454        </member>
 7455        <member name="P:NUnit.Framework.Randomizer.RandomSeed">
 7456            <summary>
 7457            Get a random seed for use in creating a randomizer.
 7458            </summary>
 7459        </member>
 7460        <member name="T:NUnit.Framework.TheoryAttribute">
 7461            <summary>
 7462            Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/> 
 7463            class makes the method callable from the NUnit test runner. There is a property 
 7464            called Description which is optional which you can provide a more detailed test
 7465            description. This class cannot be inherited.
 7466            </summary>
 7467            
 7468            <example>
 7469            [TestFixture]
 7470            public class Fixture
 7471            {
 7472              [Test]
 7473              public void MethodToTest()
 7474              {}
 7475              
 7476              [Test(Description = "more detailed description")]
 7477              publc void TestDescriptionMethod()
 7478              {}
 7479            }
 7480            </example>
 7481            
 7482        </member>
 7483        <member name="T:NUnit.Framework.DatapointAttribute">
 7484            <summary>
 7485            Used to mark a field for use as a datapoint when executing a theory
 7486            within the same fixture that requires an argument of the field's Type.
 7487            </summary>
 7488        </member>
 7489        <member name="T:NUnit.Framework.DatapointsAttribute">
 7490            <summary>
 7491            Used to mark an array as containing a set of datapoints to be used
 7492            executing a theory within the same fixture that requires an argument 
 7493            of the Type of the array elements.
 7494            </summary>
 7495        </member>
 7496        <member name="T:NUnit.Framework.SpecialValue">
 7497            <summary>
 7498            The SpecialValue enum is used to represent TestCase arguments
 7499            that cannot be used as arguments to an Attribute.
 7500            </summary>
 7501        </member>
 7502        <member name="F:NUnit.Framework.SpecialValue.Null">
 7503            <summary>
 7504            Null represents a null value, which cannot be used as an 
 7505            argument to an attriute under .NET 1.x
 7506            </summary>
 7507        </member>
 7508        <member name="T:NUnit.Framework.SetUICultureAttribute">
 7509            <summary>
 7510            Summary description for SetUICultureAttribute.
 7511            </summary>
 7512        </member>
 7513        <member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
 7514            <summary>
 7515            Construct given the name of a culture
 7516            </summary>
 7517            <param name="culture"></param>
 7518        </member>
 7519        <member name="T:NUnit.Framework.TestDelegate">
 7520            <summary>
 7521            Delegate used by tests that execute code and
 7522            capture any thrown exception.
 7523            </summary>
 7524        </member>
 7525        <member name="T:NUnit.Framework.Assert">
 7526            <summary>
 7527            The Assert class contains a collection of static methods that
 7528            implement the most common assertions used in NUnit.
 7529            </summary>
 7530        </member>
 7531        <member name="M:NUnit.Framework.Assert.#ctor">
 7532            <summary>
 7533            We don't actually want any instances of this object, but some people
 7534            like to inherit from it to add other static methods. Hence, the
 7535            protected constructor disallows any instances of this object. 
 7536            </summary>
 7537        </member>
 7538        <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
 7539            <summary>
 7540            The Equals method throws an AssertionException. This is done 
 7541            to make sure there is no mistake by calling this function.
 7542            </summary>
 7543            <param name="a"></param>
 7544            <param name="b"></param>
 7545        </member>
 7546        <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
 7547            <summary>
 7548            override the default ReferenceEquals to throw an AssertionException. This 
 7549            implementation makes sure there is no mistake in calling this function 
 7550            as part of Assert. 
 7551            </summary>
 7552            <param name="a"></param>
 7553            <param name="b"></param>
 7554        </member>
 7555        <member name="M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
 7556            <summary>
 7557            Helper for Assert.AreEqual(double expected, double actual, ...)
 7558            allowing code generation to work consistently.
 7559            </summary>
 7560            <param name="expected">The expected value</param>
 7561            <param name="actual">The actual value</param>
 7562            <param name="delta">The maximum acceptable difference between the
 7563            the expected and the actual</param>
 7564            <param name="message">The message to display in case of failure</param>
 7565            <param name="args">Array of objects to be used in formatting the message</param>
 7566        </member>
 7567        <member name="M:NUnit.Framework.Assert.Pass(System.String,System.Object[])">
 7568            <summary>
 7569            Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments 
 7570            that are passed in. This allows a test to be cut short, with a result
 7571            of success returned to NUnit.
 7572            </summary>
 7573            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 7574            <param name="args">Arguments to be used in formatting the message</param>
 7575        </member>
 7576        <member name="M:NUnit.Framework.Assert.Pass(System.String)">
 7577            <summary>
 7578            Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments 
 7579            that are passed in. This allows a test to be cut short, with a result
 7580            of success returned to NUnit.
 7581            </summary>
 7582            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 7583        </member>
 7584        <member name="M:NUnit.Framework.Assert.Pass">
 7585            <summary>
 7586            Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments 
 7587            that are passed in. This allows a test to be cut short, with a result
 7588            of success returned to NUnit.
 7589            </summary>
 7590        </member>
 7591        <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
 7592            <summary>
 7593            Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments 
 7594            that are passed in. This is used by the other Assert functions. 
 7595            </summary>
 7596            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 7597            <param name="args">Arguments to be used in formatting the message</param>
 7598        </member>
 7599        <member name="M:NUnit.Framework.Assert.Fail(System.String)">
 7600            <summary>
 7601            Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is 
 7602            passed in. This is used by the other Assert functions. 
 7603            </summary>
 7604            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 7605        </member>
 7606        <member name="M:NUnit.Framework.Assert.Fail">
 7607            <summary>
 7608            Throws an <see cref="T:NUnit.Framework.AssertionException"/>. 
 7609            This is used by the other Assert functions. 
 7610            </summary>
 7611        </member>
 7612        <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
 7613            <summary>
 7614            Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments 
 7615            that are passed in.  This causes the test to be reported as ignored.
 7616            </summary>
 7617            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 7618            <param name="args">Arguments to be used in formatting the message</param>
 7619        </member>
 7620        <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
 7621            <summary>
 7622            Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is 
 7623            passed in. This causes the test to be reported as ignored. 
 7624            </summary>
 7625            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 7626        </member>
 7627        <member name="M:NUnit.Framework.Assert.Ignore">
 7628            <summary>
 7629            Throws an <see cref="T:NUnit.Framework.IgnoreException"/>. 
 7630            This causes the test to be reported as ignored. 
 7631            </summary>
 7632        </member>
 7633        <member name="M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
 7634            <summary>
 7635            Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message and arguments 
 7636            that are passed in.  This causes the test to be reported as inconclusive.
 7637            </summary>
 7638            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
 7639            <param name="args">Arguments to be used in formatting the message</param>
 7640        </member>
 7641        <member name="M:NUnit.Framework.Assert.Inconclusive(System.String)">
 7642            <summary>
 7643            Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message that is 
 7644            passed in. This causes the test to be reported as inconclusive. 
 7645            </summary>
 7646            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
 7647        </member>
 7648        <member name="M:NUnit.Framework.Assert.Inconclusive">
 7649            <summary>
 7650            Throws an <see cref="T:NUnit.Framework.InconclusiveException"/>. 
 7651            This causes the test to be reported as Inconclusive. 
 7652            </summary>
 7653        </member>
 7654        <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
 7655            <summary>
 7656            Apply a constraint to an actual value, succeeding if the constraint
 7657            is satisfied and throwing an assertion exception on failure.
 7658            </summary>
 7659            <param name="expression">A Constraint to be applied</param>
 7660            <param name="actual">The actual value to test</param>
 7661        </member>
 7662        <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 7663            <summary>
 7664            Apply a constraint to an actual value, succeeding if the constraint
 7665            is satisfied and throwing an assertion exception on failure.
 7666            </summary>
 7667            <param name="expression">A Constraint to be applied</param>
 7668            <param name="actual">The actual value to test</param>
 7669            <param name="message">The message that will be displayed on failure</param>
 7670        </member>
 7671        <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 7672            <summary>
 7673            Apply a constraint to an actual value, succeeding if the constraint
 7674            is satisfied and throwing an assertion exception on failure.
 7675            </summary>
 7676            <param name="expression">A Constraint expression to be applied</param>
 7677            <param name="actual">The actual value to test</param>
 7678            <param name="message">The message that will be displayed on failure</param>
 7679            <param name="args">Arguments to be used in formatting the message</param>
 7680        </member>
 7681        <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
 7682            <summary>
 7683            Apply a constraint to an actual value, succeeding if the constraint
 7684            is satisfied and throwing an assertion exception on failure.
 7685            </summary>
 7686            <param name="expr">A Constraint expression to be applied</param>
 7687            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 7688        </member>
 7689        <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 7690            <summary>
 7691            Apply a constraint to an actual value, succeeding if the constraint
 7692            is satisfied and throwing an assertion exception on failure.
 7693            </summary>
 7694            <param name="expr">A Constraint expression to be applied</param>
 7695            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 7696            <param name="message">The message that will be displayed on failure</param>
 7697        </member>
 7698        <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 7699            <summary>
 7700            Apply a constraint to an actual value, succeeding if the constraint
 7701            is satisfied and throwing an assertion exception on failure.
 7702            </summary>
 7703            <param name="del">An ActualValueDelegate returning the value to be tested</param>
 7704            <param name="expr">A Constraint expression to be applied</param>
 7705            <param name="message">The message that will be displayed on failure</param>
 7706            <param name="args">Arguments to be used in formatting the message</param>
 7707        </member>
 7708        <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
 7709            <summary>
 7710            Apply a constraint to a referenced value, succeeding if the constraint
 7711            is satisfied and throwing an assertion exception on failure.
 7712            </summary>
 7713            <param name="expression">A Constraint to be applied</param>
 7714            <param name="actual">The actual value to test</param>
 7715        </member>
 7716        <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
 7717            <summary>
 7718            Apply a constraint to a referenced value, succeeding if the constraint
 7719            is satisfied and throwing an assertion exception on failure.
 7720            </summary>
 7721            <param name="expression">A Constraint to be applied</param>
 7722            <param name="actual">The actual value to test</param>
 7723            <param name="message">The message that will be displayed on failure</param>
 7724        </member>
 7725        <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
 7726            <summary>
 7727            Apply a constraint to a referenced value, succeeding if the constraint
 7728            is satisfied and throwing an assertion exception on failure.
 7729            </summary>
 7730            <param name="expression">A Constraint to be applied</param>
 7731            <param name="actual">The actual value to test</param>
 7732            <param name="message">The message that will be displayed on failure</param>
 7733            <param name="args">Arguments to be used in formatting the message</param>
 7734        </member>
 7735        <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
 7736            <summary>
 7737            Asserts that a condition is true. If the condition is false the method throws
 7738            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7739            </summary> 
 7740            <param name="condition">The evaluated condition</param>
 7741            <param name="message">The message to display if the condition is false</param>
 7742            <param name="args">Arguments to be used in formatting the message</param>
 7743        </member>
 7744        <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
 7745            <summary>
 7746            Asserts that a condition is true. If the condition is false the method throws
 7747            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7748            </summary>
 7749            <param name="condition">The evaluated condition</param>
 7750            <param name="message">The message to display if the condition is false</param>
 7751        </member>
 7752        <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
 7753            <summary>
 7754            Asserts that a condition is true. If the condition is false the method throws
 7755            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7756            </summary>
 7757            <param name="condition">The evaluated condition</param>
 7758        </member>
 7759        <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
 7760            <summary>
 7761            Asserts that the code represented by a delegate throws an exception
 7762            that satisfies the constraint provided.
 7763            </summary>
 7764            <param name="code">A TestDelegate to be executed</param>
 7765            <param name="constraint">A ThrowsConstraint used in the test</param>
 7766        </member>
 7767        <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7768            <summary>
 7769            Verifies that a delegate throws a particular exception when called.
 7770            </summary>
 7771            <param name="expression">A constraint to be satisfied by the exception</param>
 7772            <param name="code">A TestSnippet delegate</param>
 7773            <param name="message">The message that will be displayed on failure</param>
 7774            <param name="args">Arguments to be used in formatting the message</param>
 7775        </member>
 7776        <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)">
 7777            <summary>
 7778            Verifies that a delegate throws a particular exception when called.
 7779            </summary>
 7780            <param name="expression">A constraint to be satisfied by the exception</param>
 7781            <param name="code">A TestSnippet delegate</param>
 7782            <param name="message">The message that will be displayed on failure</param>
 7783        </member>
 7784        <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)">
 7785            <summary>
 7786            Verifies that a delegate throws a particular exception when called.
 7787            </summary>
 7788            <param name="expression">A constraint to be satisfied by the exception</param>
 7789            <param name="code">A TestSnippet delegate</param>
 7790        </member>
 7791        <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7792            <summary>
 7793            Verifies that a delegate throws a particular exception when called.
 7794            </summary>
 7795            <param name="expectedExceptionType">The exception Type expected</param>
 7796            <param name="code">A TestSnippet delegate</param>
 7797            <param name="message">The message that will be displayed on failure</param>
 7798            <param name="args">Arguments to be used in formatting the message</param>
 7799        </member>
 7800        <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)">
 7801            <summary>
 7802            Verifies that a delegate throws a particular exception when called.
 7803            </summary>
 7804            <param name="expectedExceptionType">The exception Type expected</param>
 7805            <param name="code">A TestSnippet delegate</param>
 7806            <param name="message">The message that will be displayed on failure</param>
 7807        </member>
 7808        <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)">
 7809            <summary>
 7810            Verifies that a delegate throws a particular exception when called.
 7811            </summary>
 7812            <param name="expectedExceptionType">The exception Type expected</param>
 7813            <param name="code">A TestSnippet delegate</param>
 7814        </member>
 7815        <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7816            <summary>
 7817            Verifies that a delegate throws a particular exception when called.
 7818            </summary>
 7819            <typeparam name="T">Type of the expected exception</typeparam>
 7820            <param name="code">A TestSnippet delegate</param>
 7821            <param name="message">The message that will be displayed on failure</param>
 7822            <param name="args">Arguments to be used in formatting the message</param>
 7823        </member>
 7824        <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)">
 7825            <summary>
 7826            Verifies that a delegate throws a particular exception when called.
 7827            </summary>
 7828            <typeparam name="T">Type of the expected exception</typeparam>
 7829            <param name="code">A TestSnippet delegate</param>
 7830            <param name="message">The message that will be displayed on failure</param>
 7831        </member>
 7832        <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)">
 7833            <summary>
 7834            Verifies that a delegate throws a particular exception when called.
 7835            </summary>
 7836            <typeparam name="T">Type of the expected exception</typeparam>
 7837            <param name="code">A TestSnippet delegate</param>
 7838        </member>
 7839        <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7840            <summary>
 7841            Verifies that a delegate throws an exception when called
 7842            and returns it.
 7843            </summary>
 7844            <param name="code">A TestDelegate</param>
 7845            <param name="message">The message that will be displayed on failure</param>
 7846            <param name="args">Arguments to be used in formatting the message</param>
 7847        </member>
 7848        <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String)">
 7849            <summary>
 7850            Verifies that a delegate throws an exception when called
 7851            and returns it.
 7852            </summary>
 7853            <param name="code">A TestDelegate</param>
 7854            <param name="message">The message that will be displayed on failure</param>
 7855        </member>
 7856        <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)">
 7857            <summary>
 7858            Verifies that a delegate throws an exception when called
 7859            and returns it.
 7860            </summary>
 7861            <param name="code">A TestDelegate</param>
 7862        </member>
 7863        <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7864            <summary>
 7865            Verifies that a delegate throws an exception of a certain Type
 7866            or one derived from it when called and returns it.
 7867            </summary>
 7868            <param name="expectedExceptionType">The expected Exception Type</param>
 7869            <param name="code">A TestDelegate</param>
 7870            <param name="message">The message that will be displayed on failure</param>
 7871            <param name="args">Arguments to be used in formatting the message</param>
 7872        </member>
 7873        <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)">
 7874            <summary>
 7875            Verifies that a delegate throws an exception of a certain Type
 7876            or one derived from it when called and returns it.
 7877            </summary>
 7878            <param name="expectedExceptionType">The expected Exception Type</param>
 7879            <param name="code">A TestDelegate</param>
 7880            <param name="message">The message that will be displayed on failure</param>
 7881        </member>
 7882        <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)">
 7883            <summary>
 7884            Verifies that a delegate throws an exception of a certain Type
 7885            or one derived from it when called and returns it.
 7886            </summary>
 7887            <param name="expectedExceptionType">The expected Exception Type</param>
 7888            <param name="code">A TestDelegate</param>
 7889        </member>
 7890        <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7891            <summary>
 7892            Verifies that a delegate throws an exception of a certain Type
 7893            or one derived from it when called and returns it.
 7894            </summary>
 7895            <typeparam name="T">The expected Exception Type</typeparam>
 7896            <param name="code">A TestDelegate</param>
 7897            <param name="message">The message that will be displayed on failure</param>
 7898            <param name="args">Arguments to be used in formatting the message</param>
 7899        </member>
 7900        <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)">
 7901            <summary>
 7902            Verifies that a delegate throws an exception of a certain Type
 7903            or one derived from it when called and returns it.
 7904            </summary>
 7905            <typeparam name="T">The expected Exception Type</typeparam>
 7906            <param name="code">A TestDelegate</param>
 7907            <param name="message">The message that will be displayed on failure</param>
 7908        </member>
 7909        <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)">
 7910            <summary>
 7911            Verifies that a delegate throws an exception of a certain Type
 7912            or one derived from it when called and returns it.
 7913            </summary>
 7914            <typeparam name="T">The expected Exception Type</typeparam>
 7915            <param name="code">A TestDelegate</param>
 7916        </member>
 7917        <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])">
 7918            <summary>
 7919            Verifies that a delegate does not throw an exception
 7920            </summary>
 7921            <param name="code">A TestSnippet delegate</param>
 7922            <param name="message">The message that will be displayed on failure</param>
 7923            <param name="args">Arguments to be used in formatting the message</param>
 7924        </member>
 7925        <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)">
 7926            <summary>
 7927            Verifies that a delegate does not throw an exception.
 7928            </summary>
 7929            <param name="code">A TestSnippet delegate</param>
 7930            <param name="message">The message that will be displayed on failure</param>
 7931        </member>
 7932        <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)">
 7933            <summary>
 7934            Verifies that a delegate does not throw an exception.
 7935            </summary>
 7936            <param name="code">A TestSnippet delegate</param>
 7937        </member>
 7938        <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])">
 7939            <summary>
 7940            Asserts that a condition is true. If the condition is false the method throws
 7941            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7942            </summary>
 7943            <param name="condition">The evaluated condition</param>
 7944            <param name="message">The message to display in case of failure</param>
 7945            <param name="args">Array of objects to be used in formatting the message</param>
 7946        </member>
 7947        <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String)">
 7948            <summary>
 7949            Asserts that a condition is true. If the condition is false the method throws
 7950            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7951            </summary>
 7952            <param name="condition">The evaluated condition</param>
 7953            <param name="message">The message to display in case of failure</param>
 7954        </member>
 7955        <member name="M:NUnit.Framework.Assert.True(System.Boolean)">
 7956            <summary>
 7957            Asserts that a condition is true. If the condition is false the method throws
 7958            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7959            </summary>
 7960            <param name="condition">The evaluated condition</param>
 7961        </member>
 7962        <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
 7963            <summary>
 7964            Asserts that a condition is true. If the condition is false the method throws
 7965            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7966            </summary>
 7967            <param name="condition">The evaluated condition</param>
 7968            <param name="message">The message to display in case of failure</param>
 7969            <param name="args">Array of objects to be used in formatting the message</param>
 7970        </member>
 7971        <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
 7972            <summary>
 7973            Asserts that a condition is true. If the condition is false the method throws
 7974            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7975            </summary>
 7976            <param name="condition">The evaluated condition</param>
 7977            <param name="message">The message to display in case of failure</param>
 7978        </member>
 7979        <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
 7980            <summary>
 7981            Asserts that a condition is true. If the condition is false the method throws
 7982            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7983            </summary>
 7984            <param name="condition">The evaluated condition</param>
 7985        </member>
 7986        <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])">
 7987            <summary>
 7988            Asserts that a condition is false. If the condition is true the method throws
 7989            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7990            </summary> 
 7991            <param name="condition">The evaluated condition</param>
 7992            <param name="message">The message to display in case of failure</param>
 7993            <param name="args">Array of objects to be used in formatting the message</param>
 7994        </member>
 7995        <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String)">
 7996            <summary>
 7997            Asserts that a condition is false. If the condition is true the method throws
 7998            an <see cref="T:NUnit.Framework.AssertionException"/>.
 7999            </summary> 
 8000            <param name="condition">The evaluated condition</param>
 8001            <param name="message">The message to display in case of failure</param>
 8002        </member>
 8003        <member name="M:NUnit.Framework.Assert.False(System.Boolean)">
 8004            <summary>
 8005            Asserts that a condition is false. If the condition is true the method throws
 8006            an <see cref="T:NUnit.Framework.AssertionException"/>.
 8007            </summary> 
 8008            <param name="condition">The evaluated condition</param>
 8009        </member>
 8010        <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
 8011            <summary>
 8012            Asserts that a condition is false. If the condition is true the method throws
 8013            an <see cref="T:NUnit.Framework.AssertionException"/>.
 8014            </summary> 
 8015            <param name="condition">The evaluated condition</param>
 8016            <param name="message">The message to display in case of failure</param>
 8017            <param name="args">Array of objects to be used in formatting the message</param>
 8018        </member>
 8019        <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
 8020            <summary>
 8021            Asserts that a condition is false. If the condition is true the method throws
 8022            an <see cref="T:NUnit.Framework.AssertionException"/>.
 8023            </summary> 
 8024            <param name="condition">The evaluated condition</param>
 8025            <param name="message">The message to display in case of failure</param>
 8026        </member>
 8027        <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
 8028            <summary>
 8029            Asserts that a condition is false. If the condition is true the method throws
 8030            an <see cref="T:NUnit.Framework.AssertionException"/>.
 8031            </summary> 
 8032            <param name="condition">The evaluated condition</param>
 8033        </member>
 8034        <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])">
 8035            <summary>
 8036            Verifies that the object that is passed in is not equal to <code>null</code>
 8037            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8038            is thrown.
 8039            </summary>
 8040            <param name="anObject">The object that is to be tested</param>
 8041            <param name="message">The message to display in case of failure</param>
 8042            <param name="args">Array of objects to be used in formatting the message</param>
 8043        </member>
 8044        <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String)">
 8045            <summary>
 8046            Verifies that the object that is passed in is not equal to <code>null</code>
 8047            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8048            is thrown.
 8049            </summary>
 8050            <param name="anObject">The object that is to be tested</param>
 8051            <param name="message">The message to display in case of failure</param>
 8052        </member>
 8053        <member name="M:NUnit.Framework.Assert.NotNull(System.Object)">
 8054            <summary>
 8055            Verifies that the object that is passed in is not equal to <code>null</code>
 8056            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8057            is thrown.
 8058            </summary>
 8059            <param name="anObject">The object that is to be tested</param>
 8060        </member>
 8061        <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
 8062            <summary>
 8063            Verifies that the object that is passed in is not equal to <code>null</code>
 8064            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8065            is thrown.
 8066            </summary>
 8067            <param name="anObject">The object that is to be tested</param>
 8068            <param name="message">The message to display in case of failure</param>
 8069            <param name="args">Array of objects to be used in formatting the message</param>
 8070        </member>
 8071        <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
 8072            <summary>
 8073            Verifies that the object that is passed in is not equal to <code>null</code>
 8074            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8075            is thrown.
 8076            </summary>
 8077            <param name="anObject">The object that is to be tested</param>
 8078            <param name="message">The message to display in case of failure</param>
 8079        </member>
 8080        <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
 8081            <summary>
 8082            Verifies that the object that is passed in is not equal to <code>null</code>
 8083            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8084            is thrown.
 8085            </summary>
 8086            <param name="anObject">The object that is to be tested</param>
 8087        </member>
 8088        <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])">
 8089            <summary>
 8090            Verifies that the object that is passed in is equal to <code>null</code>
 8091            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8092            is thrown.
 8093            </summary>
 8094            <param name="anObject">The object that is to be tested</param>
 8095            <param name="message">The message to display in case of failure</param>
 8096            <param name="args">Array of objects to be used in formatting the message</param>
 8097        </member>
 8098        <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String)">
 8099            <summary>
 8100            Verifies that the object that is passed in is equal to <code>null</code>
 8101            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8102            is thrown.
 8103            </summary>
 8104            <param name="anObject">The object that is to be tested</param>
 8105            <param name="message">The message to display in case of failure</param>
 8106        </member>
 8107        <member name="M:NUnit.Framework.Assert.Null(System.Object)">
 8108            <summary>
 8109            Verifies that the object that is passed in is equal to <code>null</code>
 8110            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8111            is thrown.
 8112            </summary>
 8113            <param name="anObject">The object that is to be tested</param>
 8114        </member>
 8115        <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
 8116            <summary>
 8117            Verifies that the object that is passed in is equal to <code>null</code>
 8118            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8119            is thrown.
 8120            </summary>
 8121            <param name="anObject">The object that is to be tested</param>
 8122            <param name="message">The message to display in case of failure</param>
 8123            <param name="args">Array of objects to be used in formatting the message</param>
 8124        </member>
 8125        <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
 8126            <summary>
 8127            Verifies that the object that is passed in is equal to <code>null</code>
 8128            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8129            is thrown.
 8130            </summary>
 8131            <param name="anObject">The object that is to be tested</param>
 8132            <param name="message">The message to display in case of failure</param>
 8133        </member>
 8134        <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
 8135            <summary>
 8136            Verifies that the object that is passed in is equal to <code>null</code>
 8137            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8138            is thrown.
 8139            </summary>
 8140            <param name="anObject">The object that is to be tested</param>
 8141        </member>
 8142        <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
 8143            <summary>
 8144            Verifies that the double that is passed in is an <code>NaN</code> value.
 8145            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8146            is thrown.
 8147            </summary>
 8148            <param name="aDouble">The value that is to be tested</param>
 8149            <param name="message">The message to display in case of failure</param>
 8150            <param name="args">Array of objects to be used in formatting the message</param>
 8151        </member>
 8152        <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
 8153            <summary>
 8154            Verifies that the double that is passed in is an <code>NaN</code> value.
 8155            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8156            is thrown.
 8157            </summary>
 8158            <param name="aDouble">The value that is to be tested</param>
 8159            <param name="message">The message to display in case of failure</param>
 8160        </member>
 8161        <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
 8162            <summary>
 8163            Verifies that the double that is passed in is an <code>NaN</code> value.
 8164            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8165            is thrown.
 8166            </summary>
 8167            <param name="aDouble">The value that is to be tested</param>
 8168        </member>
 8169        <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])">
 8170            <summary>
 8171            Verifies that the double that is passed in is an <code>NaN</code> value.
 8172            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8173            is thrown.
 8174            </summary>
 8175            <param name="aDouble">The value that is to be tested</param>
 8176            <param name="message">The message to display in case of failure</param>
 8177            <param name="args">Array of objects to be used in formatting the message</param>
 8178        </member>
 8179        <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)">
 8180            <summary>
 8181            Verifies that the double that is passed in is an <code>NaN</code> value.
 8182            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8183            is thrown.
 8184            </summary>
 8185            <param name="aDouble">The value that is to be tested</param>
 8186            <param name="message">The message to display in case of failure</param>
 8187        </member>
 8188        <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})">
 8189            <summary>
 8190            Verifies that the double that is passed in is an <code>NaN</code> value.
 8191            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 8192            is thrown.
 8193            </summary>
 8194            <param name="aDouble">The value that is to be tested</param>
 8195        </member>
 8196        <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
 8197            <summary>
 8198            Assert that a string is empty - that is equal to string.Empty
 8199            </summary>
 8200            <param name="aString">The string to be tested</param>
 8201            <param name="message">The message to display in case of failure</param>
 8202            <param name="args">Array of objects to be used in formatting the message</param>
 8203        </member>
 8204        <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
 8205            <summary>
 8206            Assert that a string is empty - that is equal to string.Empty
 8207            </summary>
 8208            <param name="aString">The string to be tested</param>
 8209            <param name="message">The message to display in case of failure</param>
 8210        </member>
 8211        <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
 8212            <summary>
 8213            Assert that a string is empty - that is equal to string.Empty
 8214            </summary>
 8215            <param name="aString">The string to be tested</param>
 8216        </member>
 8217        <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
 8218            <summary>
 8219            Assert that an array, list or other collection is empty
 8220            </summary>
 8221            <param name="collection">An array, list or other collection implementing ICollection</param>
 8222            <param name="message">The message to display in case of failure</param>
 8223            <param name="args">Array of objects to be used in formatting the message</param>
 8224        </member>
 8225        <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
 8226            <summary>
 8227            Assert that an array, list or other collection is empty
 8228            </summary>
 8229            <param name="collection">An array, list or other collection implementing ICollection</param>
 8230            <param name="message">The message to display in case of failure</param>
 8231        </member>
 8232        <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
 8233            <summary>
 8234            Assert that an array, list or other collection is empty
 8235            </summary>
 8236            <param name="collection">An array, list or other collection implementing ICollection</param>
 8237        </member>
 8238        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
 8239            <summary>
 8240            Assert that a string is not empty - that is not equal to string.Empty
 8241            </summary>
 8242            <param name="aString">The string to be tested</param>
 8243            <param name="message">The message to display in case of failure</param>
 8244            <param name="args">Array of objects to be used in formatting the message</param>
 8245        </member>
 8246        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
 8247            <summary>
 8248            Assert that a string is not empty - that is not equal to string.Empty
 8249            </summary>
 8250            <param name="aString">The string to be tested</param>
 8251            <param name="message">The message to display in case of failure</param>
 8252        </member>
 8253        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
 8254            <summary>
 8255            Assert that a string is not empty - that is not equal to string.Empty
 8256            </summary>
 8257            <param name="aString">The string to be tested</param>
 8258        </member>
 8259        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
 8260            <summary>
 8261            Assert that an array, list or other collection is not empty
 8262            </summary>
 8263            <param name="collection">An array, list or other collection implementing ICollection</param>
 8264            <param name="message">The message to display in case of failure</param>
 8265            <param name="args">Array of objects to be used in formatting the message</param>
 8266        </member>
 8267        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
 8268            <summary>
 8269            Assert that an array, list or other collection is not empty
 8270            </summary>
 8271            <param name="collection">An array, list or other collection implementing ICollection</param>
 8272            <param name="message">The message to display in case of failure</param>
 8273        </member>
 8274        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
 8275            <summary>
 8276            Assert that an array, list or other collection is not empty
 8277            </summary>
 8278            <param name="collection">An array, list or other collection implementing ICollection</param>
 8279        </member>
 8280        <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])">
 8281            <summary>
 8282            Assert that a string is either null or equal to string.Empty
 8283            </summary>
 8284            <param name="aString">The string to be tested</param>
 8285            <param name="message">The message to display in case of failure</param>
 8286            <param name="args">Array of objects to be used in formatting the message</param>
 8287        </member>
 8288        <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)">
 8289            <summary>
 8290            Assert that a string is either null or equal to string.Empty
 8291            </summary>
 8292            <param name="aString">The string to be tested</param>
 8293            <param name="message">The message to display in case of failure</param>
 8294        </member>
 8295        <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)">
 8296            <summary>
 8297            Assert that a string is either null or equal to string.Empty
 8298            </summary>
 8299            <param name="aString">The string to be tested</param>
 8300        </member>
 8301        <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])">
 8302            <summary>
 8303            Assert that a string is not null or empty
 8304            </summary>
 8305            <param name="aString">The string to be tested</param>
 8306            <param name="message">The message to display in case of failure</param>
 8307            <param name="args">Array of objects to be used in formatting the message</param>
 8308        </member>
 8309        <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)">
 8310            <summary>
 8311            Assert that a string is not null or empty
 8312            </summary>
 8313            <param name="aString">The string to be tested</param>
 8314            <param name="message">The message to display in case of failure</param>
 8315        </member>
 8316        <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)">
 8317            <summary>
 8318            Assert that a string is not null or empty
 8319            </summary>
 8320            <param name="aString">The string to be tested</param>
 8321        </member>
 8322        <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
 8323            <summary>
 8324            Asserts that an object may be assigned a  value of a given Type.
 8325            </summary>
 8326            <param name="expected">The expected Type.</param>
 8327            <param name="actual">The object under examination</param>
 8328            <param name="message">The message to display in case of failure</param>
 8329            <param name="args">Array of objects to be used in formatting the message</param>
 8330        </member>
 8331        <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
 8332            <summary>
 8333            Asserts that an object may be assigned a  value of a given Type.
 8334            </summary>
 8335            <param name="expected">The expected Type.</param>
 8336            <param name="actual">The object under examination</param>
 8337            <param name="message">The message to display in case of failure</param>
 8338        </member>
 8339        <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
 8340            <summary>
 8341            Asserts that an object may be assigned a  value of a given Type.
 8342            </summary>
 8343            <param name="expected">The expected Type.</param>
 8344            <param name="actual">The object under examination</param>
 8345        </member>
 8346        <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])">
 8347            <summary>
 8348            Asserts that an object may be assigned a  value of a given Type.
 8349            </summary>
 8350            <typeparam name="T">The expected Type.</typeparam>
 8351            <param name="actual">The object under examination</param>
 8352            <param name="message">The message to display in case of failure</param>
 8353            <param name="args">Array of objects to be used in formatting the message</param>
 8354        </member>
 8355        <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)">
 8356            <summary>
 8357            Asserts that an object may be assigned a  value of a given Type.
 8358            </summary>
 8359            <typeparam name="T">The expected Type.</typeparam>
 8360            <param name="actual">The object under examination</param>
 8361            <param name="message">The message to display in case of failure</param>
 8362        </member>
 8363        <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)">
 8364            <summary>
 8365            Asserts that an object may be assigned a  value of a given Type.
 8366            </summary>
 8367            <typeparam name="T">The expected Type.</typeparam>
 8368            <param name="actual">The object under examination</param>
 8369        </member>
 8370        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
 8371            <summary>
 8372            Asserts that an object may not be assigned a  value of a given Type.
 8373            </summary>
 8374            <param name="expected">The expected Type.</param>
 8375            <param name="actual">The object under examination</param>
 8376            <param name="message">The message to display in case of failure</param>
 8377            <param name="args">Array of objects to be used in formatting the message</param>
 8378        </member>
 8379        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
 8380            <summary>
 8381            Asserts that an object may not be assigned a  value of a given Type.
 8382            </summary>
 8383            <param name="expected">The expected Type.</param>
 8384            <param name="actual">The object under examination</param>
 8385            <param name="message">The message to display in case of failure</param>
 8386        </member>
 8387        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
 8388            <summary>
 8389            Asserts that an object may not be assigned a  value of a given Type.
 8390            </summary>
 8391            <param name="expected">The expected Type.</param>
 8392            <param name="actual">The object under examination</param>
 8393        </member>
 8394        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])">
 8395            <summary>
 8396            Asserts that an object may not be assigned a  value of a given Type.
 8397            </summary>
 8398            <typeparam name="T">The expected Type.</typeparam>
 8399            <param name="actual">The object under examination</param>
 8400            <param name="message">The message to display in case of failure</param>
 8401            <param name="args">Array of objects to be used in formatting the message</param>
 8402        </member>
 8403        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)">
 8404            <summary>
 8405            Asserts that an object may not be assigned a  value of a given Type.
 8406            </summary>
 8407            <typeparam name="T">The expected Type.</typeparam>
 8408            <param name="actual">The object under examination</param>
 8409            <param name="message">The message to display in case of failure</param>
 8410        </member>
 8411        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)">
 8412            <summary>
 8413            Asserts that an object may not be assigned a  value of a given Type.
 8414            </summary>
 8415            <typeparam name="T">The expected Type.</typeparam>
 8416            <param name="actual">The object under examination</param>
 8417        </member>
 8418        <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])">
 8419            <summary>
 8420            Asserts that an object is an instance of a given type.
 8421            </summary>
 8422            <param name="expected">The expected Type</param>
 8423            <param name="actual">The object being examined</param>
 8424            <param name="message">The message to display in case of failure</param>
 8425            <param name="args">Array of objects to be used in formatting the message</param>
 8426        </member>
 8427        <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)">
 8428            <summary>
 8429            Asserts that an object is an instance of a given type.
 8430            </summary>
 8431            <param name="expected">The expected Type</param>
 8432            <param name="actual">The object being examined</param>
 8433            <param name="message">The message to display in case of failure</param>
 8434        </member>
 8435        <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)">
 8436            <summary>
 8437            Asserts that an object is an instance of a given type.
 8438            </summary>
 8439            <param name="expected">The expected Type</param>
 8440            <param name="actual">The object being examined</param>
 8441        </member>
 8442        <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
 8443            <summary>
 8444            Asserts that an object is an instance of a given type.
 8445            </summary>
 8446            <param name="expected">The expected Type</param>
 8447            <param name="actual">The object being examined</param>
 8448            <param name="message">The message to display in case of failure</param>
 8449            <param name="args">Array of objects to be used in formatting the message</param>
 8450        </member>
 8451        <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
 8452            <summary>
 8453            Asserts that an object is an instance of a given type.
 8454            </summary>
 8455            <param name="expected">The expected Type</param>
 8456            <param name="actual">The object being examined</param>
 8457            <param name="message">The message to display in case of failure</param>
 8458        </member>
 8459        <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
 8460            <summary>
 8461            Asserts that an object is an instance of a given type.
 8462            </summary>
 8463            <param name="expected">The expected Type</param>
 8464            <param name="actual">The object being examined</param>
 8465        </member>
 8466        <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])">
 8467            <summary>
 8468            Asserts that an object is an instance of a given type.
 8469            </summary>
 8470            <typeparam name="T">The expected Type</typeparam>
 8471            <param name="actual">The object being examined</param>
 8472            <param name="message">The message to display in case of failure</param>
 8473            <param name="args">Array of objects to be used in formatting the message</param>
 8474        </member>
 8475        <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)">
 8476            <summary>
 8477            Asserts that an object is an instance of a given type.
 8478            </summary>
 8479            <typeparam name="T">The expected Type</typeparam>
 8480            <param name="actual">The object being examined</param>
 8481            <param name="message">The message to display in case of failure</param>
 8482        </member>
 8483        <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)">
 8484            <summary>
 8485            Asserts that an object is an instance of a given type.
 8486            </summary>
 8487            <typeparam name="T">The expected Type</typeparam>
 8488            <param name="actual">The object being examined</param>
 8489        </member>
 8490        <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])">
 8491            <summary>
 8492            Asserts that an object is not an instance of a given type.
 8493            </summary>
 8494            <param name="expected">The expected Type</param>
 8495            <param name="actual">The object being examined</param>
 8496            <param name="message">The message to display in case of failure</param>
 8497            <param name="args">Array of objects to be used in formatting the message</param>
 8498        </member>
 8499        <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)">
 8500            <summary>
 8501            Asserts that an object is not an instance of a given type.
 8502            </summary>
 8503            <param name="expected">The expected Type</param>
 8504            <param name="actual">The object being examined</param>
 8505            <param name="message">The message to display in case of failure</param>
 8506        </member>
 8507        <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)">
 8508            <summary>
 8509            Asserts that an object is not an instance of a given type.
 8510            </summary>
 8511            <param name="expected">The expected Type</param>
 8512            <param name="actual">The object being examined</param>
 8513        </member>
 8514        <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
 8515            <summary>
 8516            Asserts that an object is not an instance of a given type.
 8517            </summary>
 8518            <param name="expected">The expected Type</param>
 8519            <param name="actual">The object being examined</param>
 8520            <param name="message">The message to display in case of failure</param>
 8521            <param name="args">Array of objects to be used in formatting the message</param>
 8522        </member>
 8523        <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
 8524            <summary>
 8525            Asserts that an object is not an instance of a given type.
 8526            </summary>
 8527            <param name="expected">The expected Type</param>
 8528            <param name="actual">The object being examined</param>
 8529            <param name="message">The message to display in case of failure</param>
 8530        </member>
 8531        <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
 8532            <summary>
 8533            Asserts that an object is not an instance of a given type.
 8534            </summary>
 8535            <param name="expected">The expected Type</param>
 8536            <param name="actual">The object being examined</param>
 8537        </member>
 8538        <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])">
 8539            <summary>
 8540            Asserts that an object is not an instance of a given type.
 8541            </summary>
 8542            <typeparam name="T">The expected Type</typeparam>
 8543            <param name="actual">The object being examined</param>
 8544            <param name="message">The message to display in case of failure</param>
 8545            <param name="args">Array of objects to be used in formatting the message</param>
 8546        </member>
 8547        <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)">
 8548            <summary>
 8549            Asserts that an object is not an instance of a given type.
 8550            </summary>
 8551            <typeparam name="T">The expected Type</typeparam>
 8552            <param name="actual">The object being examined</param>
 8553            <param name="message">The message to display in case of failure</param>
 8554        </member>
 8555        <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)">
 8556            <summary>
 8557            Asserts that an object is not an instance of a given type.
 8558            </summary>
 8559            <typeparam name="T">The expected Type</typeparam>
 8560            <param name="actual">The object being examined</param>
 8561        </member>
 8562        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
 8563            <summary>
 8564            Verifies that two values are equal. If they are not, then an 
 8565            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8566            </summary>
 8567            <param name="expected">The expected value</param>
 8568            <param name="actual">The actual value</param>
 8569            <param name="message">The message to display in case of failure</param>
 8570            <param name="args">Array of objects to be used in formatting the message</param>
 8571        </member>
 8572        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
 8573            <summary>
 8574            Verifies that two values are equal. If they are not, then an 
 8575            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8576            </summary>
 8577            <param name="expected">The expected value</param>
 8578            <param name="actual">The actual value</param>
 8579            <param name="message">The message to display in case of failure</param>
 8580        </member>
 8581        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
 8582            <summary>
 8583            Verifies that two values are equal. If they are not, then an 
 8584            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8585            </summary>
 8586            <param name="expected">The expected value</param>
 8587            <param name="actual">The actual value</param>
 8588        </member>
 8589        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
 8590            <summary>
 8591            Verifies that two values are equal. If they are not, then an 
 8592            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8593            </summary>
 8594            <param name="expected">The expected value</param>
 8595            <param name="actual">The actual value</param>
 8596            <param name="message">The message to display in case of failure</param>
 8597            <param name="args">Array of objects to be used in formatting the message</param>
 8598        </member>
 8599        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
 8600            <summary>
 8601            Verifies that two values are equal. If they are not, then an 
 8602            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8603            </summary>
 8604            <param name="expected">The expected value</param>
 8605            <param name="actual">The actual value</param>
 8606            <param name="message">The message to display in case of failure</param>
 8607        </member>
 8608        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
 8609            <summary>
 8610            Verifies that two values are equal. If they are not, then an 
 8611            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8612            </summary>
 8613            <param name="expected">The expected value</param>
 8614            <param name="actual">The actual value</param>
 8615        </member>
 8616        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 8617            <summary>
 8618            Verifies that two values are equal. If they are not, then an 
 8619            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8620            </summary>
 8621            <param name="expected">The expected value</param>
 8622            <param name="actual">The actual value</param>
 8623            <param name="message">The message to display in case of failure</param>
 8624            <param name="args">Array of objects to be used in formatting the message</param>
 8625        </member>
 8626        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
 8627            <summary>
 8628            Verifies that two values are equal. If they are not, then an 
 8629            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8630            </summary>
 8631            <param name="expected">The expected value</param>
 8632            <param name="actual">The actual value</param>
 8633            <param name="message">The message to display in case of failure</param>
 8634        </member>
 8635        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
 8636            <summary>
 8637            Verifies that two values are equal. If they are not, then an 
 8638            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8639            </summary>
 8640            <param name="expected">The expected value</param>
 8641            <param name="actual">The actual value</param>
 8642        </member>
 8643        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 8644            <summary>
 8645            Verifies that two values are equal. If they are not, then an 
 8646            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8647            </summary>
 8648            <param name="expected">The expected value</param>
 8649            <param name="actual">The actual value</param>
 8650            <param name="message">The message to display in case of failure</param>
 8651            <param name="args">Array of objects to be used in formatting the message</param>
 8652        </member>
 8653        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
 8654            <summary>
 8655            Verifies that two values are equal. If they are not, then an 
 8656            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8657            </summary>
 8658            <param name="expected">The expected value</param>
 8659            <param name="actual">The actual value</param>
 8660            <param name="message">The message to display in case of failure</param>
 8661        </member>
 8662        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
 8663            <summary>
 8664            Verifies that two values are equal. If they are not, then an 
 8665            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8666            </summary>
 8667            <param name="expected">The expected value</param>
 8668            <param name="actual">The actual value</param>
 8669        </member>
 8670        <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 8671            <summary>
 8672            Verifies that two values are equal. If they are not, then an 
 8673            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8674            </summary>
 8675            <param name="expected">The expected value</param>
 8676            <param name="actual">The actual value</param>
 8677            <param name="message">The message to display in case of failure</param>
 8678            <param name="args">Array of objects to be used in formatting the message</param>
 8679        </member>
 8680        <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
 8681            <summary>
 8682            Verifies that two values are equal. If they are not, then an 
 8683            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8684            </summary>
 8685            <param name="expected">The expected value</param>
 8686            <param name="actual">The actual value</param>
 8687            <param name="message">The message to display in case of failure</param>
 8688        </member>
 8689        <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
 8690            <summary>
 8691            Verifies that two values are equal. If they are not, then an 
 8692            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8693            </summary>
 8694            <param name="expected">The expected value</param>
 8695            <param name="actual">The actual value</param>
 8696        </member>
 8697        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
 8698            <summary>
 8699            Verifies that two doubles are equal considering a delta. If the
 8700            expected value is infinity then the delta value is ignored. If 
 8701            they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
 8702            thrown.
 8703            </summary>
 8704            <param name="expected">The expected value</param>
 8705            <param name="actual">The actual value</param>
 8706            <param name="delta">The maximum acceptable difference between the
 8707            the expected and the actual</param>
 8708            <param name="message">The message to display in case of failure</param>
 8709            <param name="args">Array of objects to be used in formatting the message</param>
 8710        </member>
 8711        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
 8712            <summary>
 8713            Verifies that two doubles are equal considering a delta. If the
 8714            expected value is infinity then the delta value is ignored. If 
 8715            they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
 8716            thrown.
 8717            </summary>
 8718            <param name="expected">The expected value</param>
 8719            <param name="actual">The actual value</param>
 8720            <param name="delta">The maximum acceptable difference between the
 8721            the expected and the actual</param>
 8722            <param name="message">The message to display in case of failure</param>
 8723        </member>
 8724        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
 8725            <summary>
 8726            Verifies that two doubles are equal considering a delta. If the
 8727            expected value is infinity then the delta value is ignored. If 
 8728            they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
 8729            thrown.
 8730            </summary>
 8731            <param name="expected">The expected value</param>
 8732            <param name="actual">The actual value</param>
 8733            <param name="delta">The maximum acceptable difference between the
 8734            the expected and the actual</param>
 8735        </member>
 8736        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])">
 8737            <summary>
 8738            Verifies that two doubles are equal considering a delta. If the
 8739            expected value is infinity then the delta value is ignored. If 
 8740            they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
 8741            thrown.
 8742            </summary>
 8743            <param name="expected">The expected value</param>
 8744            <param name="actual">The actual value</param>
 8745            <param name="delta">The maximum acceptable difference between the
 8746            the expected and the actual</param>
 8747            <param name="message">The message to display in case of failure</param>
 8748            <param name="args">Array of objects to be used in formatting the message</param>
 8749        </member>
 8750        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)">
 8751            <summary>
 8752            Verifies that two doubles are equal considering a delta. If the
 8753            expected value is infinity then the delta value is ignored. If 
 8754            they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
 8755            thrown.
 8756            </summary>
 8757            <param name="expected">The expected value</param>
 8758            <param name="actual">The actual value</param>
 8759            <param name="delta">The maximum acceptable difference between the
 8760            the expected and the actual</param>
 8761            <param name="message">The message to display in case of failure</param>
 8762        </member>
 8763        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)">
 8764            <summary>
 8765            Verifies that two doubles are equal considering a delta. If the
 8766            expected value is infinity then the delta value is ignored. If 
 8767            they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
 8768            thrown.
 8769            </summary>
 8770            <param name="expected">The expected value</param>
 8771            <param name="actual">The actual value</param>
 8772            <param name="delta">The maximum acceptable difference between the
 8773            the expected and the actual</param>
 8774        </member>
 8775        <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
 8776            <summary>
 8777            Verifies that two objects are equal.  Two objects are considered
 8778            equal if both are null, or if both have the same value. NUnit
 8779            has special semantics for some object types.
 8780            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8781            </summary>
 8782            <param name="expected">The value that is expected</param>
 8783            <param name="actual">The actual value</param>
 8784            <param name="message">The message to display in case of failure</param>
 8785            <param name="args">Array of objects to be used in formatting the message</param>
 8786        </member>
 8787        <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
 8788            <summary>
 8789            Verifies that two objects are equal.  Two objects are considered
 8790            equal if both are null, or if both have the same value. NUnit
 8791            has special semantics for some object types.
 8792            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8793            </summary>
 8794            <param name="expected">The value that is expected</param>
 8795            <param name="actual">The actual value</param>
 8796            <param name="message">The message to display in case of failure</param>
 8797        </member>
 8798        <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
 8799            <summary>
 8800            Verifies that two objects are equal.  Two objects are considered
 8801            equal if both are null, or if both have the same value. NUnit
 8802            has special semantics for some object types.
 8803            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8804            </summary>
 8805            <param name="expected">The value that is expected</param>
 8806            <param name="actual">The actual value</param>
 8807        </member>
 8808        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
 8809            <summary>
 8810            Verifies that two values are not equal. If they are equal, then an 
 8811            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8812            </summary>
 8813            <param name="expected">The expected value</param>
 8814            <param name="actual">The actual value</param>
 8815            <param name="message">The message to display in case of failure</param>
 8816            <param name="args">Array of objects to be used in formatting the message</param>
 8817        </member>
 8818        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
 8819            <summary>
 8820            Verifies that two values are not equal. If they are equal, then an 
 8821            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8822            </summary>
 8823            <param name="expected">The expected value</param>
 8824            <param name="actual">The actual value</param>
 8825            <param name="message">The message to display in case of failure</param>
 8826        </member>
 8827        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
 8828            <summary>
 8829            Verifies that two values are not equal. If they are equal, then an 
 8830            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8831            </summary>
 8832            <param name="expected">The expected value</param>
 8833            <param name="actual">The actual value</param>
 8834        </member>
 8835        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
 8836            <summary>
 8837            Verifies that two values are not equal. If they are equal, then an 
 8838            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8839            </summary>
 8840            <param name="expected">The expected value</param>
 8841            <param name="actual">The actual value</param>
 8842            <param name="message">The message to display in case of failure</param>
 8843            <param name="args">Array of objects to be used in formatting the message</param>
 8844        </member>
 8845        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
 8846            <summary>
 8847            Verifies that two values are not equal. If they are equal, then an 
 8848            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8849            </summary>
 8850            <param name="expected">The expected value</param>
 8851            <param name="actual">The actual value</param>
 8852            <param name="message">The message to display in case of failure</param>
 8853        </member>
 8854        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
 8855            <summary>
 8856            Verifies that two values are not equal. If they are equal, then an 
 8857            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8858            </summary>
 8859            <param name="expected">The expected value</param>
 8860            <param name="actual">The actual value</param>
 8861        </member>
 8862        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 8863            <summary>
 8864            Verifies that two values are not equal. If they are equal, then an 
 8865            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8866            </summary>
 8867            <param name="expected">The expected value</param>
 8868            <param name="actual">The actual value</param>
 8869            <param name="message">The message to display in case of failure</param>
 8870            <param name="args">Array of objects to be used in formatting the message</param>
 8871        </member>
 8872        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
 8873            <summary>
 8874            Verifies that two values are not equal. If they are equal, then an 
 8875            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8876            </summary>
 8877            <param name="expected">The expected value</param>
 8878            <param name="actual">The actual value</param>
 8879            <param name="message">The message to display in case of failure</param>
 8880        </member>
 8881        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
 8882            <summary>
 8883            Verifies that two values are not equal. If they are equal, then an 
 8884            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8885            </summary>
 8886            <param name="expected">The expected value</param>
 8887            <param name="actual">The actual value</param>
 8888        </member>
 8889        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 8890            <summary>
 8891            Verifies that two values are not equal. If they are equal, then an 
 8892            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8893            </summary>
 8894            <param name="expected">The expected value</param>
 8895            <param name="actual">The actual value</param>
 8896            <param name="message">The message to display in case of failure</param>
 8897            <param name="args">Array of objects to be used in formatting the message</param>
 8898        </member>
 8899        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
 8900            <summary>
 8901            Verifies that two values are not equal. If they are equal, then an 
 8902            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8903            </summary>
 8904            <param name="expected">The expected value</param>
 8905            <param name="actual">The actual value</param>
 8906            <param name="message">The message to display in case of failure</param>
 8907        </member>
 8908        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
 8909            <summary>
 8910            Verifies that two values are not equal. If they are equal, then an 
 8911            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8912            </summary>
 8913            <param name="expected">The expected value</param>
 8914            <param name="actual">The actual value</param>
 8915        </member>
 8916        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 8917            <summary>
 8918            Verifies that two values are not equal. If they are equal, then an 
 8919            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8920            </summary>
 8921            <param name="expected">The expected value</param>
 8922            <param name="actual">The actual value</param>
 8923            <param name="message">The message to display in case of failure</param>
 8924            <param name="args">Array of objects to be used in formatting the message</param>
 8925        </member>
 8926        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
 8927            <summary>
 8928            Verifies that two values are not equal. If they are equal, then an 
 8929            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8930            </summary>
 8931            <param name="expected">The expected value</param>
 8932            <param name="actual">The actual value</param>
 8933            <param name="message">The message to display in case of failure</param>
 8934        </member>
 8935        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
 8936            <summary>
 8937            Verifies that two values are not equal. If they are equal, then an 
 8938            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8939            </summary>
 8940            <param name="expected">The expected value</param>
 8941            <param name="actual">The actual value</param>
 8942        </member>
 8943        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
 8944            <summary>
 8945            Verifies that two values are not equal. If they are equal, then an 
 8946            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8947            </summary>
 8948            <param name="expected">The expected value</param>
 8949            <param name="actual">The actual value</param>
 8950            <param name="message">The message to display in case of failure</param>
 8951            <param name="args">Array of objects to be used in formatting the message</param>
 8952        </member>
 8953        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
 8954            <summary>
 8955            Verifies that two values are not equal. If they are equal, then an 
 8956            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8957            </summary>
 8958            <param name="expected">The expected value</param>
 8959            <param name="actual">The actual value</param>
 8960            <param name="message">The message to display in case of failure</param>
 8961        </member>
 8962        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
 8963            <summary>
 8964            Verifies that two values are not equal. If they are equal, then an 
 8965            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8966            </summary>
 8967            <param name="expected">The expected value</param>
 8968            <param name="actual">The actual value</param>
 8969        </member>
 8970        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
 8971            <summary>
 8972            Verifies that two values are not equal. If they are equal, then an 
 8973            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8974            </summary>
 8975            <param name="expected">The expected value</param>
 8976            <param name="actual">The actual value</param>
 8977            <param name="message">The message to display in case of failure</param>
 8978            <param name="args">Array of objects to be used in formatting the message</param>
 8979        </member>
 8980        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
 8981            <summary>
 8982            Verifies that two values are not equal. If they are equal, then an 
 8983            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8984            </summary>
 8985            <param name="expected">The expected value</param>
 8986            <param name="actual">The actual value</param>
 8987            <param name="message">The message to display in case of failure</param>
 8988        </member>
 8989        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
 8990            <summary>
 8991            Verifies that two values are not equal. If they are equal, then an 
 8992            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 8993            </summary>
 8994            <param name="expected">The expected value</param>
 8995            <param name="actual">The actual value</param>
 8996        </member>
 8997        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
 8998            <summary>
 8999            Verifies that two objects are not equal.  Two objects are considered
 9000            equal if both are null, or if both have the same value. NUnit
 9001            has special semantics for some object types.
 9002            If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9003            </summary>
 9004            <param name="expected">The value that is expected</param>
 9005            <param name="actual">The actual value</param>
 9006            <param name="message">The message to display in case of failure</param>
 9007            <param name="args">Array of objects to be used in formatting the message</param>
 9008        </member>
 9009        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
 9010            <summary>
 9011            Verifies that two objects are not equal.  Two objects are considered
 9012            equal if both are null, or if both have the same value. NUnit
 9013            has special semantics for some object types.
 9014            If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9015            </summary>
 9016            <param name="expected">The value that is expected</param>
 9017            <param name="actual">The actual value</param>
 9018            <param name="message">The message to display in case of failure</param>
 9019        </member>
 9020        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
 9021            <summary>
 9022            Verifies that two objects are not equal.  Two objects are considered
 9023            equal if both are null, or if both have the same value. NUnit
 9024            has special semantics for some object types.
 9025            If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9026            </summary>
 9027            <param name="expected">The value that is expected</param>
 9028            <param name="actual">The actual value</param>
 9029        </member>
 9030        <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
 9031            <summary>
 9032            Asserts that two objects refer to the same object. If they
 9033            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9034            </summary>
 9035            <param name="expected">The expected object</param>
 9036            <param name="actual">The actual object</param>
 9037            <param name="message">The message to display in case of failure</param>
 9038            <param name="args">Array of objects to be used in formatting the message</param>
 9039        </member>
 9040        <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
 9041            <summary>
 9042            Asserts that two objects refer to the same object. If they
 9043            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9044            </summary>
 9045            <param name="expected">The expected object</param>
 9046            <param name="actual">The actual object</param>
 9047            <param name="message">The message to display in case of failure</param>
 9048        </member>
 9049        <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
 9050            <summary>
 9051            Asserts that two objects refer to the same object. If they
 9052            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9053            </summary>
 9054            <param name="expected">The expected object</param>
 9055            <param name="actual">The actual object</param>
 9056        </member>
 9057        <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
 9058            <summary>
 9059            Asserts that two objects do not refer to the same object. If they
 9060            are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9061            </summary>
 9062            <param name="expected">The expected object</param>
 9063            <param name="actual">The actual object</param>
 9064            <param name="message">The message to display in case of failure</param>
 9065            <param name="args">Array of objects to be used in formatting the message</param>
 9066        </member>
 9067        <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
 9068            <summary>
 9069            Asserts that two objects do not refer to the same object. If they
 9070            are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9071            </summary>
 9072            <param name="expected">The expected object</param>
 9073            <param name="actual">The actual object</param>
 9074            <param name="message">The message to display in case of failure</param>
 9075        </member>
 9076        <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
 9077            <summary>
 9078            Asserts that two objects do not refer to the same object. If they
 9079            are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 9080            </summary>
 9081            <param name="expected">The expected object</param>
 9082            <param name="actual">The actual object</param>
 9083        </member>
 9084        <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
 9085            <summary>
 9086            Verifies that the first value is greater than the second
 9087            value. If it is not, then an
 9088            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9089            </summary>
 9090            <param name="arg1">The first value, expected to be greater</param>
 9091            <param name="arg2">The second value, expected to be less</param>
 9092            <param name="message">The message to display in case of failure</param>
 9093            <param name="args">Array of objects to be used in formatting the message</param>
 9094        </member>
 9095        <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
 9096            <summary>
 9097            Verifies that the first value is greater than the second
 9098            value. If it is not, then an
 9099            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9100            </summary>
 9101            <param name="arg1">The first value, expected to be greater</param>
 9102            <param name="arg2">The second value, expected to be less</param>
 9103            <param name="message">The message to display in case of failure</param>
 9104        </member>
 9105        <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
 9106            <summary>
 9107            Verifies that the first value is greater than the second
 9108            value. If it is not, then an
 9109            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9110            </summary>
 9111            <param name="arg1">The first value, expected to be greater</param>
 9112            <param name="arg2">The second value, expected to be less</param>
 9113        </member>
 9114        <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
 9115            <summary>
 9116            Verifies that the first value is greater than the second
 9117            value. If it is not, then an
 9118            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9119            </summary>
 9120            <param name="arg1">The first value, expected to be greater</param>
 9121            <param name="arg2">The second value, expected to be less</param>
 9122            <param name="message">The message to display in case of failure</param>
 9123            <param name="args">Array of objects to be used in formatting the message</param>
 9124        </member>
 9125        <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
 9126            <summary>
 9127            Verifies that the first value is greater than the second
 9128            value. If it is not, then an
 9129            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9130            </summary>
 9131            <param name="arg1">The first value, expected to be greater</param>
 9132            <param name="arg2">The second value, expected to be less</param>
 9133            <param name="message">The message to display in case of failure</param>
 9134        </member>
 9135        <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
 9136            <summary>
 9137            Verifies that the first value is greater than the second
 9138            value. If it is not, then an
 9139            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9140            </summary>
 9141            <param name="arg1">The first value, expected to be greater</param>
 9142            <param name="arg2">The second value, expected to be less</param>
 9143        </member>
 9144        <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
 9145            <summary>
 9146            Verifies that the first value is greater than the second
 9147            value. If it is not, then an
 9148            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9149            </summary>
 9150            <param name="arg1">The first value, expected to be greater</param>
 9151            <param name="arg2">The second value, expected to be less</param>
 9152            <param name="message">The message to display in case of failure</param>
 9153            <param name="args">Array of objects to be used in formatting the message</param>
 9154        </member>
 9155        <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
 9156            <summary>
 9157            Verifies that the first value is greater than the second
 9158            value. If it is not, then an
 9159            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9160            </summary>
 9161            <param name="arg1">The first value, expected to be greater</param>
 9162            <param name="arg2">The second value, expected to be less</param>
 9163            <param name="message">The message to display in case of failure</param>
 9164        </member>
 9165        <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
 9166            <summary>
 9167            Verifies that the first value is greater than the second
 9168            value. If it is not, then an
 9169            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9170            </summary>
 9171            <param name="arg1">The first value, expected to be greater</param>
 9172            <param name="arg2">The second value, expected to be less</param>
 9173        </member>
 9174        <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
 9175            <summary>
 9176            Verifies that the first value is greater than the second
 9177            value. If it is not, then an
 9178            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9179            </summary>
 9180            <param name="arg1">The first value, expected to be greater</param>
 9181            <param name="arg2">The second value, expected to be less</param>
 9182            <param name="message">The message to display in case of failure</param>
 9183            <param name="args">Array of objects to be used in formatting the message</param>
 9184        </member>
 9185        <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
 9186            <summary>
 9187            Verifies that the first value is greater than the second
 9188            value. If it is not, then an
 9189            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9190            </summary>
 9191            <param name="arg1">The first value, expected to be greater</param>
 9192            <param name="arg2">The second value, expected to be less</param>
 9193            <param name="message">The message to display in case of failure</param>
 9194        </member>
 9195        <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
 9196            <summary>
 9197            Verifies that the first value is greater than the second
 9198            value. If it is not, then an
 9199            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9200            </summary>
 9201            <param name="arg1">The first value, expected to be greater</param>
 9202            <param name="arg2">The second value, expected to be less</param>
 9203        </member>
 9204        <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
 9205            <summary>
 9206            Verifies that the first value is greater than the second
 9207            value. If it is not, then an
 9208            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9209            </summary>
 9210            <param name="arg1">The first value, expected to be greater</param>
 9211            <param name="arg2">The second value, expected to be less</param>
 9212            <param name="message">The message to display in case of failure</param>
 9213            <param name="args">Array of objects to be used in formatting the message</param>
 9214        </member>
 9215        <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
 9216            <summary>
 9217            Verifies that the first value is greater than the second
 9218            value. If it is not, then an
 9219            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9220            </summary>
 9221            <param name="arg1">The first value, expected to be greater</param>
 9222            <param name="arg2">The second value, expected to be less</param>
 9223            <param name="message">The message to display in case of failure</param>
 9224        </member>
 9225        <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
 9226            <summary>
 9227            Verifies that the first value is greater than the second
 9228            value. If it is not, then an
 9229            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9230            </summary>
 9231            <param name="arg1">The first value, expected to be greater</param>
 9232            <param name="arg2">The second value, expected to be less</param>
 9233        </member>
 9234        <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
 9235            <summary>
 9236            Verifies that the first value is greater than the second
 9237            value. If it is not, then an
 9238            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9239            </summary>
 9240            <param name="arg1">The first value, expected to be greater</param>
 9241            <param name="arg2">The second value, expected to be less</param>
 9242            <param name="message">The message to display in case of failure</param>
 9243            <param name="args">Array of objects to be used in formatting the message</param>
 9244        </member>
 9245        <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
 9246            <summary>
 9247            Verifies that the first value is greater than the second
 9248            value. If it is not, then an
 9249            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9250            </summary>
 9251            <param name="arg1">The first value, expected to be greater</param>
 9252            <param name="arg2">The second value, expected to be less</param>
 9253            <param name="message">The message to display in case of failure</param>
 9254        </member>
 9255        <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
 9256            <summary>
 9257            Verifies that the first value is greater than the second
 9258            value. If it is not, then an
 9259            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9260            </summary>
 9261            <param name="arg1">The first value, expected to be greater</param>
 9262            <param name="arg2">The second value, expected to be less</param>
 9263        </member>
 9264        <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
 9265            <summary>
 9266            Verifies that the first value is greater than the second
 9267            value. If it is not, then an
 9268            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9269            </summary>
 9270            <param name="arg1">The first value, expected to be greater</param>
 9271            <param name="arg2">The second value, expected to be less</param>
 9272            <param name="message">The message to display in case of failure</param>
 9273            <param name="args">Array of objects to be used in formatting the message</param>
 9274        </member>
 9275        <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
 9276            <summary>
 9277            Verifies that the first value is greater than the second
 9278            value. If it is not, then an
 9279            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9280            </summary>
 9281            <param name="arg1">The first value, expected to be greater</param>
 9282            <param name="arg2">The second value, expected to be less</param>
 9283            <param name="message">The message to display in case of failure</param>
 9284        </member>
 9285        <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
 9286            <summary>
 9287            Verifies that the first value is greater than the second
 9288            value. If it is not, then an
 9289            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9290            </summary>
 9291            <param name="arg1">The first value, expected to be greater</param>
 9292            <param name="arg2">The second value, expected to be less</param>
 9293        </member>
 9294        <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
 9295            <summary>
 9296            Verifies that the first value is greater than the second
 9297            value. If it is not, then an
 9298            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9299            </summary>
 9300            <param name="arg1">The first value, expected to be greater</param>
 9301            <param name="arg2">The second value, expected to be less</param>
 9302            <param name="message">The message to display in case of failure</param>
 9303            <param name="args">Array of objects to be used in formatting the message</param>
 9304        </member>
 9305        <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
 9306            <summary>
 9307            Verifies that the first value is greater than the second
 9308            value. If it is not, then an
 9309            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9310            </summary>
 9311            <param name="arg1">The first value, expected to be greater</param>
 9312            <param name="arg2">The second value, expected to be less</param>
 9313            <param name="message">The message to display in case of failure</param>
 9314        </member>
 9315        <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
 9316            <summary>
 9317            Verifies that the first value is greater than the second
 9318            value. If it is not, then an
 9319            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9320            </summary>
 9321            <param name="arg1">The first value, expected to be greater</param>
 9322            <param name="arg2">The second value, expected to be less</param>
 9323        </member>
 9324        <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
 9325            <summary>
 9326            Verifies that the first value is less than the second
 9327            value. If it is not, then an
 9328            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9329            </summary>
 9330            <param name="arg1">The first value, expected to be less</param>
 9331            <param name="arg2">The second value, expected to be greater</param>
 9332            <param name="message">The message to display in case of failure</param>
 9333            <param name="args">Array of objects to be used in formatting the message</param>
 9334        </member>
 9335        <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
 9336            <summary>
 9337            Verifies that the first value is less than the second
 9338            value. If it is not, then an
 9339            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9340            </summary>
 9341            <param name="arg1">The first value, expected to be less</param>
 9342            <param name="arg2">The second value, expected to be greater</param>
 9343            <param name="message">The message to display in case of failure</param>
 9344        </member>
 9345        <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
 9346            <summary>
 9347            Verifies that the first value is less than the second
 9348            value. If it is not, then an
 9349            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9350            </summary>
 9351            <param name="arg1">The first value, expected to be less</param>
 9352            <param name="arg2">The second value, expected to be greater</param>
 9353        </member>
 9354        <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
 9355            <summary>
 9356            Verifies that the first value is less than the second
 9357            value. If it is not, then an
 9358            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9359            </summary>
 9360            <param name="arg1">The first value, expected to be less</param>
 9361            <param name="arg2">The second value, expected to be greater</param>
 9362            <param name="message">The message to display in case of failure</param>
 9363            <param name="args">Array of objects to be used in formatting the message</param>
 9364        </member>
 9365        <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
 9366            <summary>
 9367            Verifies that the first value is less than the second
 9368            value. If it is not, then an
 9369            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9370            </summary>
 9371            <param name="arg1">The first value, expected to be less</param>
 9372            <param name="arg2">The second value, expected to be greater</param>
 9373            <param name="message">The message to display in case of failure</param>
 9374        </member>
 9375        <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
 9376            <summary>
 9377            Verifies that the first value is less than the second
 9378            value. If it is not, then an
 9379            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9380            </summary>
 9381            <param name="arg1">The first value, expected to be less</param>
 9382            <param name="arg2">The second value, expected to be greater</param>
 9383        </member>
 9384        <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
 9385            <summary>
 9386            Verifies that the first value is less than the second
 9387            value. If it is not, then an
 9388            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9389            </summary>
 9390            <param name="arg1">The first value, expected to be less</param>
 9391            <param name="arg2">The second value, expected to be greater</param>
 9392            <param name="message">The message to display in case of failure</param>
 9393            <param name="args">Array of objects to be used in formatting the message</param>
 9394        </member>
 9395        <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
 9396            <summary>
 9397            Verifies that the first value is less than the second
 9398            value. If it is not, then an
 9399            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9400            </summary>
 9401            <param name="arg1">The first value, expected to be less</param>
 9402            <param name="arg2">The second value, expected to be greater</param>
 9403            <param name="message">The message to display in case of failure</param>
 9404        </member>
 9405        <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
 9406            <summary>
 9407            Verifies that the first value is less than the second
 9408            value. If it is not, then an
 9409            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9410            </summary>
 9411            <param name="arg1">The first value, expected to be less</param>
 9412            <param name="arg2">The second value, expected to be greater</param>
 9413        </member>
 9414        <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
 9415            <summary>
 9416            Verifies that the first value is less than the second
 9417            value. If it is not, then an
 9418            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9419            </summary>
 9420            <param name="arg1">The first value, expected to be less</param>
 9421            <param name="arg2">The second value, expected to be greater</param>
 9422            <param name="message">The message to display in case of failure</param>
 9423            <param name="args">Array of objects to be used in formatting the message</param>
 9424        </member>
 9425        <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
 9426            <summary>
 9427            Verifies that the first value is less than the second
 9428            value. If it is not, then an
 9429            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9430            </summary>
 9431            <param name="arg1">The first value, expected to be less</param>
 9432            <param name="arg2">The second value, expected to be greater</param>
 9433            <param name="message">The message to display in case of failure</param>
 9434        </member>
 9435        <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
 9436            <summary>
 9437            Verifies that the first value is less than the second
 9438            value. If it is not, then an
 9439            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9440            </summary>
 9441            <param name="arg1">The first value, expected to be less</param>
 9442            <param name="arg2">The second value, expected to be greater</param>
 9443        </member>
 9444        <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
 9445            <summary>
 9446            Verifies that the first value is less than the second
 9447            value. If it is not, then an
 9448            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9449            </summary>
 9450            <param name="arg1">The first value, expected to be less</param>
 9451            <param name="arg2">The second value, expected to be greater</param>
 9452            <param name="message">The message to display in case of failure</param>
 9453            <param name="args">Array of objects to be used in formatting the message</param>
 9454        </member>
 9455        <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
 9456            <summary>
 9457            Verifies that the first value is less than the second
 9458            value. If it is not, then an
 9459            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9460            </summary>
 9461            <param name="arg1">The first value, expected to be less</param>
 9462            <param name="arg2">The second value, expected to be greater</param>
 9463            <param name="message">The message to display in case of failure</param>
 9464        </member>
 9465        <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
 9466            <summary>
 9467            Verifies that the first value is less than the second
 9468            value. If it is not, then an
 9469            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9470            </summary>
 9471            <param name="arg1">The first value, expected to be less</param>
 9472            <param name="arg2">The second value, expected to be greater</param>
 9473        </member>
 9474        <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
 9475            <summary>
 9476            Verifies that the first value is less than the second
 9477            value. If it is not, then an
 9478            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9479            </summary>
 9480            <param name="arg1">The first value, expected to be less</param>
 9481            <param name="arg2">The second value, expected to be greater</param>
 9482            <param name="message">The message to display in case of failure</param>
 9483            <param name="args">Array of objects to be used in formatting the message</param>
 9484        </member>
 9485        <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
 9486            <summary>
 9487            Verifies that the first value is less than the second
 9488            value. If it is not, then an
 9489            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9490            </summary>
 9491            <param name="arg1">The first value, expected to be less</param>
 9492            <param name="arg2">The second value, expected to be greater</param>
 9493            <param name="message">The message to display in case of failure</param>
 9494        </member>
 9495        <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
 9496            <summary>
 9497            Verifies that the first value is less than the second
 9498            value. If it is not, then an
 9499            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9500            </summary>
 9501            <param name="arg1">The first value, expected to be less</param>
 9502            <param name="arg2">The second value, expected to be greater</param>
 9503        </member>
 9504        <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
 9505            <summary>
 9506            Verifies that the first value is less than the second
 9507            value. If it is not, then an
 9508            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9509            </summary>
 9510            <param name="arg1">The first value, expected to be less</param>
 9511            <param name="arg2">The second value, expected to be greater</param>
 9512            <param name="message">The message to display in case of failure</param>
 9513            <param name="args">Array of objects to be used in formatting the message</param>
 9514        </member>
 9515        <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
 9516            <summary>
 9517            Verifies that the first value is less than the second
 9518            value. If it is not, then an
 9519            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9520            </summary>
 9521            <param name="arg1">The first value, expected to be less</param>
 9522            <param name="arg2">The second value, expected to be greater</param>
 9523            <param name="message">The message to display in case of failure</param>
 9524        </member>
 9525        <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
 9526            <summary>
 9527            Verifies that the first value is less than the second
 9528            value. If it is not, then an
 9529            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9530            </summary>
 9531            <param name="arg1">The first value, expected to be less</param>
 9532            <param name="arg2">The second value, expected to be greater</param>
 9533        </member>
 9534        <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
 9535            <summary>
 9536            Verifies that the first value is less than the second
 9537            value. If it is not, then an
 9538            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9539            </summary>
 9540            <param name="arg1">The first value, expected to be less</param>
 9541            <param name="arg2">The second value, expected to be greater</param>
 9542            <param name="message">The message to display in case of failure</param>
 9543            <param name="args">Array of objects to be used in formatting the message</param>
 9544        </member>
 9545        <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
 9546            <summary>
 9547            Verifies that the first value is less than the second
 9548            value. If it is not, then an
 9549            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9550            </summary>
 9551            <param name="arg1">The first value, expected to be less</param>
 9552            <param name="arg2">The second value, expected to be greater</param>
 9553            <param name="message">The message to display in case of failure</param>
 9554        </member>
 9555        <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
 9556            <summary>
 9557            Verifies that the first value is less than the second
 9558            value. If it is not, then an
 9559            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9560            </summary>
 9561            <param name="arg1">The first value, expected to be less</param>
 9562            <param name="arg2">The second value, expected to be greater</param>
 9563        </member>
 9564        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
 9565            <summary>
 9566            Verifies that the first value is greater than or equal tothe second
 9567            value. If it is not, then an
 9568            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9569            </summary>
 9570            <param name="arg1">The first value, expected to be greater</param>
 9571            <param name="arg2">The second value, expected to be less</param>
 9572            <param name="message">The message to display in case of failure</param>
 9573            <param name="args">Array of objects to be used in formatting the message</param>
 9574        </member>
 9575        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
 9576            <summary>
 9577            Verifies that the first value is greater than or equal tothe second
 9578            value. If it is not, then an
 9579            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9580            </summary>
 9581            <param name="arg1">The first value, expected to be greater</param>
 9582            <param name="arg2">The second value, expected to be less</param>
 9583            <param name="message">The message to display in case of failure</param>
 9584        </member>
 9585        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
 9586            <summary>
 9587            Verifies that the first value is greater than or equal tothe second
 9588            value. If it is not, then an
 9589            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9590            </summary>
 9591            <param name="arg1">The first value, expected to be greater</param>
 9592            <param name="arg2">The second value, expected to be less</param>
 9593        </member>
 9594        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 9595            <summary>
 9596            Verifies that the first value is greater than or equal tothe second
 9597            value. If it is not, then an
 9598            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9599            </summary>
 9600            <param name="arg1">The first value, expected to be greater</param>
 9601            <param name="arg2">The second value, expected to be less</param>
 9602            <param name="message">The message to display in case of failure</param>
 9603            <param name="args">Array of objects to be used in formatting the message</param>
 9604        </member>
 9605        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
 9606            <summary>
 9607            Verifies that the first value is greater than or equal tothe second
 9608            value. If it is not, then an
 9609            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9610            </summary>
 9611            <param name="arg1">The first value, expected to be greater</param>
 9612            <param name="arg2">The second value, expected to be less</param>
 9613            <param name="message">The message to display in case of failure</param>
 9614        </member>
 9615        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
 9616            <summary>
 9617            Verifies that the first value is greater than or equal tothe second
 9618            value. If it is not, then an
 9619            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9620            </summary>
 9621            <param name="arg1">The first value, expected to be greater</param>
 9622            <param name="arg2">The second value, expected to be less</param>
 9623        </member>
 9624        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
 9625            <summary>
 9626            Verifies that the first value is greater than or equal tothe second
 9627            value. If it is not, then an
 9628            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9629            </summary>
 9630            <param name="arg1">The first value, expected to be greater</param>
 9631            <param name="arg2">The second value, expected to be less</param>
 9632            <param name="message">The message to display in case of failure</param>
 9633            <param name="args">Array of objects to be used in formatting the message</param>
 9634        </member>
 9635        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
 9636            <summary>
 9637            Verifies that the first value is greater than or equal tothe second
 9638            value. If it is not, then an
 9639            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9640            </summary>
 9641            <param name="arg1">The first value, expected to be greater</param>
 9642            <param name="arg2">The second value, expected to be less</param>
 9643            <param name="message">The message to display in case of failure</param>
 9644        </member>
 9645        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
 9646            <summary>
 9647            Verifies that the first value is greater than or equal tothe second
 9648            value. If it is not, then an
 9649            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9650            </summary>
 9651            <param name="arg1">The first value, expected to be greater</param>
 9652            <param name="arg2">The second value, expected to be less</param>
 9653        </member>
 9654        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 9655            <summary>
 9656            Verifies that the first value is greater than or equal tothe second
 9657            value. If it is not, then an
 9658            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9659            </summary>
 9660            <param name="arg1">The first value, expected to be greater</param>
 9661            <param name="arg2">The second value, expected to be less</param>
 9662            <param name="message">The message to display in case of failure</param>
 9663            <param name="args">Array of objects to be used in formatting the message</param>
 9664        </member>
 9665        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
 9666            <summary>
 9667            Verifies that the first value is greater than or equal tothe second
 9668            value. If it is not, then an
 9669            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9670            </summary>
 9671            <param name="arg1">The first value, expected to be greater</param>
 9672            <param name="arg2">The second value, expected to be less</param>
 9673            <param name="message">The message to display in case of failure</param>
 9674        </member>
 9675        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
 9676            <summary>
 9677            Verifies that the first value is greater than or equal tothe second
 9678            value. If it is not, then an
 9679            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9680            </summary>
 9681            <param name="arg1">The first value, expected to be greater</param>
 9682            <param name="arg2">The second value, expected to be less</param>
 9683        </member>
 9684        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 9685            <summary>
 9686            Verifies that the first value is greater than or equal tothe second
 9687            value. If it is not, then an
 9688            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9689            </summary>
 9690            <param name="arg1">The first value, expected to be greater</param>
 9691            <param name="arg2">The second value, expected to be less</param>
 9692            <param name="message">The message to display in case of failure</param>
 9693            <param name="args">Array of objects to be used in formatting the message</param>
 9694        </member>
 9695        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
 9696            <summary>
 9697            Verifies that the first value is greater than or equal tothe second
 9698            value. If it is not, then an
 9699            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9700            </summary>
 9701            <param name="arg1">The first value, expected to be greater</param>
 9702            <param name="arg2">The second value, expected to be less</param>
 9703            <param name="message">The message to display in case of failure</param>
 9704        </member>
 9705        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
 9706            <summary>
 9707            Verifies that the first value is greater than or equal tothe second
 9708            value. If it is not, then an
 9709            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9710            </summary>
 9711            <param name="arg1">The first value, expected to be greater</param>
 9712            <param name="arg2">The second value, expected to be less</param>
 9713        </member>
 9714        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
 9715            <summary>
 9716            Verifies that the first value is greater than or equal tothe second
 9717            value. If it is not, then an
 9718            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9719            </summary>
 9720            <param name="arg1">The first value, expected to be greater</param>
 9721            <param name="arg2">The second value, expected to be less</param>
 9722            <param name="message">The message to display in case of failure</param>
 9723            <param name="args">Array of objects to be used in formatting the message</param>
 9724        </member>
 9725        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
 9726            <summary>
 9727            Verifies that the first value is greater than or equal tothe second
 9728            value. If it is not, then an
 9729            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9730            </summary>
 9731            <param name="arg1">The first value, expected to be greater</param>
 9732            <param name="arg2">The second value, expected to be less</param>
 9733            <param name="message">The message to display in case of failure</param>
 9734        </member>
 9735        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
 9736            <summary>
 9737            Verifies that the first value is greater than or equal tothe second
 9738            value. If it is not, then an
 9739            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9740            </summary>
 9741            <param name="arg1">The first value, expected to be greater</param>
 9742            <param name="arg2">The second value, expected to be less</param>
 9743        </member>
 9744        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
 9745            <summary>
 9746            Verifies that the first value is greater than or equal tothe second
 9747            value. If it is not, then an
 9748            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9749            </summary>
 9750            <param name="arg1">The first value, expected to be greater</param>
 9751            <param name="arg2">The second value, expected to be less</param>
 9752            <param name="message">The message to display in case of failure</param>
 9753            <param name="args">Array of objects to be used in formatting the message</param>
 9754        </member>
 9755        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
 9756            <summary>
 9757            Verifies that the first value is greater than or equal tothe second
 9758            value. If it is not, then an
 9759            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9760            </summary>
 9761            <param name="arg1">The first value, expected to be greater</param>
 9762            <param name="arg2">The second value, expected to be less</param>
 9763            <param name="message">The message to display in case of failure</param>
 9764        </member>
 9765        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
 9766            <summary>
 9767            Verifies that the first value is greater than or equal tothe second
 9768            value. If it is not, then an
 9769            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9770            </summary>
 9771            <param name="arg1">The first value, expected to be greater</param>
 9772            <param name="arg2">The second value, expected to be less</param>
 9773        </member>
 9774        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
 9775            <summary>
 9776            Verifies that the first value is greater than or equal tothe second
 9777            value. If it is not, then an
 9778            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9779            </summary>
 9780            <param name="arg1">The first value, expected to be greater</param>
 9781            <param name="arg2">The second value, expected to be less</param>
 9782            <param name="message">The message to display in case of failure</param>
 9783            <param name="args">Array of objects to be used in formatting the message</param>
 9784        </member>
 9785        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
 9786            <summary>
 9787            Verifies that the first value is greater than or equal tothe second
 9788            value. If it is not, then an
 9789            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9790            </summary>
 9791            <param name="arg1">The first value, expected to be greater</param>
 9792            <param name="arg2">The second value, expected to be less</param>
 9793            <param name="message">The message to display in case of failure</param>
 9794        </member>
 9795        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
 9796            <summary>
 9797            Verifies that the first value is greater than or equal tothe second
 9798            value. If it is not, then an
 9799            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9800            </summary>
 9801            <param name="arg1">The first value, expected to be greater</param>
 9802            <param name="arg2">The second value, expected to be less</param>
 9803        </member>
 9804        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
 9805            <summary>
 9806            Verifies that the first value is less than or equal to the second
 9807            value. If it is not, then an
 9808            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9809            </summary>
 9810            <param name="arg1">The first value, expected to be less</param>
 9811            <param name="arg2">The second value, expected to be greater</param>
 9812            <param name="message">The message to display in case of failure</param>
 9813            <param name="args">Array of objects to be used in formatting the message</param>
 9814        </member>
 9815        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
 9816            <summary>
 9817            Verifies that the first value is less than or equal to the second
 9818            value. If it is not, then an
 9819            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9820            </summary>
 9821            <param name="arg1">The first value, expected to be less</param>
 9822            <param name="arg2">The second value, expected to be greater</param>
 9823            <param name="message">The message to display in case of failure</param>
 9824        </member>
 9825        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
 9826            <summary>
 9827            Verifies that the first value is less than or equal to the second
 9828            value. If it is not, then an
 9829            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9830            </summary>
 9831            <param name="arg1">The first value, expected to be less</param>
 9832            <param name="arg2">The second value, expected to be greater</param>
 9833        </member>
 9834        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 9835            <summary>
 9836            Verifies that the first value is less than or equal to the second
 9837            value. If it is not, then an
 9838            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9839            </summary>
 9840            <param name="arg1">The first value, expected to be less</param>
 9841            <param name="arg2">The second value, expected to be greater</param>
 9842            <param name="message">The message to display in case of failure</param>
 9843            <param name="args">Array of objects to be used in formatting the message</param>
 9844        </member>
 9845        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
 9846            <summary>
 9847            Verifies that the first value is less than or equal to the second
 9848            value. If it is not, then an
 9849            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9850            </summary>
 9851            <param name="arg1">The first value, expected to be less</param>
 9852            <param name="arg2">The second value, expected to be greater</param>
 9853            <param name="message">The message to display in case of failure</param>
 9854        </member>
 9855        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
 9856            <summary>
 9857            Verifies that the first value is less than or equal to the second
 9858            value. If it is not, then an
 9859            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9860            </summary>
 9861            <param name="arg1">The first value, expected to be less</param>
 9862            <param name="arg2">The second value, expected to be greater</param>
 9863        </member>
 9864        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
 9865            <summary>
 9866            Verifies that the first value is less than or equal to the second
 9867            value. If it is not, then an
 9868            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9869            </summary>
 9870            <param name="arg1">The first value, expected to be less</param>
 9871            <param name="arg2">The second value, expected to be greater</param>
 9872            <param name="message">The message to display in case of failure</param>
 9873            <param name="args">Array of objects to be used in formatting the message</param>
 9874        </member>
 9875        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
 9876            <summary>
 9877            Verifies that the first value is less than or equal to the second
 9878            value. If it is not, then an
 9879            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9880            </summary>
 9881            <param name="arg1">The first value, expected to be less</param>
 9882            <param name="arg2">The second value, expected to be greater</param>
 9883            <param name="message">The message to display in case of failure</param>
 9884        </member>
 9885        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
 9886            <summary>
 9887            Verifies that the first value is less than or equal to the second
 9888            value. If it is not, then an
 9889            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9890            </summary>
 9891            <param name="arg1">The first value, expected to be less</param>
 9892            <param name="arg2">The second value, expected to be greater</param>
 9893        </member>
 9894        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 9895            <summary>
 9896            Verifies that the first value is less than or equal to the second
 9897            value. If it is not, then an
 9898            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9899            </summary>
 9900            <param name="arg1">The first value, expected to be less</param>
 9901            <param name="arg2">The second value, expected to be greater</param>
 9902            <param name="message">The message to display in case of failure</param>
 9903            <param name="args">Array of objects to be used in formatting the message</param>
 9904        </member>
 9905        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
 9906            <summary>
 9907            Verifies that the first value is less than or equal to the second
 9908            value. If it is not, then an
 9909            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9910            </summary>
 9911            <param name="arg1">The first value, expected to be less</param>
 9912            <param name="arg2">The second value, expected to be greater</param>
 9913            <param name="message">The message to display in case of failure</param>
 9914        </member>
 9915        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
 9916            <summary>
 9917            Verifies that the first value is less than or equal to the second
 9918            value. If it is not, then an
 9919            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9920            </summary>
 9921            <param name="arg1">The first value, expected to be less</param>
 9922            <param name="arg2">The second value, expected to be greater</param>
 9923        </member>
 9924        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 9925            <summary>
 9926            Verifies that the first value is less than or equal to the second
 9927            value. If it is not, then an
 9928            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9929            </summary>
 9930            <param name="arg1">The first value, expected to be less</param>
 9931            <param name="arg2">The second value, expected to be greater</param>
 9932            <param name="message">The message to display in case of failure</param>
 9933            <param name="args">Array of objects to be used in formatting the message</param>
 9934        </member>
 9935        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
 9936            <summary>
 9937            Verifies that the first value is less than or equal to the second
 9938            value. If it is not, then an
 9939            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9940            </summary>
 9941            <param name="arg1">The first value, expected to be less</param>
 9942            <param name="arg2">The second value, expected to be greater</param>
 9943            <param name="message">The message to display in case of failure</param>
 9944        </member>
 9945        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
 9946            <summary>
 9947            Verifies that the first value is less than or equal to the second
 9948            value. If it is not, then an
 9949            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9950            </summary>
 9951            <param name="arg1">The first value, expected to be less</param>
 9952            <param name="arg2">The second value, expected to be greater</param>
 9953        </member>
 9954        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
 9955            <summary>
 9956            Verifies that the first value is less than or equal to the second
 9957            value. If it is not, then an
 9958            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9959            </summary>
 9960            <param name="arg1">The first value, expected to be less</param>
 9961            <param name="arg2">The second value, expected to be greater</param>
 9962            <param name="message">The message to display in case of failure</param>
 9963            <param name="args">Array of objects to be used in formatting the message</param>
 9964        </member>
 9965        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
 9966            <summary>
 9967            Verifies that the first value is less than or equal to the second
 9968            value. If it is not, then an
 9969            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9970            </summary>
 9971            <param name="arg1">The first value, expected to be less</param>
 9972            <param name="arg2">The second value, expected to be greater</param>
 9973            <param name="message">The message to display in case of failure</param>
 9974        </member>
 9975        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
 9976            <summary>
 9977            Verifies that the first value is less than or equal to the second
 9978            value. If it is not, then an
 9979            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9980            </summary>
 9981            <param name="arg1">The first value, expected to be less</param>
 9982            <param name="arg2">The second value, expected to be greater</param>
 9983        </member>
 9984        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
 9985            <summary>
 9986            Verifies that the first value is less than or equal to the second
 9987            value. If it is not, then an
 9988            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 9989            </summary>
 9990            <param name="arg1">The first value, expected to be less</param>
 9991            <param name="arg2">The second value, expected to be greater</param>
 9992            <param name="message">The message to display in case of failure</param>
 9993            <param name="args">Array of objects to be used in formatting the message</param>
 9994        </member>
 9995        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
 9996            <summary>
 9997            Verifies that the first value is less than or equal to the second
 9998            value. If it is not, then an
 9999            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
10000            </summary>
10001            <param name="arg1">The first value, expected to be less</param>
10002            <param name="arg2">The second value, expected to be greater</param>
10003            <param name="message">The message to display in case of failure</param>
10004        </member>
10005        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
10006            <summary>
10007            Verifies that the first value is less than or equal to the second
10008            value. If it is not, then an
10009            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
10010            </summary>
10011            <param name="arg1">The first value, expected to be less</param>
10012            <param name="arg2">The second value, expected to be greater</param>
10013        </member>
10014        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
10015            <summary>
10016            Verifies that the first value is less than or equal to the second
10017            value. If it is not, then an
10018            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
10019            </summary>
10020            <param name="arg1">The first value, expected to be less</param>
10021            <param name="arg2">The second value, expected to be greater</param>
10022            <param name="message">The message to display in case of failure</param>
10023            <param name="args">Array of objects to be used in formatting the message</param>
10024        </member>
10025        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
10026            <summary>
10027            Verifies that the first value is less than or equal to the second
10028            value. If it is not, then an
10029            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
10030            </summary>
10031            <param name="arg1">The first value, expected to be less</param>
10032            <param name="arg2">The second value, expected to be greater</param>
10033            <param name="message">The message to display in case of failure</param>
10034        </member>
10035        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
10036            <summary>
10037            Verifies that the first value is less than or equal to the second
10038            value. If it is not, then an
10039            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
10040            </summary>
10041            <param name="arg1">The first value, expected to be less</param>
10042            <param name="arg2">The second value, expected to be greater</param>
10043        </member>
10044        <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
10045            <summary>
10046            Asserts that an object is contained in a list.
10047            </summary>
10048            <param name="expected">The expected object</param>
10049            <param name="actual">The list to be examined</param>
10050            <param name="message">The message to display in case of failure</param>
10051            <param name="args">Array of objects to be used in formatting the message</param>
10052        </member>
10053        <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
10054            <summary>
10055            Asserts that an object is contained in a list.
10056            </summary>
10057            <param name="expected">The expected object</param>
10058            <param name="actual">The list to be examined</param>
10059            <param name="message">The message to display in case of failure</param>
10060        </member>
10061        <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
10062            <summary>
10063            Asserts that an object is contained in a list.
10064            </summary>
10065            <param name="expected">The expected object</param>
10066            <param name="actual">The list to be examined</param>
10067        </member>
10068        <member name="P:NUnit.Framework.Assert.Counter">
10069            <summary>
10070            Gets the number of assertions executed so far and 
10071            resets the counter to zero.
10072            </summary>
10073        </member>
10074        <member name="T:NUnit.Framework.Contains">
10075            <summary>
10076            Static helper class used in the constraint-based syntax
10077            </summary>
10078        </member>
10079        <member name="M:NUnit.Framework.Contains.Substring(System.String)">
10080            <summary>
10081            Creates a new SubstringConstraint
10082            </summary>
10083            <param name="substring">The value of the substring</param>
10084            <returns>A SubstringConstraint</returns>
10085        </member>
10086        <member name="M:NUnit.Framework.Contains.Item(System.Object)">
10087            <summary>
10088            Creates a new CollectionContainsConstraint.
10089            </summary>
10090            <param name="item">The item that should be found.</param>
10091            <returns>A new CollectionContainsConstraint</returns>
10092        </member>
10093        <member name="T:NUnit.Framework.CategoryAttribute">
10094            <summary>
10095            Attribute used to apply a category to a test
10096            </summary>
10097        </member>
10098        <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
10099            <summary>
10100            The name of the category
10101            </summary>
10102        </member>
10103        <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
10104            <summary>
10105            Construct attribute for a given category based on
10106            a name. The name may not contain the characters ',',
10107            '+', '-' or '!'. However, this is not checked in the
10108            constructor since it would cause an error to arise at
10109            as the test was loaded without giving a clear indication
10110            of where the problem is located. The error is handled
10111            in NUnitFramework.cs by marking the test as not
10112            runnable.
10113            </summary>
10114            <param name="name">The name of the category</param>
10115        </member>
10116        <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
10117            <summary>
10118            Protected constructor uses the Type name as the name
10119            of the category.
10120            </summary>
10121        </member>
10122        <member name="P:NUnit.Framework.CategoryAttribute.Name">
10123            <summary>
10124            The name of the category
10125            </summary>
10126        </member>
10127        <member name="T:NUnit.Framework.TestStatus">
10128            <summary>
10129            The TestStatus enum indicates the result of running a test
10130            </summary>
10131        </member>
10132        <member name="F:NUnit.Framework.TestStatus.Inconclusive">
10133            <summary>
10134            The test was inconclusive
10135            </summary>
10136        </member>
10137        <member name="F:NUnit.Framework.TestStatus.Skipped">
10138            <summary>
10139            The test has skipped 
10140            </summary>
10141        </member>
10142        <member name="F:NUnit.Framework.TestStatus.Passed">
10143            <summary>
10144            The test succeeded
10145            </summary>
10146        </member>
10147        <member name="F:NUnit.Framework.TestStatus.Failed">
10148            <summary>
10149            The test failed
10150            </summary>
10151        </member>
10152        <member name="T:NUnit.Framework.TestContext">
10153            <summary>
10154            Provide the context information of the current test
10155            </summary>
10156        </member>
10157        <member name="P:NUnit.Framework.TestContext.State">
10158            <summary>
10159            The TestState of current test. This maps to the ResultState
10160            used in nunit.core and is subject to change in the future.
10161            </summary>
10162        </member>
10163        <member name="P:NUnit.Framework.TestContext.Status">
10164            <summary>
10165            The TestStatus of current test. This enum will be used
10166            in future versions of NUnit and so is to be preferred
10167            to the TestState value.
10168            </summary>
10169        </member>
10170        <member name="P:NUnit.Framework.TestContext.TestName">
10171            <summary>
10172            The name of the currently executing test. If no
10173            test is running, the name of the last test run.
10174            </summary>
10175        </member>
10176        <member name="P:NUnit.Framework.TestContext.Properties">
10177            <summary>
10178            The properties of the currently executing test
10179            or, if no test is running, of the last test run.
10180            </summary>
10181        </member>
10182        <member name="T:NUnit.Framework.TestState">
10183            <summary>
10184            The ResultState enum indicates the result of running a test
10185            </summary>
10186        </member>
10187        <member name="F:NUnit.Framework.TestState.Inconclusive">
10188            <summary>
10189            The result is inconclusive
10190            </summary>
10191        </member>
10192        <member name="F:NUnit.Framework.TestState.NotRunnable">
10193            <summary>
10194            The test was not runnable.
10195            </summary>
10196        </member>
10197        <member name="F:NUnit.Framework.TestState.Skipped">
10198            <summary>
10199            The test has been skipped. 
10200            </summary>
10201        </member>
10202        <member name="F:NUnit.Framework.TestState.Ignored">
10203            <summary>
10204            The test has been ignored.
10205            </summary>
10206        </member>
10207        <member name="F:NUnit.Framework.TestState.Success">
10208            <summary>
10209            The test succeeded
10210            </summary>
10211        </member>
10212        <member name="F:NUnit.Framework.TestState.Failure">
10213            <summary>
10214            The test failed
10215            </summary>
10216        </member>
10217        <member name="F:NUnit.Framework.TestState.Error">
10218            <summary>
10219            The test encountered an unexpected exception
10220            </summary>
10221        </member>
10222        <member name="F:NUnit.Framework.TestState.Cancelled">
10223            <summary>
10224            The test was cancelled by the user
10225            </summary>
10226        </member>
10227    </members>
10228</doc>