~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/Newtonsoft.Json/Src/Lib/NUnit/DotNet/nunit.framework.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.SubstringConstraint">
 
8
            <summary>
 
9
            SubstringConstraint can test whether a string contains
 
10
            the expected substring.
 
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 or
 
16
            user-defined constraints in NUnit. It provides the operator
 
17
            overloads used to combine constraints.
 
18
            </summary>
 
19
        </member>
 
20
        <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
 
21
            <summary>
 
22
            Static UnsetObject used to detect derived constraints
 
23
            failing to set the actual value.
 
24
            </summary>
 
25
        </member>
 
26
        <member name="F:NUnit.Framework.Constraints.Constraint.caseInsensitive">
 
27
            <summary>
 
28
            If true, all string comparisons will ignore case
 
29
            </summary>
 
30
        </member>
 
31
        <member name="F:NUnit.Framework.Constraints.Constraint.compareAsCollection">
 
32
            <summary>
 
33
            If true, arrays will be treated as collections, allowing
 
34
            those of different dimensions to be compared
 
35
            </summary>
 
36
        </member>
 
37
        <member name="F:NUnit.Framework.Constraints.Constraint.tolerance">
 
38
            <summary>
 
39
            If non-zero, equality comparisons within the specified 
 
40
            tolerance will succeed.
 
41
            </summary>
 
42
        </member>
 
43
        <member name="F:NUnit.Framework.Constraints.Constraint.compareWith">
 
44
            <summary>
 
45
            IComparer object used in comparisons for some constraints.
 
46
            </summary>
 
47
        </member>
 
48
        <member name="F:NUnit.Framework.Constraints.Constraint.actual">
 
49
            <summary>
 
50
            The actual value being tested against a constraint
 
51
            </summary>
 
52
        </member>
 
53
        <member name="M:NUnit.Framework.Constraints.Constraint.Within(System.Object)">
 
54
            <summary>
 
55
            Flag the constraint to use a tolerance when determining equality.
 
56
            Currently only used for doubles and floats.
 
57
            </summary>
 
58
            <param name="tolerance">Tolerance to be used</param>
 
59
            <returns>Self.</returns>
 
60
        </member>
 
61
        <member name="M:NUnit.Framework.Constraints.Constraint.Comparer(System.Collections.IComparer)">
 
62
            <summary>
 
63
            Flag the constraint to use the supplied IComparer object.
 
64
            </summary>
 
65
            <param name="comparer">The IComparer object to use.</param>
 
66
            <returns>Self.</returns>
 
67
        </member>
 
68
        <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.MessageWriter)">
 
69
            <summary>
 
70
            Write the failure message to the MessageWriter provided
 
71
            as an argument. The default implementation simply passes
 
72
            the constraint and the actual value to the writer, which
 
73
            then displays the constraint description and the value.
 
74
            
 
75
            Constraints that need to provide additional details,
 
76
            such as where the error occured can override this.
 
77
            </summary>
 
78
            <param name="writer">The MessageWriter on which to display the message</param>
 
79
        </member>
 
80
        <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
 
81
            <summary>
 
82
            Test whether the constraint is satisfied by a given value
 
83
            </summary>
 
84
            <param name="actual">The value to be tested</param>
 
85
            <returns>True for success, false for failure</returns>
 
86
        </member>
 
87
        <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
88
            <summary>
 
89
            Write the constraint description to a MessageWriter
 
90
            </summary>
 
91
            <param name="writer">The writer on which the description is displayed</param>
 
92
        </member>
 
93
        <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
 
94
            <summary>
 
95
            Write the actual value for a failing constraint test to a
 
96
            MessageWriter. The default implementation simply writes
 
97
            the raw value of actual, leaving it to the writer to
 
98
            perform any formatting.
 
99
            </summary>
 
100
            <param name="writer">The writer on which the actual value is displayed</param>
 
101
        </member>
 
102
        <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 
103
            <summary>
 
104
            This operator creates a constraint that is satisfied only if both 
 
105
            argument constraints are satisfied.
 
106
            </summary>
 
107
        </member>
 
108
        <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 
109
            <summary>
 
110
            This operator creates a constraint that is satisfied if either 
 
111
            of the argument constraints is satisfied.
 
112
            </summary>
 
113
        </member>
 
114
        <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
 
115
            <summary>
 
116
            This operator creates a constraint that is satisfied if the 
 
117
            argument constraint is not satisfied.
 
118
            </summary>
 
119
        </member>
 
120
        <member name="P:NUnit.Framework.Constraints.Constraint.IgnoreCase">
 
121
            <summary>
 
122
            Flag the constraint to ignore case and return self.
 
123
            </summary>
 
124
        </member>
 
125
        <member name="P:NUnit.Framework.Constraints.Constraint.AsCollection">
 
126
            <summary>
 
127
            Flag the constraint to compare arrays as collections
 
128
            and return self.
 
129
            </summary>
 
130
        </member>
 
131
        <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
 
132
            <summary>
 
133
            Class used to detect any derived constraints
 
134
            that fail to set the actual value in their
 
135
            Matches override.
 
136
            </summary>
 
137
        </member>
 
138
        <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
 
139
            <summary>
 
140
            Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
 
141
            </summary>
 
142
            <param name="expected">The expected.</param>
 
143
        </member>
 
144
        <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)">
 
145
            <summary>
 
146
            Test whether the constraint is satisfied by a given value
 
147
            </summary>
 
148
            <param name="actual">The value to be tested</param>
 
149
            <returns>True for success, false for failure</returns>
 
150
        </member>
 
151
        <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
152
            <summary>
 
153
            Write the constraint description to a MessageWriter
 
154
            </summary>
 
155
            <param name="writer">The writer on which the description is displayed</param>
 
156
        </member>
 
157
        <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
 
158
            <summary>
 
159
            StartsWithConstraint can test whether a string starts
 
160
            with an expected substring.
 
161
            </summary>
 
162
        </member>
 
163
        <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
 
164
            <summary>
 
165
            Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
 
166
            </summary>
 
167
            <param name="expected">The expected string</param>
 
168
        </member>
 
169
        <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)">
 
170
            <summary>
 
171
            Test whether the constraint is matched by the actual value.
 
172
            This is a template method, which calls the IsMatch method
 
173
            of the derived class.
 
174
            </summary>
 
175
            <param name="actual"></param>
 
176
            <returns></returns>
 
177
        </member>
 
178
        <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
179
            <summary>
 
180
            Write the constraint description to a MessageWriter
 
181
            </summary>
 
182
            <param name="writer">The writer on which the description is displayed</param>
 
183
        </member>
 
184
        <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
 
185
            <summary>
 
186
            EndsWithConstraint can test whether a string ends
 
187
            with an expected substring.
 
188
            </summary>
 
189
        </member>
 
190
        <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
 
191
            <summary>
 
192
            Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
 
193
            </summary>
 
194
            <param name="expected">The expected string</param>
 
195
        </member>
 
196
        <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)">
 
197
            <summary>
 
198
            Test whether the constraint is matched by the actual value.
 
199
            This is a template method, which calls the IsMatch method
 
200
            of the derived class.
 
201
            </summary>
 
202
            <param name="actual"></param>
 
203
            <returns></returns>
 
204
        </member>
 
205
        <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
206
            <summary>
 
207
            Write the constraint description to a MessageWriter
 
208
            </summary>
 
209
            <param name="writer">The writer on which the description is displayed</param>
 
210
        </member>
 
211
        <member name="T:NUnit.Framework.Constraints.RegexConstraint">
 
212
            <summary>
 
213
            RegexConstraint can test whether a string matches
 
214
            the pattern provided.
 
215
            </summary>
 
216
        </member>
 
217
        <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
 
218
            <summary>
 
219
            Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
 
220
            </summary>
 
221
            <param name="pattern">The pattern.</param>
 
222
        </member>
 
223
        <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)">
 
224
            <summary>
 
225
            Test whether the constraint is satisfied by a given value
 
226
            </summary>
 
227
            <param name="actual">The value to be tested</param>
 
228
            <returns>True for success, false for failure</returns>
 
229
        </member>
 
230
        <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
231
            <summary>
 
232
            Write the constraint description to a MessageWriter
 
233
            </summary>
 
234
            <param name="writer">The writer on which the description is displayed</param>
 
235
        </member>
 
236
        <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
 
237
            <summary>
 
238
            EmptyConstraint tests a whether a string or collection is empty,
 
239
            postponing the decision about which test is applied until the
 
240
            type of the actual argument is known.
 
241
            </summary>
 
242
        </member>
 
243
        <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
 
244
            <summary>
 
245
            Test whether the constraint is satisfied by a given value
 
246
            </summary>
 
247
            <param name="actual">The value to be tested</param>
 
248
            <returns>True for success, false for failure</returns>
 
249
        </member>
 
250
        <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
251
            <summary>
 
252
            Write the constraint description to a MessageWriter
 
253
            </summary>
 
254
            <param name="writer">The writer on which the description is displayed</param>
 
255
        </member>
 
256
        <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
 
257
            <summary>
 
258
            ConstraintBuilder is used to resolve the Not and All properties,
 
259
            which serve as prefix operators for constraints. With the addition
 
260
            of an operand stack, And and Or could be supported, but we have
 
261
            left them out in favor of a simpler, more type-safe implementation.
 
262
            Use the &amp; and | operator overloads to combine constraints.
 
263
            </summary>
 
264
        </member>
 
265
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.op_Implicit(NUnit.Framework.Constraints.ConstraintBuilder)~NUnit.Framework.Constraints.Constraint">
 
266
            <summary>
 
267
            Implicitly convert ConstraintBuilder to an actual Constraint
 
268
            at the point where the syntax demands it.
 
269
            </summary>
 
270
            <param name="builder"></param>
 
271
            <returns></returns>
 
272
        </member>
 
273
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EqualTo(System.Object)">
 
274
            <summary>
 
275
            Resolves the chain of constraints using an
 
276
            EqualConstraint as base.
 
277
            </summary>
 
278
        </member>
 
279
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SameAs(System.Object)">
 
280
            <summary>
 
281
            Resolves the chain of constraints using a
 
282
            SameAsConstraint as base.
 
283
            </summary>
 
284
        </member>
 
285
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.LessThan(System.IComparable)">
 
286
            <summary>
 
287
            Resolves the chain of constraints using a
 
288
            LessThanConstraint as base.
 
289
            </summary>
 
290
        </member>
 
291
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.GreaterThan(System.IComparable)">
 
292
            <summary>
 
293
            Resolves the chain of constraints using a
 
294
            GreaterThanConstraint as base.
 
295
            </summary>
 
296
        </member>
 
297
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.LessThanOrEqualTo(System.IComparable)">
 
298
            <summary>
 
299
            Resolves the chain of constraints using a
 
300
            LessThanOrEqualConstraint as base.
 
301
            </summary>
 
302
        </member>
 
303
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AtMost(System.IComparable)">
 
304
            <summary>
 
305
            Resolves the chain of constraints using a
 
306
            LessThanOrEqualConstraint as base.
 
307
            </summary>
 
308
        </member>
 
309
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.GreaterThanOrEqualTo(System.IComparable)">
 
310
            <summary>
 
311
            Resolves the chain of constraints using a
 
312
            GreaterThanOrEqualConstraint as base.
 
313
            </summary>
 
314
        </member>
 
315
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AtLeast(System.IComparable)">
 
316
            <summary>
 
317
            Resolves the chain of constraints using a
 
318
            GreaterThanOrEqualConstraint as base.
 
319
            </summary>
 
320
        </member>
 
321
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.TypeOf(System.Type)">
 
322
            <summary>
 
323
            Resolves the chain of constraints using an
 
324
            ExactTypeConstraint as base.
 
325
            </summary>
 
326
        </member>
 
327
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.InstanceOfType(System.Type)">
 
328
            <summary>
 
329
            Resolves the chain of constraints using an
 
330
            InstanceOfTypeConstraint as base.
 
331
            </summary>
 
332
        </member>
 
333
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.AssignableFrom(System.Type)">
 
334
            <summary>
 
335
            Resolves the chain of constraints using an
 
336
            AssignableFromConstraint as base.
 
337
            </summary>
 
338
        </member>
 
339
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Contains(System.Object)">
 
340
            <summary>
 
341
            Resolves the chain of constraints using a
 
342
            ContainsConstraint as base. This constraint
 
343
            will, in turn, make use of the appropriate
 
344
            second-level constraint, depending on the
 
345
            type of the actual argument.
 
346
            </summary>
 
347
        </member>
 
348
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Member(System.Object)">
 
349
            <summary>
 
350
            Resolves the chain of constraints using a 
 
351
            CollectionContainsConstraint as base.
 
352
            </summary>
 
353
            <param name="expected">The expected object</param>
 
354
        </member>
 
355
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.StartsWith(System.String)">
 
356
            <summary>
 
357
            Resolves the chain of constraints using a
 
358
            StartsWithConstraint as base.
 
359
            </summary>
 
360
        </member>
 
361
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EndsWith(System.String)">
 
362
            <summary>
 
363
            Resolves the chain of constraints using a
 
364
            StringEndingConstraint as base.
 
365
            </summary>
 
366
        </member>
 
367
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Matches(System.String)">
 
368
            <summary>
 
369
            Resolves the chain of constraints using a
 
370
            StringMatchingConstraint as base.
 
371
            </summary>
 
372
        </member>
 
373
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.EquivalentTo(System.Collections.ICollection)">
 
374
            <summary>
 
375
            Resolves the chain of constraints using a
 
376
            CollectionEquivalentConstraint as base.
 
377
            </summary>
 
378
        </member>
 
379
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.CollectionContaining(System.Object)">
 
380
            <summary>
 
381
            Resolves the chain of constraints using a
 
382
            CollectionContainingConstraint as base.
 
383
            </summary>
 
384
        </member>
 
385
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SubsetOf(System.Collections.ICollection)">
 
386
            <summary>
 
387
            Resolves the chain of constraints using a
 
388
            CollectionSubsetConstraint as base.
 
389
            </summary>
 
390
        </member>
 
391
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Property(System.String,System.Object)">
 
392
            <summary>
 
393
            Resolves the chain of constraints using a 
 
394
            PropertyConstraint as base
 
395
            </summary>
 
396
        </member>
 
397
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Length(System.Int32)">
 
398
            <summary>
 
399
            Resolves the chain of constraints using a
 
400
            PropertyCOnstraint on Length as base
 
401
            </summary>
 
402
            <param name="length"></param>
 
403
            <returns></returns>
 
404
        </member>
 
405
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Count(System.Int32)">
 
406
            <summary>
 
407
            Resolves the chain of constraints using a
 
408
            PropertyCOnstraint on Length as base
 
409
            </summary>
 
410
            <param name="count"></param>
 
411
            <returns></returns>
 
412
        </member>
 
413
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Property(System.String)">
 
414
            <summary>
 
415
            Modifies the ConstraintBuilder by pushing a Prop operator on the
 
416
            ops stack and the name of the property on the opnds stack.
 
417
            </summary>
 
418
            <param name="name"></param>
 
419
            <returns></returns>
 
420
        </member>
 
421
        <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve(NUnit.Framework.Constraints.Constraint)">
 
422
            <summary>
 
423
            Resolve a constraint that has been recognized by applying
 
424
            any pending operators and returning the resulting Constraint.
 
425
            </summary>
 
426
            <returns>A constraint that incorporates all pending operators</returns>
 
427
        </member>
 
428
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Null">
 
429
            <summary>
 
430
            Resolves the chain of constraints using
 
431
            EqualConstraint(null) as base.
 
432
            </summary>
 
433
        </member>
 
434
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.True">
 
435
            <summary>
 
436
            Resolves the chain of constraints using
 
437
            EqualConstraint(true) as base.
 
438
            </summary>
 
439
        </member>
 
440
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.False">
 
441
            <summary>
 
442
            Resolves the chain of constraints using
 
443
            EqualConstraint(false) as base.
 
444
            </summary>
 
445
        </member>
 
446
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.NaN">
 
447
            <summary>
 
448
            Resolves the chain of constraints using
 
449
            Is.NaN as base.
 
450
            </summary>
 
451
        </member>
 
452
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Empty">
 
453
            <summary>
 
454
            Resolves the chain of constraints using
 
455
            Is.Empty as base.
 
456
            </summary>
 
457
        </member>
 
458
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Unique">
 
459
            <summary>
 
460
            Resolves the chain of constraints using
 
461
            Is.Unique as base.
 
462
            </summary>
 
463
        </member>
 
464
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Not">
 
465
            <summary>
 
466
            Modifies the ConstraintBuilder by pushing a Not operator on the stack.
 
467
            </summary>
 
468
        </member>
 
469
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.No">
 
470
            <summary>
 
471
            Modifies the ConstraintBuilder by pushing a Not operator on the stack.
 
472
            </summary>
 
473
        </member>
 
474
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.All">
 
475
            <summary>
 
476
            Modifies the ConstraintBuilder by pushing an All operator on the stack.
 
477
            </summary>
 
478
        </member>
 
479
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.Some">
 
480
            <summary>
 
481
            Modifies the ConstraintBuilder by pushing a Some operator on the stack.
 
482
            </summary>
 
483
        </member>
 
484
        <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.None">
 
485
            <summary>
 
486
            Modifies the constraint builder by pushing All and Not operators on the stack
 
487
            </summary>
 
488
        </member>
 
489
        <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
 
490
            <summary>
 
491
            CollectionConstraint is the abstract base class for
 
492
            constraints that operate on collections.
 
493
            </summary>
 
494
        </member>
 
495
        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
 
496
            <summary>
 
497
            Test whether the constraint is satisfied by a given value
 
498
            </summary>
 
499
            <param name="actual">The value to be tested</param>
 
500
            <returns>True for success, false for failure</returns>
 
501
        </member>
 
502
        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.ICollection)">
 
503
            <summary>
 
504
            Protected method to be implemented by derived classes
 
505
            </summary>
 
506
            <param name="collecton"></param>
 
507
            <returns></returns>
 
508
        </member>
 
509
        <member name="T:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally">
 
510
            <summary>
 
511
            CollectionTally counts (tallies) the number of
 
512
            occurences of each object in one or more enuerations.
 
513
            </summary>
 
514
        </member>
 
515
        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.#ctor(System.Collections.IEnumerable)">
 
516
            <summary>
 
517
            Construct a CollectionTally object from a collection
 
518
            </summary>
 
519
            <param name="collection"></param>
 
520
        </member>
 
521
        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.CanRemove(System.Collections.IEnumerable)">
 
522
            <summary>
 
523
            Remove the counts for a collection from the tally,
 
524
            so long as their are sufficient items to remove.
 
525
            The tallies are not permitted to become negative.
 
526
            </summary>
 
527
            <param name="c">The collection to remove</param>
 
528
            <returns>True if there were enough items to remove, otherwise false</returns>
 
529
        </member>
 
530
        <member name="M:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.AllCountsEqualTo(System.Int32)">
 
531
            <summary>
 
532
            Test whether all the counts are equal to a given value
 
533
            </summary>
 
534
            <param name="count">The value to be looked for</param>
 
535
            <returns>True if all counts are equal to the value, otherwise false</returns>
 
536
        </member>
 
537
        <member name="P:NUnit.Framework.Constraints.CollectionConstraint.CollectionTally.Item(System.Object)">
 
538
            <summary>
 
539
            Get the count of the number of times an object is present in the tally
 
540
            </summary>
 
541
        </member>
 
542
        <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
 
543
            <summary>
 
544
            UniqueItemsConstraint tests whether all the items in a 
 
545
            collection are unique.
 
546
            </summary>
 
547
        </member>
 
548
        <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.ICollection)">
 
549
            <summary>
 
550
            Apply the item constraint to each item in the collection,
 
551
            failing if any item fails.
 
552
            </summary>
 
553
            <param name="actual"></param>
 
554
            <returns></returns>
 
555
        </member>
 
556
        <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
557
            <summary>
 
558
            Write a description of this constraint to a MessageWriter
 
559
            </summary>
 
560
            <param name="writer"></param>
 
561
        </member>
 
562
        <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
 
563
            <summary>
 
564
            CollectionContainsConstraint is used to test whether a collection
 
565
            contains an expected object as a member.
 
566
            </summary>
 
567
        </member>
 
568
        <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
 
569
            <summary>
 
570
            Construct a CollectionContainsConstraint
 
571
            </summary>
 
572
            <param name="expected"></param>
 
573
        </member>
 
574
        <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.ICollection)">
 
575
            <summary>
 
576
            Test whether the expected item is contained in the collection
 
577
            </summary>
 
578
            <param name="actual"></param>
 
579
            <returns></returns>
 
580
        </member>
 
581
        <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
582
            <summary>
 
583
            Write a descripton of the constraint to a MessageWriter
 
584
            </summary>
 
585
            <param name="writer"></param>
 
586
        </member>
 
587
        <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
 
588
            <summary>
 
589
            CollectionEquivalentCOnstraint is used to determine whether two
 
590
            collections are equivalent.
 
591
            </summary>
 
592
        </member>
 
593
        <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
 
594
            <summary>
 
595
            Construct a CollectionEquivalentConstraint
 
596
            </summary>
 
597
            <param name="expected"></param>
 
598
        </member>
 
599
        <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.ICollection)">
 
600
            <summary>
 
601
            Test whether two collections are equivalent
 
602
            </summary>
 
603
            <param name="actual"></param>
 
604
            <returns></returns>
 
605
        </member>
 
606
        <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
607
            <summary>
 
608
            Write a description of this constraint to a MessageWriter
 
609
            </summary>
 
610
            <param name="writer"></param>
 
611
        </member>
 
612
        <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
 
613
            <summary>
 
614
            CollectionSubsetConstraint is used to determine whether
 
615
            one collection is a subset of another
 
616
            </summary>
 
617
        </member>
 
618
        <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
 
619
            <summary>
 
620
            Construct a CollectionSubsetConstraint
 
621
            </summary>
 
622
            <param name="expected">The collection that the actual value is expected to be a subset of</param>
 
623
        </member>
 
624
        <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.ICollection)">
 
625
            <summary>
 
626
            Test whether the actual collection is a subset of 
 
627
            the expected collection provided.
 
628
            </summary>
 
629
            <param name="actual"></param>
 
630
            <returns></returns>
 
631
        </member>
 
632
        <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
633
            <summary>
 
634
            Write a description of this constraint to a MessageWriter
 
635
            </summary>
 
636
            <param name="writer"></param>
 
637
        </member>
 
638
        <member name="T:NUnit.Framework.Constraints.EqualConstraint">
 
639
            <summary>
 
640
            EqualConstraint is able to compare an actual value with the
 
641
            expected value provided in its constructor.
 
642
            </summary>
 
643
        </member>
 
644
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
 
645
            <summary>
 
646
            Initializes a new instance of the <see cref="T:EqualConstraint"/> class.
 
647
            </summary>
 
648
            <param name="expected">The expected value.</param>
 
649
        </member>
 
650
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
 
651
            <summary>
 
652
            Test whether the constraint is satisfied by a given value
 
653
            </summary>
 
654
            <param name="actual">The value to be tested</param>
 
655
            <returns>True for success, false for failure</returns>
 
656
        </member>
 
657
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.MessageWriter)">
 
658
            <summary>
 
659
            Write a failure message. Overridden to provide custom 
 
660
            failure messages for EqualConstraint.
 
661
            </summary>
 
662
            <param name="writer">The MessageWriter to write to</param>
 
663
        </member>
 
664
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
665
            <summary>
 
666
            Write description of this constraint
 
667
            </summary>
 
668
            <param name="writer">The MessageWriter to write to</param>
 
669
        </member>
 
670
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.ArraysEqual(System.Array,System.Array)">
 
671
            <summary>
 
672
            Helper method to compare two arrays
 
673
            </summary>
 
674
        </member>
 
675
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
 
676
            <summary>
 
677
            Display the failure information for two collections that did not match.
 
678
            </summary>
 
679
            <param name="writer">The MessageWriter on which to display</param>
 
680
            <param name="expected">The expected collection.</param>
 
681
            <param name="actual">The actual collection</param>
 
682
            <param name="depth">The depth of this failure in a set of nested collections</param>
 
683
        </member>
 
684
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionTypesAndSizes(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
 
685
            <summary>
 
686
            Displays a single line showing the types and sizes of the expected
 
687
            and actual collections or arrays. If both are identical, the value is 
 
688
            only shown once.
 
689
            </summary>
 
690
            <param name="writer">The MessageWriter on which to display</param>
 
691
            <param name="expected">The expected collection or array</param>
 
692
            <param name="actual">The actual collection or array</param>
 
693
            <param name="indent">The indentation level for the message line</param>
 
694
        </member>
 
695
        <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32,System.Int32)">
 
696
            <summary>
 
697
            Displays a single line showing the point in the expected and actual
 
698
            arrays at which the comparison failed. If the arrays have different
 
699
            structures or dimensions, both values are shown.
 
700
            </summary>
 
701
            <param name="writer">The MessageWriter on which to display</param>
 
702
            <param name="expected">The expected array</param>
 
703
            <param name="actual">The actual array</param>
 
704
            <param name="failurePoint">Index of the failure point in the underlying collections</param>
 
705
            <param name="indent">The indentation level for the message line</param>
 
706
        </member>
 
707
        <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
 
708
            <summary>
 
709
            Abstract base class used for prefixes
 
710
            </summary>
 
711
        </member>
 
712
        <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
 
713
            <summary>
 
714
            The base constraint
 
715
            </summary>
 
716
        </member>
 
717
        <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 
718
            <summary>
 
719
            Construct given a base constraint
 
720
            </summary>
 
721
            <param name="baseConstraint"></param>
 
722
        </member>
 
723
        <member name="M:NUnit.Framework.Constraints.PrefixConstraint.PassModifiersToBase">
 
724
            <summary>
 
725
            Set all modifiers applied to the prefix into
 
726
            the base constraint before matching
 
727
            </summary>
 
728
        </member>
 
729
        <member name="T:NUnit.Framework.Constraints.NotConstraint">
 
730
            <summary>
 
731
            NotConstraint negates the effect of some other constraint
 
732
            </summary>
 
733
        </member>
 
734
        <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 
735
            <summary>
 
736
            Initializes a new instance of the <see cref="T:NotConstraint"/> class.
 
737
            </summary>
 
738
            <param name="baseConstraint">The base constraint to be negated.</param>
 
739
        </member>
 
740
        <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
 
741
            <summary>
 
742
            Test whether the constraint is satisfied by a given value
 
743
            </summary>
 
744
            <param name="actual">The value to be tested</param>
 
745
            <returns>True for if the base constraint fails, false if it succeeds</returns>
 
746
        </member>
 
747
        <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
748
            <summary>
 
749
            Write the constraint description to a MessageWriter
 
750
            </summary>
 
751
            <param name="writer">The writer on which the description is displayed</param>
 
752
        </member>
 
753
        <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
 
754
            <summary>
 
755
            Write the actual value for a failing constraint test to a MessageWriter.
 
756
            </summary>
 
757
            <param name="writer">The writer on which the actual value is displayed</param>
 
758
        </member>
 
759
        <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
 
760
            <summary>
 
761
            AllItemsConstraint applies another constraint to each
 
762
            item in a collection, succeeding if they all succeed.
 
763
            </summary>
 
764
        </member>
 
765
        <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 
766
            <summary>
 
767
            Construct an AllItemsConstraint on top of an existing constraint
 
768
            </summary>
 
769
            <param name="itemConstraint"></param>
 
770
        </member>
 
771
        <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
 
772
            <summary>
 
773
            Apply the item constraint to each item in the collection,
 
774
            failing if any item fails.
 
775
            </summary>
 
776
            <param name="actual"></param>
 
777
            <returns></returns>
 
778
        </member>
 
779
        <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
780
            <summary>
 
781
            Write a description of this constraint to a MessageWriter
 
782
            </summary>
 
783
            <param name="writer"></param>
 
784
        </member>
 
785
        <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
 
786
            <summary>
 
787
            SomeItemsConstraint applies another constraint to each
 
788
            item in a collection, succeeding if any of them succeeds.
 
789
            </summary>
 
790
        </member>
 
791
        <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 
792
            <summary>
 
793
            Construct a SomeItemsConstraint on top of an existing constraint
 
794
            </summary>
 
795
            <param name="itemConstraint"></param>
 
796
        </member>
 
797
        <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
 
798
            <summary>
 
799
            Apply the item constraint to each item in the collection,
 
800
            failing if any item fails.
 
801
            </summary>
 
802
            <param name="actual"></param>
 
803
            <returns></returns>
 
804
        </member>
 
805
        <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
806
            <summary>
 
807
            Write a description of this constraint to a MessageWriter
 
808
            </summary>
 
809
            <param name="writer"></param>
 
810
        </member>
 
811
        <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
 
812
            <summary>
 
813
            SomeItemsConstraint applies another constraint to each
 
814
            item in a collection, succeeding if any of them succeeds.
 
815
            </summary>
 
816
        </member>
 
817
        <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
 
818
            <summary>
 
819
            Construct a SomeItemsConstraint on top of an existing constraint
 
820
            </summary>
 
821
            <param name="itemConstraint"></param>
 
822
        </member>
 
823
        <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
 
824
            <summary>
 
825
            Apply the item constraint to each item in the collection,
 
826
            failing if any item fails.
 
827
            </summary>
 
828
            <param name="actual"></param>
 
829
            <returns></returns>
 
830
        </member>
 
831
        <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
832
            <summary>
 
833
            Write a description of this constraint to a MessageWriter
 
834
            </summary>
 
835
            <param name="writer"></param>
 
836
        </member>
 
837
        <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
 
838
            <summary>
 
839
            SameAsConstraint tests whether an object is identical to
 
840
            the object passed to its constructor
 
841
            </summary>
 
842
        </member>
 
843
        <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
 
844
            <summary>
 
845
            Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
 
846
            </summary>
 
847
            <param name="expected">The expected object.</param>
 
848
        </member>
 
849
        <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
 
850
            <summary>
 
851
            Test whether the constraint is satisfied by a given value
 
852
            </summary>
 
853
            <param name="actual">The value to be tested</param>
 
854
            <returns>True for success, false for failure</returns>
 
855
        </member>
 
856
        <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
857
            <summary>
 
858
            Write the constraint description to a MessageWriter
 
859
            </summary>
 
860
            <param name="writer">The writer on which the description is displayed</param>
 
861
        </member>
 
862
        <member name="T:NUnit.Framework.Constraints.TypeConstraint">
 
863
            <summary>
 
864
            TypeConstraint is the abstract base for constraints
 
865
            that take a Type as their expected value.
 
866
            </summary>
 
867
        </member>
 
868
        <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
 
869
            <summary>
 
870
            The expected Type used by the constraint
 
871
            </summary>
 
872
        </member>
 
873
        <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
 
874
            <summary>
 
875
            Construct a TypeConstraint for a given Type
 
876
            </summary>
 
877
            <param name="type"></param>
 
878
        </member>
 
879
        <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
 
880
            <summary>
 
881
            Write the actual value for a failing constraint test to a
 
882
            MessageWriter. TypeCOnstraints override this method to write
 
883
            the name of the type.
 
884
            </summary>
 
885
            <param name="writer">The writer on which the actual value is displayed</param>
 
886
        </member>
 
887
        <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
 
888
            <summary>
 
889
            ExactTypeConstraint is used to test that an object
 
890
            is of the exact type provided in the constructor
 
891
            </summary>
 
892
        </member>
 
893
        <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
 
894
            <summary>
 
895
            Construct an ExactTypeConstraint for a given Type
 
896
            </summary>
 
897
            <param name="type"></param>
 
898
        </member>
 
899
        <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
 
900
            <summary>
 
901
            Test that an object is of the exact type specified
 
902
            </summary>
 
903
            <param name="actual"></param>
 
904
            <returns></returns>
 
905
        </member>
 
906
        <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
907
            <summary>
 
908
            Write the description of this constraint to a MessageWriter
 
909
            </summary>
 
910
            <param name="writer"></param>
 
911
        </member>
 
912
        <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
 
913
            <summary>
 
914
            InstanceOfTypeConstraint is used to test that an object
 
915
            is of the same type provided or derived from it.
 
916
            </summary>
 
917
        </member>
 
918
        <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
 
919
            <summary>
 
920
            Construct an InstanceOfTypeConstraint for the type provided
 
921
            </summary>
 
922
            <param name="type"></param>
 
923
        </member>
 
924
        <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
 
925
            <summary>
 
926
            Test whether an object is of the specified type or a derived type
 
927
            </summary>
 
928
            <param name="actual"></param>
 
929
            <returns></returns>
 
930
        </member>
 
931
        <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
932
            <summary>
 
933
            Write a description of this constraint to a MessageWriter
 
934
            </summary>
 
935
            <param name="writer"></param>
 
936
        </member>
 
937
        <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
 
938
            <summary>
 
939
            AssignableFromConstraint is used to test that an object
 
940
            can be assigned from a given Type.
 
941
            </summary>
 
942
        </member>
 
943
        <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
 
944
            <summary>
 
945
            Construct an AssignableFromConstraint for the type provided
 
946
            </summary>
 
947
            <param name="type"></param>
 
948
        </member>
 
949
        <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
 
950
            <summary>
 
951
            Test whether an object can be assigned from the specified type
 
952
            </summary>
 
953
            <param name="actual"></param>
 
954
            <returns></returns>
 
955
        </member>
 
956
        <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
957
            <summary>
 
958
            Write a description of this constraint to a MessageWriter
 
959
            </summary>
 
960
            <param name="writer"></param>
 
961
        </member>
 
962
        <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
 
963
            <summary>
 
964
            Abstract base class for constraints that compare values to
 
965
            determine if one is greater than, equal to or less than
 
966
            the other.
 
967
            </summary>
 
968
        </member>
 
969
        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.expected">
 
970
            <summary>
 
971
            The value against which a comparison is to be made
 
972
            </summary>
 
973
        </member>
 
974
        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.ltOK">
 
975
            <summary>
 
976
            If true, less than returns success
 
977
            </summary>
 
978
        </member>
 
979
        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.eqOK">
 
980
            <summary>
 
981
            if true, equal returns success
 
982
            </summary>
 
983
        </member>
 
984
        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.gtOK">
 
985
            <summary>
 
986
            if true, greater than returns success
 
987
            </summary>
 
988
        </member>
 
989
        <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.predicate">
 
990
            <summary>
 
991
            The predicate used as a part of the description
 
992
            </summary>
 
993
        </member>
 
994
        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.IComparable,System.Boolean,System.Boolean,System.Boolean,System.String)">
 
995
            <summary>
 
996
            Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
 
997
            </summary>
 
998
            <param name="value">The value against which to make a comparison.</param>
 
999
            <param name="ltOK">if set to <c>true</c> less succeeds.</param>
 
1000
            <param name="eqOK">if set to <c>true</c> equal succeeds.</param>
 
1001
            <param name="gtOK">if set to <c>true</c> greater succeeds.</param>
 
1002
            <param name="predicate">String used in describing the constraint.</param>
 
1003
        </member>
 
1004
        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Matches(System.Object)">
 
1005
            <summary>
 
1006
            Test whether the constraint is satisfied by a given value
 
1007
            </summary>
 
1008
            <param name="actual">The value to be tested</param>
 
1009
            <returns>True for success, false for failure</returns>
 
1010
        </member>
 
1011
        <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
1012
            <summary>
 
1013
            Write the constraint description to a MessageWriter
 
1014
            </summary>
 
1015
            <param name="writer">The writer on which the description is displayed</param>
 
1016
        </member>
 
1017
        <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
 
1018
            <summary>
 
1019
            Tests whether a value is greater than the value supplied to its constructor
 
1020
            </summary>
 
1021
        </member>
 
1022
        <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.IComparable)">
 
1023
            <summary>
 
1024
            Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
 
1025
            </summary>
 
1026
            <param name="expected">The expected value.</param>
 
1027
        </member>
 
1028
        <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
 
1029
            <summary>
 
1030
            Tests whether a value is greater than or equal to the value supplied to its constructor
 
1031
            </summary>
 
1032
        </member>
 
1033
        <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.IComparable)">
 
1034
            <summary>
 
1035
            Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
 
1036
            </summary>
 
1037
            <param name="expected">The expected value.</param>
 
1038
        </member>
 
1039
        <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
 
1040
            <summary>
 
1041
            Tests whether a value is less than the value supplied to its constructor
 
1042
            </summary>
 
1043
        </member>
 
1044
        <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.IComparable)">
 
1045
            <summary>
 
1046
            Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
 
1047
            </summary>
 
1048
            <param name="expected">The expected value.</param>
 
1049
        </member>
 
1050
        <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
 
1051
            <summary>
 
1052
            Tests whether a value is less than or equal to the value supplied to its constructor
 
1053
            </summary>
 
1054
        </member>
 
1055
        <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.IComparable)">
 
1056
            <summary>
 
1057
            Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
 
1058
            </summary>
 
1059
            <param name="expected">The expected value.</param>
 
1060
        </member>
 
1061
        <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
 
1062
            <summary>
 
1063
            ContainsConstraint tests a whether a string contains a substring
 
1064
            or a collection contains an object. It postpones the decision of
 
1065
            which test to use until the type of the actual argument is known.
 
1066
            This allows testing whether a string is contained in a collection
 
1067
            or as a substring of another string using the same syntax.
 
1068
            </summary>
 
1069
        </member>
 
1070
        <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
 
1071
            <summary>
 
1072
            Initializes a new instance of the <see cref="T:ContainsConstraint"/> class.
 
1073
            </summary>
 
1074
            <param name="expected">The expected.</param>
 
1075
        </member>
 
1076
        <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
 
1077
            <summary>
 
1078
            Test whether the constraint is satisfied by a given value
 
1079
            </summary>
 
1080
            <param name="actual">The value to be tested</param>
 
1081
            <returns>True for success, false for failure</returns>
 
1082
        </member>
 
1083
        <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
1084
            <summary>
 
1085
            Write the constraint description to a MessageWriter
 
1086
            </summary>
 
1087
            <param name="writer">The writer on which the description is displayed</param>
 
1088
        </member>
 
1089
        <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
 
1090
            <summary>
 
1091
            Summary description for PropertyConstraint.
 
1092
            </summary>
 
1093
        </member>
 
1094
        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
 
1095
            <summary>
 
1096
            Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
 
1097
            </summary>
 
1098
            <param name="name">The name.</param>
 
1099
            <param name="baseConstraint">The constraint to apply to the property.</param>
 
1100
        </member>
 
1101
        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
 
1102
            <summary>
 
1103
            Test whether the constraint is satisfied by a given value
 
1104
            </summary>
 
1105
            <param name="actual">The value to be tested</param>
 
1106
            <returns>True for success, false for failure</returns>
 
1107
        </member>
 
1108
        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
1109
            <summary>
 
1110
            Write the constraint description to a MessageWriter
 
1111
            </summary>
 
1112
            <param name="writer">The writer on which the description is displayed</param>
 
1113
        </member>
 
1114
        <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.MessageWriter)">
 
1115
            <summary>
 
1116
            Write the actual value for a failing constraint test to a
 
1117
            MessageWriter. The default implementation simply writes
 
1118
            the raw value of actual, leaving it to the writer to
 
1119
            perform any formatting.
 
1120
            </summary>
 
1121
            <param name="writer">The writer on which the actual value is displayed</param>
 
1122
        </member>
 
1123
        <member name="T:NUnit.Framework.Constraints.BinaryOperation">
 
1124
            <summary>
 
1125
            BinaryOperation is the abstract base of all constraints
 
1126
            that combine two other constraints in some fashion.
 
1127
            </summary>
 
1128
        </member>
 
1129
        <member name="F:NUnit.Framework.Constraints.BinaryOperation.left">
 
1130
            <summary>
 
1131
            The first constraint being combined
 
1132
            </summary>
 
1133
        </member>
 
1134
        <member name="F:NUnit.Framework.Constraints.BinaryOperation.right">
 
1135
            <summary>
 
1136
            The second constraint being combined
 
1137
            </summary>
 
1138
        </member>
 
1139
        <member name="M:NUnit.Framework.Constraints.BinaryOperation.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 
1140
            <summary>
 
1141
            Construct a BinaryOperation from two other constraints
 
1142
            </summary>
 
1143
            <param name="left">The first constraint</param>
 
1144
            <param name="right">The second constraint</param>
 
1145
        </member>
 
1146
        <member name="T:NUnit.Framework.Constraints.AndConstraint">
 
1147
            <summary>
 
1148
            AndConstraint succeeds only if both members succeed.
 
1149
            </summary>
 
1150
        </member>
 
1151
        <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 
1152
            <summary>
 
1153
            Create an AndConstraint from two other constraints
 
1154
            </summary>
 
1155
            <param name="left">The first constraint</param>
 
1156
            <param name="right">The second constraint</param>
 
1157
        </member>
 
1158
        <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
 
1159
            <summary>
 
1160
            Apply both member constraints to an actual value, succeeding 
 
1161
            succeeding only if both of them succeed.
 
1162
            </summary>
 
1163
            <param name="actual">The actual value</param>
 
1164
            <returns>True if the constraints both succeeded</returns>
 
1165
        </member>
 
1166
        <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
1167
            <summary>
 
1168
            Write a description for this contraint to a MessageWriter
 
1169
            </summary>
 
1170
            <param name="writer">The MessageWriter to receive the description</param>
 
1171
        </member>
 
1172
        <member name="T:NUnit.Framework.Constraints.OrConstraint">
 
1173
            <summary>
 
1174
            OrConstraint succeeds if either member succeeds
 
1175
            </summary>
 
1176
        </member>
 
1177
        <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
 
1178
            <summary>
 
1179
            Create an OrConstraint from two other constraints
 
1180
            </summary>
 
1181
            <param name="left">The first constraint</param>
 
1182
            <param name="right">The second constraint</param>
 
1183
        </member>
 
1184
        <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
 
1185
            <summary>
 
1186
            Apply the member constraints to an actual value, succeeding 
 
1187
            succeeding as soon as one of them succeeds.
 
1188
            </summary>
 
1189
            <param name="actual">The actual value</param>
 
1190
            <returns>True if either constraint succeeded</returns>
 
1191
        </member>
 
1192
        <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.MessageWriter)">
 
1193
            <summary>
 
1194
            Write a description for this contraint to a MessageWriter
 
1195
            </summary>
 
1196
            <param name="writer">The MessageWriter to receive the description</param>
 
1197
        </member>
 
1198
        <member name="T:NUnit.Framework.Constraints.Numerics">
 
1199
            <summary>
 
1200
            The Numerics class contains common operations on numeric values.
 
1201
            </summary>
 
1202
        </member>
 
1203
        <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
 
1204
            <summary>
 
1205
            Checks the type of the object, returning true if
 
1206
            the object is a numeric type.
 
1207
            </summary>
 
1208
            <param name="obj">The object to check</param>
 
1209
            <returns>true if the object is a numeric type</returns>
 
1210
        </member>
 
1211
        <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
 
1212
            <summary>
 
1213
            Checks the type of the object, returning true if
 
1214
            the object is a floating point numeric type.
 
1215
            </summary>
 
1216
            <param name="obj">The object to check</param>
 
1217
            <returns>true if the object is a floating point numeric type</returns>
 
1218
        </member>
 
1219
        <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
 
1220
            <summary>
 
1221
            Checks the type of the object, returning true if
 
1222
            the object is a fixed point numeric type.
 
1223
            </summary>
 
1224
            <param name="obj">The object to check</param>
 
1225
            <returns>true if the object is a fixed point numeric type</returns>
 
1226
        </member>
 
1227
        <member name="T:NUnit.Framework.SyntaxHelpers.Is">
 
1228
            <summary>
 
1229
            The Is class is a helper class with properties and methods
 
1230
            that supply a number of constraints used in Asserts.
 
1231
            </summary>
 
1232
        </member>
 
1233
        <member name="F:NUnit.Framework.SyntaxHelpers.Is.Null">
 
1234
            <summary>
 
1235
            Is.Null returns a static constraint that tests for null
 
1236
            </summary>
 
1237
        </member>
 
1238
        <member name="F:NUnit.Framework.SyntaxHelpers.Is.True">
 
1239
            <summary>
 
1240
            Is.True returns a static constraint that tests whether a value is true
 
1241
            </summary>
 
1242
        </member>
 
1243
        <member name="F:NUnit.Framework.SyntaxHelpers.Is.False">
 
1244
            <summary>
 
1245
            Is.False returns a static constraint that tests whether a value is false
 
1246
            </summary>
 
1247
        </member>
 
1248
        <member name="F:NUnit.Framework.SyntaxHelpers.Is.NaN">
 
1249
            <summary>
 
1250
            Is.NaN returns a static constraint that tests whether a value is an NaN
 
1251
            </summary>
 
1252
        </member>
 
1253
        <member name="F:NUnit.Framework.SyntaxHelpers.Is.Empty">
 
1254
            <summary>
 
1255
            Is.Empty returns a static constraint that tests whether a string or collection is empty
 
1256
            </summary>
 
1257
        </member>
 
1258
        <member name="F:NUnit.Framework.SyntaxHelpers.Is.Unique">
 
1259
            <summary>
 
1260
            Is.Unique returns a static constraint that tests whether a collection contains all unque items.
 
1261
            </summary>
 
1262
        </member>
 
1263
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.EqualTo(System.Object)">
 
1264
            <summary>
 
1265
            Is.EqualTo returns a constraint that tests whether the
 
1266
            actual value equals the supplied argument
 
1267
            </summary>
 
1268
            <param name="expected"></param>
 
1269
            <returns></returns>
 
1270
        </member>
 
1271
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.SameAs(System.Object)">
 
1272
            <summary>
 
1273
            Is.SameAs returns a constraint that tests whether the
 
1274
            actual value is the same object as the supplied argument.
 
1275
            </summary>
 
1276
            <param name="expected"></param>
 
1277
            <returns></returns>
 
1278
        </member>
 
1279
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.GreaterThan(System.IComparable)">
 
1280
            <summary>
 
1281
            Is.GreaterThan returns a constraint that tests whether the
 
1282
            actual value is greater than the suppled argument
 
1283
            </summary>
 
1284
        </member>
 
1285
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.GreaterThanOrEqualTo(System.IComparable)">
 
1286
            <summary>
 
1287
            Is.GreaterThanOrEqualTo returns a constraint that tests whether the
 
1288
            actual value is greater than or equal to the suppled argument
 
1289
            </summary>
 
1290
        </member>
 
1291
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.AtLeast(System.IComparable)">
 
1292
            <summary>
 
1293
            Is.AtLeast is a synonym for Is.GreaterThanOrEqualTo
 
1294
            </summary>
 
1295
        </member>
 
1296
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.LessThan(System.IComparable)">
 
1297
            <summary>
 
1298
            Is.LessThan returns a constraint that tests whether the
 
1299
            actual value is less than the suppled argument
 
1300
            </summary>
 
1301
        </member>
 
1302
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.LessThanOrEqualTo(System.IComparable)">
 
1303
            <summary>
 
1304
            Is.LessThanOrEqualTo returns a constraint that tests whether the
 
1305
            actual value is less than or equal to the suppled argument
 
1306
            </summary>
 
1307
        </member>
 
1308
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.AtMost(System.IComparable)">
 
1309
            <summary>
 
1310
            Is.AtMost is a synonym for Is.LessThanOrEqualTo
 
1311
            </summary>
 
1312
        </member>
 
1313
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.TypeOf(System.Type)">
 
1314
            <summary>
 
1315
            Is.TypeOf returns a constraint that tests whether the actual
 
1316
            value is of the exact type supplied as an argument.
 
1317
            </summary>
 
1318
        </member>
 
1319
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.InstanceOfType(System.Type)">
 
1320
            <summary>
 
1321
            Is.InstanceOfType returns a constraint that tests whether 
 
1322
            the actual value is of the type supplied as an argument
 
1323
            or a derived type.
 
1324
            </summary>
 
1325
        </member>
 
1326
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.AssignableFrom(System.Type)">
 
1327
            <summary>
 
1328
            Is.AssignableFrom returns a constraint that tests whether
 
1329
            the actual value is assignable from the type supplied as
 
1330
            an argument.
 
1331
            </summary>
 
1332
            <param name="expectedType"></param>
 
1333
            <returns></returns>
 
1334
        </member>
 
1335
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.EquivalentTo(System.Collections.ICollection)">
 
1336
            <summary>
 
1337
            Is.EquivalentTo returns a constraint that tests whether
 
1338
            the actual value is a collection containing the same
 
1339
            elements as the collection supplied as an arument
 
1340
            </summary>
 
1341
        </member>
 
1342
        <member name="M:NUnit.Framework.SyntaxHelpers.Is.SubsetOf(System.Collections.ICollection)">
 
1343
            <summary>
 
1344
            Is.SubsetOf returns a constraint that tests whether
 
1345
            the actual value is a subset of the collection 
 
1346
            supplied as an arument
 
1347
            </summary>
 
1348
        </member>
 
1349
        <member name="P:NUnit.Framework.SyntaxHelpers.Is.Not">
 
1350
            <summary>
 
1351
            Is.Not returns a ConstraintBuilder that negates
 
1352
            the constraint that follows it.
 
1353
            </summary>
 
1354
        </member>
 
1355
        <member name="P:NUnit.Framework.SyntaxHelpers.Is.All">
 
1356
            <summary>
 
1357
            Is.All returns a ConstraintBuilder, which will apply
 
1358
            the following constraint to all members of a collection,
 
1359
            succeeding if all of them succeed. This property is
 
1360
            a synonym for Has.AllItems.
 
1361
            </summary>
 
1362
        </member>
 
1363
        <member name="T:NUnit.Framework.SyntaxHelpers.Iz">
 
1364
            <summary>
 
1365
            The Iz class is a synonym for Is intended for use in VB,
 
1366
            which regards Is as a keyword.
 
1367
            </summary>
 
1368
        </member>
 
1369
        <member name="T:NUnit.Framework.SyntaxHelpers.Text">
 
1370
            <summary>
 
1371
            The Text class is a helper class with properties and methods
 
1372
            that supply a number of constraints used with strings.
 
1373
            </summary>
 
1374
        </member>
 
1375
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.Contains(System.String)">
 
1376
            <summary>
 
1377
            Contains returns a constraint that succeeds if the actual
 
1378
            value contains the substring supplied as an argument.
 
1379
            </summary>
 
1380
        </member>
 
1381
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotContain(System.String)">
 
1382
            <summary>
 
1383
            DoesNotContain returns a constraint that fails if the actual
 
1384
            value contains the substring supplied as an argument.
 
1385
            </summary>
 
1386
        </member>
 
1387
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.StartsWith(System.String)">
 
1388
            <summary>
 
1389
            StartsWith returns a constraint that succeeds if the actual
 
1390
            value starts with the substring supplied as an argument.
 
1391
            </summary>
 
1392
        </member>
 
1393
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotStartWith(System.String)">
 
1394
            <summary>
 
1395
            DoesNotStartWith returns a constraint that fails if the actual
 
1396
            value starts with the substring supplied as an argument.
 
1397
            </summary>
 
1398
        </member>
 
1399
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.EndsWith(System.String)">
 
1400
            <summary>
 
1401
            EndsWith returns a constraint that succeeds if the actual
 
1402
            value ends with the substring supplied as an argument.
 
1403
            </summary>
 
1404
        </member>
 
1405
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotEndWith(System.String)">
 
1406
            <summary>
 
1407
            DoesNotEndWith returns a constraint that fails if the actual
 
1408
            value ends with the substring supplied as an argument.
 
1409
            </summary>
 
1410
        </member>
 
1411
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.Matches(System.String)">
 
1412
            <summary>
 
1413
            Matches returns a constraint that succeeds if the actual
 
1414
            value matches the pattern supplied as an argument.
 
1415
            </summary>
 
1416
            <param name="pattern"></param>
 
1417
            <returns></returns>
 
1418
        </member>
 
1419
        <member name="M:NUnit.Framework.SyntaxHelpers.Text.DoesNotMatch(System.String)">
 
1420
            <summary>
 
1421
            DoesNotMatch returns a constraint that failss if the actual
 
1422
            value matches the pattern supplied as an argument.
 
1423
            </summary>
 
1424
            <param name="pattern"></param>
 
1425
            <returns></returns>
 
1426
        </member>
 
1427
        <member name="P:NUnit.Framework.SyntaxHelpers.Text.All">
 
1428
            <summary>
 
1429
            Text.All returns a ConstraintBuilder, which will apply
 
1430
            the following constraint to all members of a collection,
 
1431
            succeeding if all of them succeed.
 
1432
            </summary>
 
1433
        </member>
 
1434
        <member name="T:NUnit.Framework.SyntaxHelpers.List">
 
1435
            <summary>
 
1436
            The List class is a helper class with properties and methods
 
1437
            that supply a number of constraints used with lists and collections.
 
1438
            </summary>
 
1439
        </member>
 
1440
        <member name="M:NUnit.Framework.SyntaxHelpers.List.Map(System.Collections.ICollection)">
 
1441
            <summary>
 
1442
            List.Map returns a ListMapper, which can be used to map
 
1443
            the original collection to another collection.
 
1444
            </summary>
 
1445
            <param name="actual"></param>
 
1446
            <returns></returns>
 
1447
        </member>
 
1448
        <member name="T:NUnit.Framework.SyntaxHelpers.ListMapper">
 
1449
            <summary>
 
1450
            ListMapper is used to transform a collection used as an actual argument
 
1451
            producing another collection to be used in the assertion.
 
1452
            </summary>
 
1453
        </member>
 
1454
        <member name="M:NUnit.Framework.SyntaxHelpers.ListMapper.#ctor(System.Collections.ICollection)">
 
1455
            <summary>
 
1456
            Construct a ListMapper based on a collection
 
1457
            </summary>
 
1458
            <param name="original">The collection to be transformed</param>
 
1459
        </member>
 
1460
        <member name="M:NUnit.Framework.SyntaxHelpers.ListMapper.Property(System.String)">
 
1461
            <summary>
 
1462
            Produces a collection containing all the values of a property
 
1463
            </summary>
 
1464
            <param name="name">The collection of property values</param>
 
1465
            <returns></returns>
 
1466
        </member>
 
1467
        <member name="T:NUnit.Framework.SyntaxHelpers.Has">
 
1468
            <summary>
 
1469
            Summary description for HasNoPrefixB.
 
1470
            </summary>
 
1471
        </member>
 
1472
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.Property(System.String)">
 
1473
            <summary>
 
1474
            Returns a new ConstraintBuilder, which will apply the
 
1475
            following constraint to a named property of the object
 
1476
            being tested.
 
1477
            </summary>
 
1478
            <param name="name">The name of the property</param>
 
1479
        </member>
 
1480
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.Property(System.String,System.Object)">
 
1481
            <summary>
 
1482
            Returns a new PropertyConstraint checking for the
 
1483
            existence of a particular property value.
 
1484
            </summary>
 
1485
            <param name="name">The name of the property to look for</param>
 
1486
            <param name="expected">The expected value of the property</param>
 
1487
        </member>
 
1488
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.Length(System.Int32)">
 
1489
            <summary>
 
1490
            Returns a new PropertyConstraint for the Length property
 
1491
            </summary>
 
1492
            <param name="length"></param>
 
1493
            <returns></returns>
 
1494
        </member>
 
1495
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.Count(System.Int32)">
 
1496
            <summary>
 
1497
            Returns a new PropertyConstraint or the Count property
 
1498
            </summary>
 
1499
            <param name="count"></param>
 
1500
            <returns></returns>
 
1501
        </member>
 
1502
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.Member(System.Object)">
 
1503
            <summary>
 
1504
            Returns a new CollectionContainsConstraint checking for the
 
1505
            presence of a particular object in the collection.
 
1506
            </summary>
 
1507
            <param name="expected">The expected object</param>
 
1508
        </member>
 
1509
        <member name="P:NUnit.Framework.SyntaxHelpers.Has.No">
 
1510
            <summary>
 
1511
            Has.No returns a ConstraintBuilder that negates
 
1512
            the constraint that follows it.
 
1513
            </summary>
 
1514
        </member>
 
1515
        <member name="P:NUnit.Framework.SyntaxHelpers.Has.All">
 
1516
            <summary>
 
1517
            Has.AllItems returns a ConstraintBuilder, which will apply
 
1518
            the following constraint to all members of a collection,
 
1519
            succeeding if all of them succeed.
 
1520
            </summary>
 
1521
        </member>
 
1522
        <member name="P:NUnit.Framework.SyntaxHelpers.Has.Some">
 
1523
            <summary>
 
1524
            Has.Some returns a ConstraintBuilder, which will apply
 
1525
            the following constraint to all members of a collection,
 
1526
            succeeding if any of them succeed. It is a synonym
 
1527
            for Has.Item.
 
1528
            </summary>
 
1529
        </member>
 
1530
        <member name="P:NUnit.Framework.SyntaxHelpers.Has.None">
 
1531
            <summary>
 
1532
            Has.None returns a ConstraintBuilder, which will apply
 
1533
            the following constraint to all members of a collection,
 
1534
            succeeding only if none of them succeed.
 
1535
            </summary>
 
1536
        </member>
 
1537
        <member name="T:NUnit.Framework.SyntaxHelpers.Has.HasNoPrefixBuilder">
 
1538
            <summary>
 
1539
            Nested class that allows us to restrict the number
 
1540
            of key words that may appear after Has.No.
 
1541
            </summary>
 
1542
        </member>
 
1543
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.HasNoPrefixBuilder.Property(System.String)">
 
1544
            <summary>
 
1545
            Return a ConstraintBuilder conditioned to apply
 
1546
            the following constraint to a property.
 
1547
            </summary>
 
1548
            <param name="name">The property name</param>
 
1549
            <returns>A ConstraintBuilder</returns>
 
1550
        </member>
 
1551
        <member name="M:NUnit.Framework.SyntaxHelpers.Has.HasNoPrefixBuilder.Member(System.Object)">
 
1552
            <summary>
 
1553
            Return a Constraint that succeeds if the expected object is
 
1554
            not contained in a collection.
 
1555
            </summary>
 
1556
            <param name="expected">The expected object</param>
 
1557
            <returns>A Constraint</returns>
 
1558
        </member>
 
1559
        <member name="T:NUnit.Framework.Assert">
 
1560
            <summary>
 
1561
            The Assert class contains a collection of static methods that
 
1562
            implement the most common assertions used in NUnit.
 
1563
            </summary>
 
1564
        </member>
 
1565
        <member name="M:NUnit.Framework.Assert.#ctor">
 
1566
            <summary>
 
1567
            We don't actually want any instances of this object, but some people
 
1568
            like to inherit from it to add other static methods. Hence, the
 
1569
            protected constructor disallows any instances of this object. 
 
1570
            </summary>
 
1571
        </member>
 
1572
        <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
 
1573
            <summary>
 
1574
            The Equals method throws an AssertionException. This is done 
 
1575
            to make sure there is no mistake by calling this function.
 
1576
            </summary>
 
1577
            <param name="a"></param>
 
1578
            <param name="b"></param>
 
1579
        </member>
 
1580
        <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
 
1581
            <summary>
 
1582
            override the default ReferenceEquals to throw an AssertionException. This 
 
1583
            implementation makes sure there is no mistake in calling this function 
 
1584
            as part of Assert. 
 
1585
            </summary>
 
1586
            <param name="a"></param>
 
1587
            <param name="b"></param>
 
1588
        </member>
 
1589
        <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
 
1590
            <summary>
 
1591
            Asserts that a condition is true. If the condition is false the method throws
 
1592
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
1593
            </summary> 
 
1594
            <param name="condition">The evaluated condition</param>
 
1595
            <param name="message">The message to display if the condition is false</param>
 
1596
            <param name="args">Arguments to be used in formatting the message</param>
 
1597
        </member>
 
1598
        <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
 
1599
            <summary>
 
1600
            Asserts that a condition is true. If the condition is false the method throws
 
1601
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
1602
            </summary>
 
1603
            <param name="condition">The evaluated condition</param>
 
1604
            <param name="message">The message to display if the condition is false</param>
 
1605
        </member>
 
1606
        <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
 
1607
            <summary>
 
1608
            Asserts that a condition is true. If the condition is false the method throws
 
1609
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
1610
            </summary>
 
1611
            <param name="condition">The evaluated condition</param>
 
1612
        </member>
 
1613
        <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
 
1614
            <summary>
 
1615
            Asserts that a condition is false. If the condition is true the method throws
 
1616
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
1617
            </summary>
 
1618
            <param name="condition">The evaluated condition</param>
 
1619
            <param name="message">The message to display if the condition is true</param>
 
1620
            <param name="args">Arguments to be used in formatting the message</param>
 
1621
        </member>
 
1622
        <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
 
1623
            <summary>
 
1624
            Asserts that a condition is false. If the condition is true the method throws
 
1625
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
1626
            </summary>
 
1627
            <param name="condition">The evaluated condition</param>
 
1628
            <param name="message">The message to display if the condition is true</param>
 
1629
        </member>
 
1630
        <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
 
1631
            <summary>
 
1632
            Asserts that a condition is false. If the condition is true the method throws
 
1633
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
1634
            </summary>
 
1635
            <param name="condition">The evaluated condition</param>
 
1636
        </member>
 
1637
        <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
 
1638
            <summary>
 
1639
            Verifies that the object that is passed in is not equal to <code>null</code>
 
1640
            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1641
            is thrown.
 
1642
            </summary>
 
1643
            <param name="anObject">The object that is to be tested</param>
 
1644
            <param name="message">The message to be displayed when the object is null</param>
 
1645
            <param name="args">Arguments to be used in formatting the message</param>
 
1646
        </member>
 
1647
        <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
 
1648
            <summary>
 
1649
            Verifies that the object that is passed in is not equal to <code>null</code>
 
1650
            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1651
            is thrown.
 
1652
            </summary>
 
1653
            <param name="anObject">The object that is to be tested</param>
 
1654
            <param name="message">The message to be displayed when the object is null</param>
 
1655
        </member>
 
1656
        <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
 
1657
            <summary>
 
1658
            Verifies that the object that is passed in is not equal to <code>null</code>
 
1659
            If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1660
            is thrown.
 
1661
            </summary>
 
1662
            <param name="anObject">The object that is to be tested</param>
 
1663
        </member>
 
1664
        <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
 
1665
            <summary>
 
1666
            Verifies that the object that is passed in is equal to <code>null</code>
 
1667
            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1668
            is thrown.
 
1669
            </summary>
 
1670
            <param name="anObject">The object that is to be tested</param>
 
1671
            <param name="message">The message to be displayed when the object is not null</param>
 
1672
            <param name="args">Arguments to be used in formatting the message</param>
 
1673
        </member>
 
1674
        <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
 
1675
            <summary>
 
1676
            Verifies that the object that is passed in is equal to <code>null</code>
 
1677
            If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1678
            is thrown.
 
1679
            </summary>
 
1680
            <param name="anObject">The object that is to be tested</param>
 
1681
            <param name="message">The message to be displayed when the object is not null</param>
 
1682
        </member>
 
1683
        <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
 
1684
            <summary>
 
1685
            Verifies that the object that is passed in is equal to <code>null</code>
 
1686
            If the object is not null <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1687
            is thrown.
 
1688
            </summary>
 
1689
            <param name="anObject">The object that is to be tested</param>
 
1690
        </member>
 
1691
        <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
 
1692
            <summary>
 
1693
            Verifies that the double is passed is an <code>NaN</code> value.
 
1694
            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1695
            is thrown.
 
1696
            </summary>
 
1697
            <param name="aDouble">The value that is to be tested</param>
 
1698
            <param name="message">The message to be displayed when the object is not null</param>
 
1699
            <param name="args">Arguments to be used in formatting the message</param>
 
1700
        </member>
 
1701
        <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
 
1702
            <summary>
 
1703
            Verifies that the double is passed is an <code>NaN</code> value.
 
1704
            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1705
            is thrown.
 
1706
            </summary>
 
1707
            <param name="aDouble">The object that is to be tested</param>
 
1708
            <param name="message">The message to be displayed when the object is not null</param>
 
1709
        </member>
 
1710
        <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
 
1711
            <summary>
 
1712
            Verifies that the double is passed is an <code>NaN</code> value.
 
1713
            If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
 
1714
            is thrown.
 
1715
            </summary>
 
1716
            <param name="aDouble">The object that is to be tested</param>
 
1717
        </member>
 
1718
        <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
 
1719
            <summary>
 
1720
            Assert that a string is empty - that is equal to string.Empty
 
1721
            </summary>
 
1722
            <param name="aString">The string to be tested</param>
 
1723
            <param name="message">The message to be displayed on failure</param>
 
1724
            <param name="args">Arguments to be used in formatting the message</param>
 
1725
        </member>
 
1726
        <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
 
1727
            <summary>
 
1728
            Assert that a string is empty - that is equal to string.Emtpy
 
1729
            </summary>
 
1730
            <param name="aString">The string to be tested</param>
 
1731
            <param name="message">The message to be displayed on failure</param>
 
1732
        </member>
 
1733
        <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
 
1734
            <summary>
 
1735
            Assert that a string is empty - that is equal to string.Emtpy
 
1736
            </summary>
 
1737
            <param name="aString">The string to be tested</param>
 
1738
        </member>
 
1739
        <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
 
1740
            <summary>
 
1741
            Assert that an array, list or other collection is empty
 
1742
            </summary>
 
1743
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
1744
            <param name="message">The message to be displayed on failure</param>
 
1745
            <param name="args">Arguments to be used in formatting the message</param>
 
1746
        </member>
 
1747
        <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
 
1748
            <summary>
 
1749
            Assert that an array, list or other collection is empty
 
1750
            </summary>
 
1751
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
1752
            <param name="message">The message to be displayed on failure</param>
 
1753
        </member>
 
1754
        <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
 
1755
            <summary>
 
1756
            Assert that an array,list or other collection is empty
 
1757
            </summary>
 
1758
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
1759
        </member>
 
1760
        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
 
1761
            <summary>
 
1762
            Assert that a string is not empty - that is not equal to string.Empty
 
1763
            </summary>
 
1764
            <param name="aString">The string to be tested</param>
 
1765
            <param name="message">The message to be displayed on failure</param>
 
1766
            <param name="args">Arguments to be used in formatting the message</param>
 
1767
        </member>
 
1768
        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
 
1769
            <summary>
 
1770
            Assert that a string is empty - that is equal to string.Emtpy
 
1771
            </summary>
 
1772
            <param name="aString">The string to be tested</param>
 
1773
            <param name="message">The message to be displayed on failure</param>
 
1774
        </member>
 
1775
        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
 
1776
            <summary>
 
1777
            Assert that a string is empty - that is equal to string.Emtpy
 
1778
            </summary>
 
1779
            <param name="aString">The string to be tested</param>
 
1780
        </member>
 
1781
        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
 
1782
            <summary>
 
1783
            Assert that an array, list or other collection is empty
 
1784
            </summary>
 
1785
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
1786
            <param name="message">The message to be displayed on failure</param>
 
1787
            <param name="args">Arguments to be used in formatting the message</param>
 
1788
        </member>
 
1789
        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
 
1790
            <summary>
 
1791
            Assert that an array, list or other collection is empty
 
1792
            </summary>
 
1793
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
1794
            <param name="message">The message to be displayed on failure</param>
 
1795
        </member>
 
1796
        <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
 
1797
            <summary>
 
1798
            Assert that an array,list or other collection is empty
 
1799
            </summary>
 
1800
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
1801
        </member>
 
1802
        <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
 
1803
            <summary>
 
1804
            Asserts that an object may be assigned a  value of a given Type.
 
1805
            </summary>
 
1806
            <param name="expected">The expected Type.</param>
 
1807
            <param name="actual">The object under examination</param>
 
1808
        </member>
 
1809
        <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
 
1810
            <summary>
 
1811
            Asserts that an object may be assigned a  value of a given Type.
 
1812
            </summary>
 
1813
            <param name="expected">The expected Type.</param>
 
1814
            <param name="actual">The object under examination</param>
 
1815
            <param name="message">The messge to display in case of failure</param>
 
1816
        </member>
 
1817
        <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
 
1818
            <summary>
 
1819
            Asserts that an object may be assigned a  value of a given Type.
 
1820
            </summary>
 
1821
            <param name="expected">The expected Type.</param>
 
1822
            <param name="actual">The object under examination</param>
 
1823
            <param name="message">The message to display in case of failure</param>
 
1824
            <param name="args">Array of objects to be used in formatting the message</param>
 
1825
        </member>
 
1826
        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
 
1827
            <summary>
 
1828
            Asserts that an object may not be assigned a  value of a given Type.
 
1829
            </summary>
 
1830
            <param name="expected">The expected Type.</param>
 
1831
            <param name="actual">The object under examination</param>
 
1832
        </member>
 
1833
        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
 
1834
            <summary>
 
1835
            Asserts that an object may not be assigned a  value of a given Type.
 
1836
            </summary>
 
1837
            <param name="expected">The expected Type.</param>
 
1838
            <param name="actual">The object under examination</param>
 
1839
            <param name="message">The messge to display in case of failure</param>
 
1840
        </member>
 
1841
        <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
 
1842
            <summary>
 
1843
            Asserts that an object may not be assigned a  value of a given Type.
 
1844
            </summary>
 
1845
            <param name="expected">The expected Type.</param>
 
1846
            <param name="actual">The object under examination</param>
 
1847
            <param name="message">The message to display in case of failure</param>
 
1848
            <param name="args">Array of objects to be used in formatting the message</param>
 
1849
        </member>
 
1850
        <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
 
1851
            <summary>
 
1852
            Asserts that an object is an instance of a given type.
 
1853
            </summary>
 
1854
            <param name="expected">The expected Type</param>
 
1855
            <param name="actual">The object being examined</param>
 
1856
        </member>
 
1857
        <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
 
1858
            <summary>
 
1859
            Asserts that an object is an instance of a given type.
 
1860
            </summary>
 
1861
            <param name="expected">The expected Type</param>
 
1862
            <param name="actual">The object being examined</param>
 
1863
            <param name="message">A message to display in case of failure</param>
 
1864
        </member>
 
1865
        <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
 
1866
            <summary>
 
1867
            Asserts that an object is an instance of a given type.
 
1868
            </summary>
 
1869
            <param name="expected">The expected Type</param>
 
1870
            <param name="actual">The object being examined</param>
 
1871
            <param name="message">A message to display in case of failure</param>
 
1872
            <param name="args">An array of objects to be used in formatting the message</param>
 
1873
        </member>
 
1874
        <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
 
1875
            <summary>
 
1876
            Asserts that an object is not an instance of a given type.
 
1877
            </summary>
 
1878
            <param name="expected">The expected Type</param>
 
1879
            <param name="actual">The object being examined</param>
 
1880
        </member>
 
1881
        <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
 
1882
            <summary>
 
1883
            Asserts that an object is not an instance of a given type.
 
1884
            </summary>
 
1885
            <param name="expected">The expected Type</param>
 
1886
            <param name="actual">The object being examined</param>
 
1887
            <param name="message">A message to display in case of failure</param>
 
1888
        </member>
 
1889
        <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
 
1890
            <summary>
 
1891
            Asserts that an object is not an instance of a given type.
 
1892
            </summary>
 
1893
            <param name="expected">The expected Type</param>
 
1894
            <param name="actual">The object being examined</param>
 
1895
            <param name="message">A message to display in case of failure</param>
 
1896
            <param name="args">An array of objects to be used in formatting the message</param>
 
1897
        </member>
 
1898
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
 
1899
            <summary>
 
1900
            Verifies that two ints are equal. If they are not, then an 
 
1901
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1902
            </summary>
 
1903
            <param name="expected">The expected value</param>
 
1904
            <param name="actual">The actual value</param>
 
1905
            <param name="message">The message that will be displayed on failure</param>
 
1906
            <param name="args">Arguments to be used in formatting the message</param>
 
1907
        </member>
 
1908
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
 
1909
            <summary>
 
1910
            Verifies that two ints are equal. If they are not, then an 
 
1911
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1912
            </summary>
 
1913
            <param name="expected">The expected value</param>
 
1914
            <param name="actual">The actual value</param>
 
1915
            <param name="message">The message that will be displayed on failure</param>
 
1916
        </member>
 
1917
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
 
1918
            <summary>
 
1919
            Verifies that two ints are equal. If they are not, then an 
 
1920
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1921
            </summary>
 
1922
            <param name="expected">The expected value</param>
 
1923
            <param name="actual">The actual value</param>
 
1924
        </member>
 
1925
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
 
1926
            <summary>
 
1927
            Verifies that two longs are equal. If they are not, then an 
 
1928
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1929
            </summary>
 
1930
            <param name="expected">The expected value</param>
 
1931
            <param name="actual">The actual value</param>
 
1932
            <param name="message">The message that will be displayed on failure</param>
 
1933
            <param name="args">Arguments to be used in formatting the message</param>
 
1934
        </member>
 
1935
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
 
1936
            <summary>
 
1937
            Verifies that two longs are equal. If they are not, then an 
 
1938
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1939
            </summary>
 
1940
            <param name="expected">The expected value</param>
 
1941
            <param name="actual">The actual value</param>
 
1942
            <param name="message">The message that will be displayed on failure</param>
 
1943
        </member>
 
1944
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
 
1945
            <summary>
 
1946
            Verifies that two longs are equal. If they are not, then an 
 
1947
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1948
            </summary>
 
1949
            <param name="expected">The expected value</param>
 
1950
            <param name="actual">The actual value</param>
 
1951
        </member>
 
1952
        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 
1953
            <summary>
 
1954
            Verifies that two uints are equal. If they are not, then an 
 
1955
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1956
            </summary>
 
1957
            <param name="expected">The expected value</param>
 
1958
            <param name="actual">The actual value</param>
 
1959
            <param name="message">The message that will be displayed on failure</param>
 
1960
            <param name="args">Arguments to be used in formatting the message</param>
 
1961
        </member>
 
1962
        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
 
1963
            <summary>
 
1964
            Verifies that two uints are equal. If they are not, then an 
 
1965
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1966
            </summary>
 
1967
            <param name="expected">The expected value</param>
 
1968
            <param name="actual">The actual value</param>
 
1969
            <param name="message">The message that will be displayed on failure</param>
 
1970
        </member>
 
1971
        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
 
1972
            <summary>
 
1973
            Verifies that two uints are equal. If they are not, then an 
 
1974
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1975
            </summary>
 
1976
            <param name="expected">The expected value</param>
 
1977
            <param name="actual">The actual value</param>
 
1978
        </member>
 
1979
        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 
1980
            <summary>
 
1981
            Verifies that two ulongs are equal. If they are not, then an 
 
1982
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1983
            </summary>
 
1984
            <param name="expected">The expected value</param>
 
1985
            <param name="actual">The actual value</param>
 
1986
            <param name="message">The message that will be displayed on failure</param>
 
1987
            <param name="args">Arguments to be used in formatting the message</param>
 
1988
        </member>
 
1989
        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
 
1990
            <summary>
 
1991
            Verifies that two ulongs are equal. If they are not, then an 
 
1992
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
1993
            </summary>
 
1994
            <param name="expected">The expected value</param>
 
1995
            <param name="actual">The actual value</param>
 
1996
            <param name="message">The message that will be displayed on failure</param>
 
1997
        </member>
 
1998
        <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
 
1999
            <summary>
 
2000
            Verifies that two ulongs are equal. If they are not, then an 
 
2001
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2002
            </summary>
 
2003
            <param name="expected">The expected value</param>
 
2004
            <param name="actual">The actual value</param>
 
2005
        </member>
 
2006
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 
2007
            <summary>
 
2008
            Verifies that two decimals are equal. If they are not, then an 
 
2009
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2010
            </summary>
 
2011
            <param name="expected">The expected value</param>
 
2012
            <param name="actual">The actual value</param>
 
2013
            <param name="message">The message that will be displayed on failure</param>
 
2014
            <param name="args">Arguments to be used in formatting the message</param>
 
2015
        </member>
 
2016
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
 
2017
            <summary>
 
2018
            Verifies that two decimal are equal. If they are not, then an 
 
2019
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2020
            </summary>
 
2021
            <param name="expected">The expected value</param>
 
2022
            <param name="actual">The actual value</param>
 
2023
            <param name="message">The message that will be displayed on failure</param>
 
2024
        </member>
 
2025
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
 
2026
            <summary>
 
2027
            Verifies that two decimals are equal. If they are not, then an 
 
2028
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2029
            </summary>
 
2030
            <param name="expected">The expected value</param>
 
2031
            <param name="actual">The actual value</param>
 
2032
        </member>
 
2033
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
 
2034
            <summary>
 
2035
            Verifies that two doubles are equal considering a delta. If the
 
2036
            expected value is infinity then the delta value is ignored. If 
 
2037
            they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
 
2038
            thrown.
 
2039
            </summary>
 
2040
            <param name="expected">The expected value</param>
 
2041
            <param name="actual">The actual value</param>
 
2042
            <param name="delta">The maximum acceptable difference between the
 
2043
            the expected and the actual</param>
 
2044
            <param name="message">The message that will be displayed on failure</param>
 
2045
            <param name="args">Arguments to be used in formatting the message</param>
 
2046
        </member>
 
2047
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
 
2048
            <summary>
 
2049
            Verifies that two doubles are equal considering a delta. If the
 
2050
            expected value is infinity then the delta value is ignored. If 
 
2051
            they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
 
2052
            thrown.
 
2053
            </summary>
 
2054
            <param name="expected">The expected value</param>
 
2055
            <param name="actual">The actual value</param>
 
2056
            <param name="delta">The maximum acceptable difference between the
 
2057
            the expected and the actual</param>
 
2058
            <param name="message">The message that will be displayed on failure</param>
 
2059
        </member>
 
2060
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
 
2061
            <summary>
 
2062
            Verifies that two doubles are equal considering a delta. If the
 
2063
            expected value is infinity then the delta value is ignored. If 
 
2064
            they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
 
2065
            thrown.
 
2066
            </summary>
 
2067
            <param name="expected">The expected value</param>
 
2068
            <param name="actual">The actual value</param>
 
2069
            <param name="delta">The maximum acceptable difference between the
 
2070
            the expected and the actual</param>
 
2071
        </member>
 
2072
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
 
2073
            <summary>
 
2074
            Verifies that two floats are equal considering a delta. If the
 
2075
            expected value is infinity then the delta value is ignored. If 
 
2076
            they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
 
2077
            thrown.
 
2078
            </summary>
 
2079
            <param name="expected">The expected value</param>
 
2080
            <param name="actual">The actual value</param>
 
2081
            <param name="delta">The maximum acceptable difference between the
 
2082
            the expected and the actual</param>
 
2083
            <param name="message">The message displayed upon failure</param>
 
2084
            <param name="args">Arguments to be used in formatting the message</param>
 
2085
        </member>
 
2086
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
 
2087
            <summary>
 
2088
            Verifies that two floats are equal considering a delta. If the
 
2089
            expected value is infinity then the delta value is ignored. If 
 
2090
            they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
 
2091
            thrown.
 
2092
            </summary>
 
2093
            <param name="expected">The expected value</param>
 
2094
            <param name="actual">The actual value</param>
 
2095
            <param name="delta">The maximum acceptable difference between the
 
2096
            the expected and the actual</param>
 
2097
            <param name="message">The message displayed upon failure</param>
 
2098
        </member>
 
2099
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
 
2100
            <summary>
 
2101
            Verifies that two floats are equal considering a delta. If the
 
2102
            expected value is infinity then the delta value is ignored. If 
 
2103
            they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
 
2104
            thrown.
 
2105
            </summary>
 
2106
            <param name="expected">The expected value</param>
 
2107
            <param name="actual">The actual value</param>
 
2108
            <param name="delta">The maximum acceptable difference between the
 
2109
            the expected and the actual</param>
 
2110
        </member>
 
2111
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
 
2112
            <summary>
 
2113
            Verifies that two objects are equal.  Two objects are considered
 
2114
            equal if both are null, or if both have the same value.  All
 
2115
            non-numeric types are compared by using the <c>Equals</c> method.
 
2116
            Arrays are compared by comparing each element using the same rules.
 
2117
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2118
            </summary>
 
2119
            <param name="expected">The value that is expected</param>
 
2120
            <param name="actual">The actual value</param>
 
2121
            <param name="message">The message to display if objects are not equal</param>
 
2122
            <param name="args">Arguments to be used in formatting the message</param>
 
2123
        </member>
 
2124
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
 
2125
            <summary>
 
2126
            Verifies that two objects are equal.  Two objects are considered
 
2127
            equal if both are null, or if both have the same value.  All
 
2128
            non-numeric types are compared by using the <c>Equals</c> method.
 
2129
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2130
            </summary>
 
2131
            <param name="expected">The value that is expected</param>
 
2132
            <param name="actual">The actual value</param>
 
2133
            <param name="message">The message to display if objects are not equal</param>
 
2134
        </member>
 
2135
        <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
 
2136
            <summary>
 
2137
            Verifies that two objects are equal.  Two objects are considered
 
2138
            equal if both are null, or if both have the same value.  All
 
2139
            non-numeric types are compared by using the <c>Equals</c> method.
 
2140
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2141
            </summary>
 
2142
            <param name="expected">The value that is expected</param>
 
2143
            <param name="actual">The actual value</param>
 
2144
        </member>
 
2145
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
 
2146
            <summary>
 
2147
            Asserts that two objects are not equal. If they are equal
 
2148
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2149
            </summary>
 
2150
            <param name="expected">The expected object</param>
 
2151
            <param name="actual">The actual object</param>
 
2152
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2153
            <param name="args">Arguments to be used in formatting the message</param>
 
2154
        </member>
 
2155
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
 
2156
            <summary>
 
2157
            Asserts that two objects are not equal. If they are equal
 
2158
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2159
            </summary>
 
2160
            <param name="expected">The expected object</param>
 
2161
            <param name="actual">The actual object</param>
 
2162
            <param name="message">The message to be displayed when the objects are the same</param>
 
2163
        </member>
 
2164
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
 
2165
            <summary>
 
2166
            Asserts that two objects are not equal. If they are equal
 
2167
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2168
            </summary>
 
2169
            <param name="expected">The expected object</param>
 
2170
            <param name="actual">The actual object</param>
 
2171
        </member>
 
2172
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
 
2173
            <summary>
 
2174
            Asserts that two ints are not equal. If they are equal
 
2175
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2176
            </summary>
 
2177
            <param name="expected">The expected object</param>
 
2178
            <param name="actual">The actual object</param>
 
2179
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2180
            <param name="args">Arguments to be used in formatting the message</param>
 
2181
        </member>
 
2182
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
 
2183
            <summary>
 
2184
            Asserts that two ints are not equal. If they are equal
 
2185
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2186
            </summary>
 
2187
            <param name="expected">The expected object</param>
 
2188
            <param name="actual">The actual object</param>
 
2189
            <param name="message">The message to be displayed when the objects are the same</param>
 
2190
        </member>
 
2191
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
 
2192
            <summary>
 
2193
            Asserts that two ints are not equal. If they are equal
 
2194
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2195
            </summary>
 
2196
            <param name="expected">The expected object</param>
 
2197
            <param name="actual">The actual object</param>
 
2198
        </member>
 
2199
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
 
2200
            <summary>
 
2201
            Asserts that two longss are not equal. If they are equal
 
2202
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2203
            </summary>
 
2204
            <param name="expected">The expected object</param>
 
2205
            <param name="actual">The actual object</param>
 
2206
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2207
            <param name="args">Arguments to be used in formatting the message</param>
 
2208
        </member>
 
2209
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
 
2210
            <summary>
 
2211
            Asserts that two longs are not equal. If they are equal
 
2212
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2213
            </summary>
 
2214
            <param name="expected">The expected object</param>
 
2215
            <param name="actual">The actual object</param>
 
2216
            <param name="message">The message to be displayed when the objects are the same</param>
 
2217
        </member>
 
2218
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
 
2219
            <summary>
 
2220
            Asserts that two longs are not equal. If they are equal
 
2221
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2222
            </summary>
 
2223
            <param name="expected">The expected object</param>
 
2224
            <param name="actual">The actual object</param>
 
2225
        </member>
 
2226
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 
2227
            <summary>
 
2228
            Asserts that two uints are not equal. If they are equal
 
2229
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2230
            </summary>
 
2231
            <param name="expected">The expected object</param>
 
2232
            <param name="actual">The actual object</param>
 
2233
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2234
            <param name="args">Arguments to be used in formatting the message</param>
 
2235
        </member>
 
2236
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
 
2237
            <summary>
 
2238
            Asserts that two uints are not equal. If they are equal
 
2239
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2240
            </summary>
 
2241
            <param name="expected">The expected object</param>
 
2242
            <param name="actual">The actual object</param>
 
2243
            <param name="message">The message to be displayed when the objects are the same</param>
 
2244
        </member>
 
2245
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
 
2246
            <summary>
 
2247
            Asserts that two uints are not equal. If they are equal
 
2248
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2249
            </summary>
 
2250
            <param name="expected">The expected object</param>
 
2251
            <param name="actual">The actual object</param>
 
2252
        </member>
 
2253
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 
2254
            <summary>
 
2255
            Asserts that two ulongs are not equal. If they are equal
 
2256
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2257
            </summary>
 
2258
            <param name="expected">The expected object</param>
 
2259
            <param name="actual">The actual object</param>
 
2260
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2261
            <param name="args">Arguments to be used in formatting the message</param>
 
2262
        </member>
 
2263
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
 
2264
            <summary>
 
2265
            Asserts that two ulongs are not equal. If they are equal
 
2266
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2267
            </summary>
 
2268
            <param name="expected">The expected object</param>
 
2269
            <param name="actual">The actual object</param>
 
2270
            <param name="message">The message to be displayed when the objects are the same</param>
 
2271
        </member>
 
2272
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
 
2273
            <summary>
 
2274
            Asserts that two ulong are not equal. If they are equal
 
2275
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2276
            </summary>
 
2277
            <param name="expected">The expected object</param>
 
2278
            <param name="actual">The actual object</param>
 
2279
        </member>
 
2280
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 
2281
            <summary>
 
2282
            Asserts that two decimals are not equal. If they are equal
 
2283
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2284
            </summary>
 
2285
            <param name="expected">The expected object</param>
 
2286
            <param name="actual">The actual object</param>
 
2287
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2288
            <param name="args">Arguments to be used in formatting the message</param>
 
2289
        </member>
 
2290
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
 
2291
            <summary>
 
2292
            Asserts that two decimals are not equal. If they are equal
 
2293
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2294
            </summary>
 
2295
            <param name="expected">The expected object</param>
 
2296
            <param name="actual">The actual object</param>
 
2297
            <param name="message">The message to be displayed when the objects are the same</param>
 
2298
        </member>
 
2299
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
 
2300
            <summary>
 
2301
            Asserts that two decimals are not equal. If they are equal
 
2302
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2303
            </summary>
 
2304
            <param name="expected">The expected object</param>
 
2305
            <param name="actual">The actual object</param>
 
2306
        </member>
 
2307
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
 
2308
            <summary>
 
2309
            Asserts that two floats are not equal. If they are equal
 
2310
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2311
            </summary>
 
2312
            <param name="expected">The expected object</param>
 
2313
            <param name="actual">The actual object</param>
 
2314
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2315
            <param name="args">Arguments to be used in formatting the message</param>
 
2316
        </member>
 
2317
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
 
2318
            <summary>
 
2319
            Asserts that two floats are not equal. If they are equal
 
2320
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2321
            </summary>
 
2322
            <param name="expected">The expected object</param>
 
2323
            <param name="actual">The actual object</param>
 
2324
            <param name="message">The message to be displayed when the objects are the same</param>
 
2325
        </member>
 
2326
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
 
2327
            <summary>
 
2328
            Asserts that two floats are not equal. If they are equal
 
2329
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2330
            </summary>
 
2331
            <param name="expected">The expected object</param>
 
2332
            <param name="actual">The actual object</param>
 
2333
        </member>
 
2334
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
 
2335
            <summary>
 
2336
            Asserts that two doubles are not equal. If they are equal
 
2337
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2338
            </summary>
 
2339
            <param name="expected">The expected object</param>
 
2340
            <param name="actual">The actual object</param>
 
2341
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2342
            <param name="args">Arguments to be used in formatting the message</param>
 
2343
        </member>
 
2344
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
 
2345
            <summary>
 
2346
            Asserts that two doubles are not equal. If they are equal
 
2347
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2348
            </summary>
 
2349
            <param name="expected">The expected object</param>
 
2350
            <param name="actual">The actual object</param>
 
2351
            <param name="message">The message to be displayed when the objects are the same</param>
 
2352
        </member>
 
2353
        <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
 
2354
            <summary>
 
2355
            Asserts that two doubles are not equal. If they are equal
 
2356
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2357
            </summary>
 
2358
            <param name="expected">The expected object</param>
 
2359
            <param name="actual">The actual object</param>
 
2360
        </member>
 
2361
        <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
 
2362
            <summary>
 
2363
            Asserts that two objects refer to the same object. If they
 
2364
            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2365
            </summary>
 
2366
            <param name="expected">The expected object</param>
 
2367
            <param name="actual">The actual object</param>
 
2368
            <param name="message">The message to be displayed when the two objects are not the same object.</param>
 
2369
            <param name="args">Arguments to be used in formatting the message</param>
 
2370
        </member>
 
2371
        <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
 
2372
            <summary>
 
2373
            Asserts that two objects refer to the same object. If they
 
2374
            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2375
            </summary>
 
2376
            <param name="expected">The expected object</param>
 
2377
            <param name="actual">The actual object</param>
 
2378
            <param name="message">The message to be displayed when the object is null</param>
 
2379
        </member>
 
2380
        <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
 
2381
            <summary>
 
2382
            Asserts that two objects refer to the same object. If they
 
2383
            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2384
            </summary>
 
2385
            <param name="expected">The expected object</param>
 
2386
            <param name="actual">The actual object</param>
 
2387
        </member>
 
2388
        <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
 
2389
            <summary>
 
2390
            Asserts that two objects do not refer to the same object. If they
 
2391
            are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2392
            </summary>
 
2393
            <param name="expected">The expected object</param>
 
2394
            <param name="actual">The actual object</param>
 
2395
            <param name="message">The message to be displayed when the two objects are the same object.</param>
 
2396
            <param name="args">Arguments to be used in formatting the message</param>
 
2397
        </member>
 
2398
        <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
 
2399
            <summary>
 
2400
            Asserts that two objects do not refer to the same object. If they
 
2401
            are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2402
            </summary>
 
2403
            <param name="expected">The expected object</param>
 
2404
            <param name="actual">The actual object</param>
 
2405
            <param name="message">The message to be displayed when the objects are the same</param>
 
2406
        </member>
 
2407
        <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
 
2408
            <summary>
 
2409
            Asserts that two objects do not refer to the same object. If they
 
2410
            are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2411
            </summary>
 
2412
            <param name="expected">The expected object</param>
 
2413
            <param name="actual">The actual object</param>
 
2414
        </member>
 
2415
        <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
 
2416
            <summary>
 
2417
            Verifies that the first value is greater than the second
 
2418
            value. If they are not, then an
 
2419
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 
2420
            </summary>
 
2421
            <param name="arg1">The first value, expected to be greater</param>
 
2422
            <param name="arg2">The second value, expected to be less</param>
 
2423
            <param name="message">The message that will be displayed on failure</param>
 
2424
            <param name="args">Arguments to be used in formatting the message</param>
 
2425
        </member>
 
2426
        <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
 
2427
            <summary>
 
2428
            Verifies that the first value is greater than the second
 
2429
            value. If they are not, then an 
 
2430
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2431
            </summary>
 
2432
            <param name="arg1">The first value, expected to be greater</param>
 
2433
            <param name="arg2">The second value, expected to be less</param>
 
2434
            <param name="message">The message that will be displayed on failure</param>
 
2435
        </member>
 
2436
        <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
 
2437
            <summary>
 
2438
            Verifies that the first value is greater than the second
 
2439
            value. If they are not, then an 
 
2440
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2441
            </summary>
 
2442
            <param name="arg1">The first value, expected to be greater</param>
 
2443
            <param name="arg2">The second value, expected to be less</param>
 
2444
        </member>
 
2445
        <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
 
2446
            <summary>
 
2447
            Verifies that the first value is greater than the second
 
2448
            value. If they are not, then an 
 
2449
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2450
            </summary>
 
2451
            <param name="arg1">The first value, expected to be greater</param>
 
2452
            <param name="arg2">The second value, expected to be less</param>
 
2453
            <param name="message">The message that will be displayed on failure</param>
 
2454
            <param name="args">Arguments to be used in formatting the message</param>
 
2455
        </member>
 
2456
        <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
 
2457
            <summary>
 
2458
            Verifies that the first value is greater than the second
 
2459
            value. If they are not, then an 
 
2460
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2461
            </summary>
 
2462
            <param name="arg1">The first value, expected to be greater</param>
 
2463
            <param name="arg2">The second value, expected to be less</param>
 
2464
            <param name="message">The message that will be displayed on failure</param>
 
2465
        </member>
 
2466
        <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
 
2467
            <summary>
 
2468
            Verifies that the first value is greater than the second
 
2469
            value. If they are not, then an 
 
2470
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2471
            </summary>
 
2472
            <param name="arg1">The first value, expected to be greater</param>
 
2473
            <param name="arg2">The second value, expected to be less</param>
 
2474
        </member>
 
2475
        <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
 
2476
            <summary>
 
2477
            Verifies that the first value is greater than the second
 
2478
            value. If they are not, then an 
 
2479
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2480
            </summary>
 
2481
            <param name="arg1">The first value, expected to be greater</param>
 
2482
            <param name="arg2">The second value, expected to be less</param>
 
2483
            <param name="message">The message that will be displayed on failure</param>
 
2484
            <param name="args">Arguments to be used in formatting the message</param>
 
2485
        </member>
 
2486
        <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
 
2487
            <summary>
 
2488
            Verifies that the first value is greater than the second
 
2489
            value. If they are not, then an 
 
2490
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2491
            </summary>
 
2492
            <param name="arg1">The first value, expected to be greater</param>
 
2493
            <param name="arg2">The second value, expected to be less</param>
 
2494
            <param name="message">The message that will be displayed on failure</param>
 
2495
        </member>
 
2496
        <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
 
2497
            <summary>
 
2498
            Verifies that the first value is greater than the second
 
2499
            value. If they are not, then an 
 
2500
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2501
            </summary>
 
2502
            <param name="arg1">The first value, expected to be greater</param>
 
2503
            <param name="arg2">The second value, expected to be less</param>
 
2504
        </member>
 
2505
        <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
 
2506
            <summary>
 
2507
            Verifies that the first value is greater than the second
 
2508
            value. If they are not, then an 
 
2509
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2510
            </summary>
 
2511
            <param name="arg1">The first value, expected to be greater</param>
 
2512
            <param name="arg2">The second value, expected to be less</param>
 
2513
            <param name="message">The message that will be displayed on failure</param>
 
2514
            <param name="args">Arguments to be used in formatting the message</param>
 
2515
        </member>
 
2516
        <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
 
2517
            <summary>
 
2518
            Verifies that the first value is greater than the second
 
2519
            value. If they are not, then an 
 
2520
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2521
            </summary>
 
2522
            <param name="arg1">The first value, expected to be greater</param>
 
2523
            <param name="arg2">The second value, expected to be less</param>
 
2524
            <param name="message">The message that will be displayed on failure</param>
 
2525
        </member>
 
2526
        <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
 
2527
            <summary>
 
2528
            Verifies that the first value is greater than the second
 
2529
            value. If they are not, then an 
 
2530
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2531
            </summary>
 
2532
            <param name="arg1">The first value, expected to be greater</param>
 
2533
            <param name="arg2">The second value, expected to be less</param>
 
2534
        </member>
 
2535
        <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
 
2536
            <summary>
 
2537
            Verifies that the first value is greater than the second
 
2538
            value. If they are not, then an 
 
2539
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2540
            </summary>
 
2541
            <param name="arg1">The first value, expected to be greater</param>
 
2542
            <param name="arg2">The second value, expected to be less</param>
 
2543
            <param name="message">The message that will be displayed on failure</param>
 
2544
            <param name="args">Arguments to be used in formatting the message</param>
 
2545
        </member>
 
2546
        <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
 
2547
            <summary>
 
2548
            Verifies that the first value is greater than the second
 
2549
            value. If they are not, then an 
 
2550
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2551
            </summary>
 
2552
            <param name="arg1">The first value, expected to be greater</param>
 
2553
            <param name="arg2">The second value, expected to be less</param>
 
2554
            <param name="message">The message that will be displayed on failure</param>
 
2555
        </member>
 
2556
        <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
 
2557
            <summary>
 
2558
            Verifies that the first value is greater than the second
 
2559
            value. If they are not, then an 
 
2560
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2561
            </summary>
 
2562
            <param name="arg1">The first value, expected to be greater</param>
 
2563
            <param name="arg2">The second value, expected to be less</param>
 
2564
        </member>
 
2565
        <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
 
2566
            <summary>
 
2567
            Verifies that the first value is greater than the second
 
2568
            value. If they are not, then an 
 
2569
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2570
            </summary>
 
2571
            <param name="arg1">The first value, expected to be greater</param>
 
2572
            <param name="arg2">The second value, expected to be less</param>
 
2573
            <param name="message">The message that will be displayed on failure</param>
 
2574
            <param name="args">Arguments to be used in formatting the message</param>
 
2575
        </member>
 
2576
        <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
 
2577
            <summary>
 
2578
            Verifies that the first value is greater than the second
 
2579
            value. If they are not, then an 
 
2580
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2581
            </summary>
 
2582
            <param name="arg1">The first value, expected to be greater</param>
 
2583
            <param name="arg2">The second value, expected to be less</param>
 
2584
            <param name="message">The message that will be displayed on failure</param>
 
2585
        </member>
 
2586
        <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
 
2587
            <summary>
 
2588
            Verifies that the first value is greater than the second
 
2589
            value. If they are not, then an 
 
2590
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2591
            </summary>
 
2592
            <param name="arg1">The first value, expected to be greater</param>
 
2593
            <param name="arg2">The second value, expected to be less</param>
 
2594
        </member>
 
2595
        <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
 
2596
            <summary>
 
2597
            Verifies that the first value is greater than the second
 
2598
            value. If they are not, then an 
 
2599
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2600
            </summary>
 
2601
            <param name="arg1">The first value, expected to be greater</param>
 
2602
            <param name="arg2">The second value, expected to be less</param>
 
2603
            <param name="message">The message that will be displayed on failure</param>
 
2604
            <param name="args">Arguments to be used in formatting the message</param>
 
2605
        </member>
 
2606
        <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
 
2607
            <summary>
 
2608
            Verifies that the first value is greater than the second
 
2609
            value. If they are not, then an 
 
2610
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2611
            </summary>
 
2612
            <param name="arg1">The first value, expected to be greater</param>
 
2613
            <param name="arg2">The second value, expected to be less</param>
 
2614
            <param name="message">The message that will be displayed on failure</param>
 
2615
        </member>
 
2616
        <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
 
2617
            <summary>
 
2618
            Verifies that the first value is greater than the second
 
2619
            value. If they are not, then an 
 
2620
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2621
            </summary>
 
2622
            <param name="arg1">The first value, expected to be greater</param>
 
2623
            <param name="arg2">The second value, expected to be less</param>
 
2624
        </member>
 
2625
        <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
 
2626
            <summary>
 
2627
            Verifies that the first value is greater than the second
 
2628
            value. If they are not, then an 
 
2629
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2630
            </summary>
 
2631
            <param name="arg1">The first value, expected to be greater</param>
 
2632
            <param name="arg2">The second value, expected to be less</param>
 
2633
            <param name="message">The message that will be displayed on failure</param>
 
2634
            <param name="args">Arguments to be used in formatting the message</param>
 
2635
        </member>
 
2636
        <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
 
2637
            <summary>
 
2638
            Verifies that the first value is greater than the second
 
2639
            value. If they are not, then an 
 
2640
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2641
            </summary>
 
2642
            <param name="arg1">The first value, expected to be greater</param>
 
2643
            <param name="arg2">The second value, expected to be less</param>
 
2644
            <param name="message">The message that will be displayed on failure</param>
 
2645
        </member>
 
2646
        <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
 
2647
            <summary>
 
2648
            Verifies that the first value is greater than the second
 
2649
            value. If they are not, then an 
 
2650
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2651
            </summary>
 
2652
            <param name="arg1">The first value, expected to be greater</param>
 
2653
            <param name="arg2">The second value, expected to be less</param>
 
2654
        </member>
 
2655
        <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
 
2656
            <summary>
 
2657
            Verifies that the first value is less than the second
 
2658
            value. If it is not, then an 
 
2659
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2660
            </summary>
 
2661
            <param name="arg1">The first value, expected to be less</param>
 
2662
            <param name="arg2">The second value, expected to be greater</param>
 
2663
            <param name="message">The message that will be displayed on failure</param>
 
2664
            <param name="args">Arguments to be used in formatting the message</param>
 
2665
        </member>
 
2666
        <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
 
2667
            <summary>
 
2668
            Verifies that the first value is less than the second
 
2669
            value. If it is not, then an 
 
2670
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2671
            </summary>
 
2672
            <param name="arg1">The first value, expected to be less</param>
 
2673
            <param name="arg2">The second value, expected to be greater</param>
 
2674
            <param name="message">The message that will be displayed on failure</param>
 
2675
        </member>
 
2676
        <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
 
2677
            <summary>
 
2678
            Verifies that the first value is less than the second
 
2679
            value. If it is not, then an 
 
2680
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2681
            </summary>
 
2682
            <param name="arg1">The first value, expected to be less</param>
 
2683
            <param name="arg2">The second value, expected to be greater</param>
 
2684
        </member>
 
2685
        <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
 
2686
            <summary>
 
2687
            Verifies that the first value is less than the second
 
2688
            value. If it is not, then an 
 
2689
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2690
            </summary>
 
2691
            <param name="arg1">The first value, expected to be less</param>
 
2692
            <param name="arg2">The second value, expected to be greater</param>
 
2693
            <param name="message">The message that will be displayed on failure</param>
 
2694
            <param name="args">Arguments to be used in formatting the message</param>
 
2695
        </member>
 
2696
        <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
 
2697
            <summary>
 
2698
            Verifies that the first value is less than the second
 
2699
            value. If it is not, then an 
 
2700
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2701
            </summary>
 
2702
            <param name="arg1">The first value, expected to be less</param>
 
2703
            <param name="arg2">The second value, expected to be greater</param>
 
2704
            <param name="message">The message that will be displayed on failure</param>
 
2705
        </member>
 
2706
        <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
 
2707
            <summary>
 
2708
            Verifies that the first value is less than the second
 
2709
            value. If it is not, then an 
 
2710
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2711
            </summary>
 
2712
            <param name="arg1">The first value, expected to be less</param>
 
2713
            <param name="arg2">The second value, expected to be greater</param>
 
2714
        </member>
 
2715
        <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
 
2716
            <summary>
 
2717
            Verifies that the first value is less than the second
 
2718
            value. If it is not, then an 
 
2719
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2720
            </summary>
 
2721
            <param name="arg1">The first value, expected to be less</param>
 
2722
            <param name="arg2">The second value, expected to be greater</param>
 
2723
            <param name="message">The message that will be displayed on failure</param>
 
2724
            <param name="args">Arguments to be used in formatting the message</param>
 
2725
        </member>
 
2726
        <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
 
2727
            <summary>
 
2728
            Verifies that the first value is less than the second
 
2729
            value. If it is not, then an 
 
2730
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2731
            </summary>
 
2732
            <param name="arg1">The first value, expected to be less</param>
 
2733
            <param name="arg2">The second value, expected to be greater</param>
 
2734
            <param name="message">The message that will be displayed on failure</param>
 
2735
        </member>
 
2736
        <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
 
2737
            <summary>
 
2738
            Verifies that the first value is less than the second
 
2739
            value. If it is not, then an 
 
2740
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2741
            </summary>
 
2742
            <param name="arg1">The first value, expected to be less</param>
 
2743
            <param name="arg2">The second value, expected to be greater</param>
 
2744
        </member>
 
2745
        <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
 
2746
            <summary>
 
2747
            Verifies that the first value is less than the second
 
2748
            value. If it is not, then an 
 
2749
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2750
            </summary>
 
2751
            <param name="arg1">The first value, expected to be less</param>
 
2752
            <param name="arg2">The second value, expected to be greater</param>
 
2753
            <param name="message">The message that will be displayed on failure</param>
 
2754
            <param name="args">Arguments to be used in formatting the message</param>
 
2755
        </member>
 
2756
        <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
 
2757
            <summary>
 
2758
            Verifies that the first value is less than the second
 
2759
            value. If it is not, then an 
 
2760
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2761
            </summary>
 
2762
            <param name="arg1">The first value, expected to be less</param>
 
2763
            <param name="arg2">The second value, expected to be greater</param>
 
2764
            <param name="message">The message that will be displayed on failure</param>
 
2765
        </member>
 
2766
        <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
 
2767
            <summary>
 
2768
            Verifies that the first value is less than the second
 
2769
            value. If it is not, then an 
 
2770
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2771
            </summary>
 
2772
            <param name="arg1">The first value, expected to be less</param>
 
2773
            <param name="arg2">The second value, expected to be greater</param>
 
2774
        </member>
 
2775
        <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
 
2776
            <summary>
 
2777
            Verifies that the first value is less than the second
 
2778
            value. If it is not, then an 
 
2779
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2780
            </summary>
 
2781
            <param name="arg1">The first value, expected to be less</param>
 
2782
            <param name="arg2">The second value, expected to be greater</param>
 
2783
            <param name="message">The message that will be displayed on failure</param>
 
2784
            <param name="args">Arguments to be used in formatting the message</param>
 
2785
        </member>
 
2786
        <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
 
2787
            <summary>
 
2788
            Verifies that the first value is less than the second
 
2789
            value. If it is not, then an 
 
2790
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2791
            </summary>
 
2792
            <param name="arg1">The first value, expected to be less</param>
 
2793
            <param name="arg2">The second value, expected to be greater</param>
 
2794
            <param name="message">The message that will be displayed on failure</param>
 
2795
        </member>
 
2796
        <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
 
2797
            <summary>
 
2798
            Verifies that the first value is less than the second
 
2799
            value. If it is not, then an 
 
2800
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2801
            </summary>
 
2802
            <param name="arg1">The first value, expected to be less</param>
 
2803
            <param name="arg2">The second value, expected to be greater</param>
 
2804
        </member>
 
2805
        <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
 
2806
            <summary>
 
2807
            Verifies that the first value is less than the second
 
2808
            value. If it is not, then an 
 
2809
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2810
            </summary>
 
2811
            <param name="arg1">The first value, expected to be less</param>
 
2812
            <param name="arg2">The second value, expected to be greater</param>
 
2813
            <param name="message">The message that will be displayed on failure</param>
 
2814
            <param name="args">Arguments to be used in formatting the message</param>
 
2815
        </member>
 
2816
        <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
 
2817
            <summary>
 
2818
            Verifies that the first value is less than the second
 
2819
            value. If it is not, then an 
 
2820
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2821
            </summary>
 
2822
            <param name="arg1">The first value, expected to be less</param>
 
2823
            <param name="arg2">The second value, expected to be greater</param>
 
2824
            <param name="message">The message that will be displayed on failure</param>
 
2825
        </member>
 
2826
        <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
 
2827
            <summary>
 
2828
            Verifies that the first value is less than the second
 
2829
            value. If it is not, then an 
 
2830
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2831
            </summary>
 
2832
            <param name="arg1">The first value, expected to be less</param>
 
2833
            <param name="arg2">The second value, expected to be greater</param>
 
2834
        </member>
 
2835
        <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
 
2836
            <summary>
 
2837
            Verifies that the first value is less than the second
 
2838
            value. If it is not, then an 
 
2839
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2840
            </summary>
 
2841
            <param name="arg1">The first value, expected to be less</param>
 
2842
            <param name="arg2">The second value, expected to be greater</param>
 
2843
            <param name="message">The message that will be displayed on failure</param>
 
2844
            <param name="args">Arguments to be used in formatting the message</param>
 
2845
        </member>
 
2846
        <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
 
2847
            <summary>
 
2848
            Verifies that the first value is less than the second
 
2849
            value. If it is not, then an 
 
2850
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2851
            </summary>
 
2852
            <param name="arg1">The first value, expected to be less</param>
 
2853
            <param name="arg2">The second value, expected to be greater</param>
 
2854
            <param name="message">The message that will be displayed on failure</param>
 
2855
        </member>
 
2856
        <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
 
2857
            <summary>
 
2858
            Verifies that the first value is less than the second
 
2859
            value. If it is not, then an 
 
2860
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2861
            </summary>
 
2862
            <param name="arg1">The first value, expected to be less</param>
 
2863
            <param name="arg2">The second value, expected to be greater</param>
 
2864
        </member>
 
2865
        <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
 
2866
            <summary>
 
2867
            Verifies that the first value is less than the second
 
2868
            value. If it is not, then an 
 
2869
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2870
            </summary>
 
2871
            <param name="arg1">The first value, expected to be less</param>
 
2872
            <param name="arg2">The second value, expected to be greater</param>
 
2873
            <param name="message">The message that will be displayed on failure</param>
 
2874
            <param name="args">Arguments to be used in formatting the message</param>
 
2875
        </member>
 
2876
        <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
 
2877
            <summary>
 
2878
            Verifies that the first value is less than the second
 
2879
            value. If it is not, then an 
 
2880
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2881
            </summary>
 
2882
            <param name="arg1">The first value, expected to be less</param>
 
2883
            <param name="arg2">The second value, expected to be greater</param>
 
2884
            <param name="message">The message that will be displayed on failure</param>
 
2885
        </member>
 
2886
        <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
 
2887
            <summary>
 
2888
            Verifies that the first value is less than the second
 
2889
            value. If it is not, then an 
 
2890
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
2891
            </summary>
 
2892
            <param name="arg1">The first value, expected to be less</param>
 
2893
            <param name="arg2">The second value, expected to be greater</param>
 
2894
        </member>
 
2895
        <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
 
2896
            <summary>
 
2897
            Asserts that an object is contained in a list.
 
2898
            </summary>
 
2899
            <param name="expected">The expected object</param>
 
2900
            <param name="actual">The list to be examined</param>
 
2901
            <param name="message">The message to display in case of failure</param>
 
2902
            <param name="args">Arguments used in formatting the message</param>
 
2903
        </member>
 
2904
        <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
 
2905
            <summary>
 
2906
            Asserts that an object is contained in a list.
 
2907
            </summary>
 
2908
            <param name="expected">The expected object</param>
 
2909
            <param name="actual">The list to be examined</param>
 
2910
            <param name="message">The message to display in case of failure</param>
 
2911
        </member>
 
2912
        <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
 
2913
            <summary>
 
2914
            Asserts that an object is contained in a list.
 
2915
            </summary>
 
2916
            <param name="expected">The expected object</param>
 
2917
            <param name="actual">The list to be examined</param>
 
2918
        </member>
 
2919
        <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
 
2920
            <summary>
 
2921
            Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments 
 
2922
            that are passed in. This is used by the other Assert functions. 
 
2923
            </summary>
 
2924
            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 
2925
            <param name="args">Arguments to be used in formatting the message</param>
 
2926
        </member>
 
2927
        <member name="M:NUnit.Framework.Assert.Fail(System.String)">
 
2928
            <summary>
 
2929
            Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is 
 
2930
            passed in. This is used by the other Assert functions. 
 
2931
            </summary>
 
2932
            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 
2933
        </member>
 
2934
        <member name="M:NUnit.Framework.Assert.Fail">
 
2935
            <summary>
 
2936
            Throws an <see cref="T:NUnit.Framework.AssertionException"/>. 
 
2937
            This is used by the other Assert functions. 
 
2938
            </summary>
 
2939
        </member>
 
2940
        <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
 
2941
            <summary>
 
2942
            Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments 
 
2943
            that are passed in.  This causes the test to be reported as ignored.
 
2944
            </summary>
 
2945
            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 
2946
            <param name="args">Arguments to be used in formatting the message</param>
 
2947
        </member>
 
2948
        <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
 
2949
            <summary>
 
2950
            Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is 
 
2951
            passed in. This causes the test to be reported as ignored. 
 
2952
            </summary>
 
2953
            <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
 
2954
        </member>
 
2955
        <member name="M:NUnit.Framework.Assert.Ignore">
 
2956
            <summary>
 
2957
            Throws an <see cref="T:NUnit.Framework.IgnoreException"/>. 
 
2958
            This causes the test to be reported as ignored. 
 
2959
            </summary>
 
2960
        </member>
 
2961
        <member name="M:NUnit.Framework.Assert.DoAssert(NUnit.Framework.IAsserter)">
 
2962
            <summary>
 
2963
            NOTE: The use of asserters for extending NUnit has
 
2964
            now been replaced by the use of constraints. This
 
2965
            method is marked obsolete.
 
2966
            
 
2967
            Test the condition asserted by an asserter and throw
 
2968
            an assertion exception using provided message on failure.
 
2969
            </summary>
 
2970
            <param name="asserter">An object that implements IAsserter</param>
 
2971
        </member>
 
2972
        <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint)">
 
2973
            <summary>
 
2974
            Apply a constraint to an actual value, succeeding if the constraint
 
2975
            is satisfied and throwing an assertion exception on failure.
 
2976
            </summary>
 
2977
            <param name="constraint">A Constraint to be applied</param>
 
2978
            <param name="actual">The actual value to test</param>
 
2979
        </member>
 
2980
        <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String)">
 
2981
            <summary>
 
2982
            Apply a constraint to an actual value, succeedingt if the constraint
 
2983
            is satisfied and throwing an assertion exception on failure.
 
2984
            </summary>
 
2985
            <param name="constraint">A Constraint to be applied</param>
 
2986
            <param name="actual">The actual value to test</param>
 
2987
            <param name="message">The message that will be displayed on failure</param>
 
2988
        </member>
 
2989
        <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String,System.Object[])">
 
2990
            <summary>
 
2991
            Apply a constraint to an actual value, succeedingt if the constraint
 
2992
            is satisfied and throwing an assertion exception on failure.
 
2993
            </summary>
 
2994
            <param name="constraint">A Constraint to be applied</param>
 
2995
            <param name="actual">The actual value to test</param>
 
2996
            <param name="message">The message that will be displayed on failure</param>
 
2997
            <param name="args">Arguments to be used in formatting the message</param>
 
2998
        </member>
 
2999
        <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
 
3000
            <summary>
 
3001
            Asserts that a condition is true. If the condition is false the method throws
 
3002
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
3003
            </summary> 
 
3004
            <param name="condition">The evaluated condition</param>
 
3005
            <param name="message">The message to display if the condition is false</param>
 
3006
            <param name="args">Arguments to be used in formatting the message</param>
 
3007
        </member>
 
3008
        <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
 
3009
            <summary>
 
3010
            Asserts that a condition is true. If the condition is false the method throws
 
3011
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
3012
            </summary>
 
3013
            <param name="condition">The evaluated condition</param>
 
3014
            <param name="message">The message to display if the condition is false</param>
 
3015
        </member>
 
3016
        <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
 
3017
            <summary>
 
3018
            Asserts that a condition is true. If the condition is false the method throws
 
3019
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
3020
            </summary>
 
3021
            <param name="condition">The evaluated condition</param>
 
3022
        </member>
 
3023
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
 
3024
            <summary>
 
3025
            Verifies that the first value is greater than or equal to the second
 
3026
            value. If they are not, then an 
 
3027
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown. 
 
3028
            </summary>
 
3029
            <param name="arg1">The first value, expected to be greater</param>
 
3030
            <param name="arg2">The second value, expected to be less</param>
 
3031
            <param name="message">The message that will be displayed on failure</param>
 
3032
            <param name="args">Arguments to be used in formatting the message</param>
 
3033
        </member>
 
3034
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
 
3035
            <summary>
 
3036
            Verifies that the first value is greater than or equal to the second
 
3037
            value. If they are not, then an 
 
3038
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3039
            </summary>
 
3040
            <param name="arg1">The first value, expected to be greater</param>
 
3041
            <param name="arg2">The second value, expected to be less</param>
 
3042
            <param name="message">The message that will be displayed on failure</param>
 
3043
        </member>
 
3044
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
 
3045
            <summary>
 
3046
            Verifies that the first value is greater than or equal to the second
 
3047
            value. If they are not, then an 
 
3048
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3049
            </summary>
 
3050
            <param name="arg1">The first value, expected to be greater</param>
 
3051
            <param name="arg2">The second value, expected to be less</param>
 
3052
        </member>
 
3053
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 
3054
            <summary>
 
3055
            Verifies that the first value is greater than or equal to the second
 
3056
            value. If they are not, then an 
 
3057
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3058
            </summary>
 
3059
            <param name="arg1">The first value, expected to be greater</param>
 
3060
            <param name="arg2">The second value, expected to be less</param>
 
3061
            <param name="message">The message that will be displayed on failure</param>
 
3062
            <param name="args">Arguments to be used in formatting the message</param>
 
3063
        </member>
 
3064
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
 
3065
            <summary>
 
3066
            Verifies that the first value is greater than or equal to the second
 
3067
            value. If they are not, then an 
 
3068
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3069
            </summary>
 
3070
            <param name="arg1">The first value, expected to be greater</param>
 
3071
            <param name="arg2">The second value, expected to be less</param>
 
3072
            <param name="message">The message that will be displayed on failure</param>
 
3073
        </member>
 
3074
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
 
3075
            <summary>
 
3076
            Verifies that the first value is greater or equal to than the second
 
3077
            value. If they are not, then an 
 
3078
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3079
            </summary>
 
3080
            <param name="arg1">The first value, expected to be greater</param>
 
3081
            <param name="arg2">The second value, expected to be less</param>
 
3082
        </member>
 
3083
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
 
3084
            <summary>
 
3085
            Verifies that the first value is greater than or equal to the second
 
3086
            value. If they are not, then an 
 
3087
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3088
            </summary>
 
3089
            <param name="arg1">The first value, expected to be greater</param>
 
3090
            <param name="arg2">The second value, expected to be less</param>
 
3091
            <param name="message">The message that will be displayed on failure</param>
 
3092
            <param name="args">Arguments to be used in formatting the message</param>
 
3093
        </member>
 
3094
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
 
3095
            <summary>
 
3096
            Verifies that the first value is greater than or equal to the second
 
3097
            value. If they are not, then an 
 
3098
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3099
            </summary>
 
3100
            <param name="arg1">The first value, expected to be greater</param>
 
3101
            <param name="arg2">The second value, expected to be less</param>
 
3102
            <param name="message">The message that will be displayed on failure</param>
 
3103
        </member>
 
3104
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
 
3105
            <summary>
 
3106
            Verifies that the first value is greater or equal to than the second
 
3107
            value. If they are not, then an 
 
3108
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3109
            </summary>
 
3110
            <param name="arg1">The first value, expected to be greater</param>
 
3111
            <param name="arg2">The second value, expected to be less</param>
 
3112
        </member>
 
3113
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 
3114
            <summary>
 
3115
            Verifies that the first value is greater than or equal to the second
 
3116
            value. If they are not, then an 
 
3117
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3118
            </summary>
 
3119
            <param name="arg1">The first value, expected to be greater</param>
 
3120
            <param name="arg2">The second value, expected to be less</param>
 
3121
            <param name="message">The message that will be displayed on failure</param>
 
3122
            <param name="args">Arguments to be used in formatting the message</param>
 
3123
        </member>
 
3124
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
 
3125
            <summary>
 
3126
            Verifies that the first value is greater than or equal to the second
 
3127
            value. If they are not, then an 
 
3128
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3129
            </summary>
 
3130
            <param name="arg1">The first value, expected to be greater</param>
 
3131
            <param name="arg2">The second value, expected to be less</param>
 
3132
            <param name="message">The message that will be displayed on failure</param>
 
3133
        </member>
 
3134
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
 
3135
            <summary>
 
3136
            Verifies that the first value is greater or equal to than the second
 
3137
            value. If they are not, then an 
 
3138
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3139
            </summary>
 
3140
            <param name="arg1">The first value, expected to be greater</param>
 
3141
            <param name="arg2">The second value, expected to be less</param>
 
3142
        </member>
 
3143
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 
3144
            <summary>
 
3145
            Verifies that the first value is greater than or equal to the second
 
3146
            value. If they are not, then an 
 
3147
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3148
            </summary>
 
3149
            <param name="arg1">The first value, expected to be greater</param>
 
3150
            <param name="arg2">The second value, expected to be less</param>
 
3151
            <param name="message">The message that will be displayed on failure</param>
 
3152
            <param name="args">Arguments to be used in formatting the message</param>
 
3153
        </member>
 
3154
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
 
3155
            <summary>
 
3156
            Verifies that the first value is greater than or equal to the second
 
3157
            value. If they are not, then an 
 
3158
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3159
            </summary>
 
3160
            <param name="arg1">The first value, expected to be greater</param>
 
3161
            <param name="arg2">The second value, expected to be less</param>
 
3162
            <param name="message">The message that will be displayed on failure</param>
 
3163
        </member>
 
3164
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
 
3165
            <summary>
 
3166
            Verifies that the first value is greater than or equal to the second
 
3167
            value. If they are not, then an 
 
3168
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3169
            </summary>
 
3170
            <param name="arg1">The first value, expected to be greater</param>
 
3171
            <param name="arg2">The second value, expected to be less</param>
 
3172
        </member>
 
3173
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
 
3174
            <summary>
 
3175
            Verifies that the first value is greater than or equal to the second
 
3176
            value. If they are not, then an 
 
3177
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3178
            </summary>
 
3179
            <param name="arg1">The first value, expected to be greater</param>
 
3180
            <param name="arg2">The second value, expected to be less</param>
 
3181
            <param name="message">The message that will be displayed on failure</param>
 
3182
            <param name="args">Arguments to be used in formatting the message</param>
 
3183
        </member>
 
3184
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
 
3185
            <summary>
 
3186
            Verifies that the first value is greater than or equal to the second
 
3187
            value. If they are not, then an 
 
3188
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3189
            </summary>
 
3190
            <param name="arg1">The first value, expected to be greater</param>
 
3191
            <param name="arg2">The second value, expected to be less</param>
 
3192
            <param name="message">The message that will be displayed on failure</param>
 
3193
        </member>
 
3194
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
 
3195
            <summary>
 
3196
            Verifies that the first value is greater than or equal to the second
 
3197
            value. If they are not, then an 
 
3198
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3199
            </summary>
 
3200
            <param name="arg1">The first value, expected to be greater</param>
 
3201
            <param name="arg2">The second value, expected to be less</param>
 
3202
        </member>
 
3203
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
 
3204
            <summary>
 
3205
            Verifies that the first value is greater than or equal to the second
 
3206
            value. If they are not, then an 
 
3207
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3208
            </summary>
 
3209
            <param name="arg1">The first value, expected to be greater</param>
 
3210
            <param name="arg2">The second value, expected to be less</param>
 
3211
            <param name="message">The message that will be displayed on failure</param>
 
3212
            <param name="args">Arguments to be used in formatting the message</param>
 
3213
        </member>
 
3214
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
 
3215
            <summary>
 
3216
            Verifies that the first value is greater than or equal to the second
 
3217
            value. If they are not, then an 
 
3218
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3219
            </summary>
 
3220
            <param name="arg1">The first value, expected to be greater</param>
 
3221
            <param name="arg2">The second value, expected to be less</param>
 
3222
            <param name="message">The message that will be displayed on failure</param>
 
3223
        </member>
 
3224
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
 
3225
            <summary>
 
3226
            Verifies that the first value is greater than or equal to the second
 
3227
            value. If they are not, then an 
 
3228
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3229
            </summary>
 
3230
            <param name="arg1">The first value, expected to be greater</param>
 
3231
            <param name="arg2">The second value, expected to be less</param>
 
3232
        </member>
 
3233
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
 
3234
            <summary>
 
3235
            Verifies that the first value is greater than the second
 
3236
            value. If they are not, then an 
 
3237
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3238
            </summary>
 
3239
            <param name="arg1">The first value, expected to be greater</param>
 
3240
            <param name="arg2">The second value, expected to be less</param>
 
3241
            <param name="message">The message that will be displayed on failure</param>
 
3242
            <param name="args">Arguments to be used in formatting the message</param>
 
3243
        </member>
 
3244
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
 
3245
            <summary>
 
3246
            Verifies that the first value is greater than the second
 
3247
            value. If they are not, then an 
 
3248
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3249
            </summary>
 
3250
            <param name="arg1">The first value, expected to be greater</param>
 
3251
            <param name="arg2">The second value, expected to be less</param>
 
3252
            <param name="message">The message that will be displayed on failure</param>
 
3253
        </member>
 
3254
        <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
 
3255
            <summary>
 
3256
            Verifies that the first value is greater than the second
 
3257
            value. If they are not, then an 
 
3258
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3259
            </summary>
 
3260
            <param name="arg1">The first value, expected to be greater</param>
 
3261
            <param name="arg2">The second value, expected to be less</param>
 
3262
        </member>
 
3263
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
 
3264
            <summary>
 
3265
            Verifies that the first value is less than or equal to the second
 
3266
            value. If it is not, then an 
 
3267
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3268
            </summary>
 
3269
            <param name="arg1">The first value, expected to be less</param>
 
3270
            <param name="arg2">The second value, expected to be greater</param>
 
3271
            <param name="message">The message that will be displayed on failure</param>
 
3272
            <param name="args">Arguments to be used in formatting the message</param>
 
3273
        </member>
 
3274
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
 
3275
            <summary>
 
3276
            Verifies that the first value is less than or equal to the second
 
3277
            value. If it is not, then an 
 
3278
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3279
            </summary>
 
3280
            <param name="arg1">The first value, expected to be less</param>
 
3281
            <param name="arg2">The second value, expected to be greater</param>
 
3282
            <param name="message">The message that will be displayed on failure</param>
 
3283
        </member>
 
3284
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
 
3285
            <summary>
 
3286
            Verifies that the first value is less than or equal to the second
 
3287
            value. If it is not, then an 
 
3288
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3289
            </summary>
 
3290
            <param name="arg1">The first value, expected to be less</param>
 
3291
            <param name="arg2">The second value, expected to be greater</param>
 
3292
        </member>
 
3293
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
 
3294
            <summary>
 
3295
            Verifies that the first value is less than or equal to the second
 
3296
            value. If it is not, then an 
 
3297
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3298
            </summary>
 
3299
            <param name="arg1">The first value, expected to be less</param>
 
3300
            <param name="arg2">The second value, expected to be greater</param>
 
3301
            <param name="message">The message that will be displayed on failure</param>
 
3302
            <param name="args">Arguments to be used in formatting the message</param>
 
3303
        </member>
 
3304
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
 
3305
            <summary>
 
3306
            Verifies that the first value is less than or equal to the second
 
3307
            value. If it is not, then an 
 
3308
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3309
            </summary>
 
3310
            <param name="arg1">The first value, expected to be less</param>
 
3311
            <param name="arg2">The second value, expected to be greater</param>
 
3312
            <param name="message">The message that will be displayed on failure</param>
 
3313
        </member>
 
3314
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
 
3315
            <summary>
 
3316
            Verifies that the first value is less than or equal to the second
 
3317
            value. If it is not, then an 
 
3318
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3319
            </summary>
 
3320
            <param name="arg1">The first value, expected to be less</param>
 
3321
            <param name="arg2">The second value, expected to be greater</param>
 
3322
        </member>
 
3323
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
 
3324
            <summary>
 
3325
            Verifies that the first value is less than or equal to the second
 
3326
            value. If it is not, then an 
 
3327
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3328
            </summary>
 
3329
            <param name="arg1">The first value, expected to be less</param>
 
3330
            <param name="arg2">The second value, expected to be greater</param>
 
3331
            <param name="message">The message that will be displayed on failure</param>
 
3332
            <param name="args">Arguments to be used in formatting the message</param>
 
3333
        </member>
 
3334
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
 
3335
            <summary>
 
3336
            Verifies that the first value is less than or equal to the second
 
3337
            value. If it is not, then an 
 
3338
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3339
            </summary>
 
3340
            <param name="arg1">The first value, expected to be less</param>
 
3341
            <param name="arg2">The second value, expected to be greater</param>
 
3342
            <param name="message">The message that will be displayed on failure</param>
 
3343
        </member>
 
3344
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
 
3345
            <summary>
 
3346
            Verifies that the first value is less than or equal to the second
 
3347
            value. If it is not, then an 
 
3348
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3349
            </summary>
 
3350
            <param name="arg1">The first value, expected to be less</param>
 
3351
            <param name="arg2">The second value, expected to be greater</param>
 
3352
        </member>
 
3353
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
 
3354
            <summary>
 
3355
            Verifies that the first value is less than or equal to the second
 
3356
            value. If it is not, then an 
 
3357
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3358
            </summary>
 
3359
            <param name="arg1">The first value, expected to be less</param>
 
3360
            <param name="arg2">The second value, expected to be greater</param>
 
3361
            <param name="message">The message that will be displayed on failure</param>
 
3362
            <param name="args">Arguments to be used in formatting the message</param>
 
3363
        </member>
 
3364
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
 
3365
            <summary>
 
3366
            Verifies that the first value is less than or equal to the second
 
3367
            value. If it is not, then an 
 
3368
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3369
            </summary>
 
3370
            <param name="arg1">The first value, expected to be less</param>
 
3371
            <param name="arg2">The second value, expected to be greater</param>
 
3372
            <param name="message">The message that will be displayed on failure</param>
 
3373
        </member>
 
3374
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
 
3375
            <summary>
 
3376
            Verifies that the first value is less than or equal to the second
 
3377
            value. If it is not, then an 
 
3378
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3379
            </summary>
 
3380
            <param name="arg1">The first value, expected to be less</param>
 
3381
            <param name="arg2">The second value, expected to be greater</param>
 
3382
        </member>
 
3383
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
 
3384
            <summary>
 
3385
            Verifies that the first value is less than or equal to the second
 
3386
            value. If it is not, then an 
 
3387
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3388
            </summary>
 
3389
            <param name="arg1">The first value, expected to be less</param>
 
3390
            <param name="arg2">The second value, expected to be greater</param>
 
3391
            <param name="message">The message that will be displayed on failure</param>
 
3392
            <param name="args">Arguments to be used in formatting the message</param>
 
3393
        </member>
 
3394
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
 
3395
            <summary>
 
3396
            Verifies that the first value is less than or equal to the second
 
3397
            value. If it is not, then an 
 
3398
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3399
            </summary>
 
3400
            <param name="arg1">The first value, expected to be less</param>
 
3401
            <param name="arg2">The second value, expected to be greater</param>
 
3402
            <param name="message">The message that will be displayed on failure</param>
 
3403
        </member>
 
3404
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
 
3405
            <summary>
 
3406
            Verifies that the first value is less than or equal to the second
 
3407
            value. If it is not, then an 
 
3408
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3409
            </summary>
 
3410
            <param name="arg1">The first value, expected to be less</param>
 
3411
            <param name="arg2">The second value, expected to be greater</param>
 
3412
        </member>
 
3413
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
 
3414
            <summary>
 
3415
            Verifies that the first value is less than or equal to the second
 
3416
            value. If it is not, then an 
 
3417
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3418
            </summary>
 
3419
            <param name="arg1">The first value, expected to be less</param>
 
3420
            <param name="arg2">The second value, expected to be greater</param>
 
3421
            <param name="message">The message that will be displayed on failure</param>
 
3422
            <param name="args">Arguments to be used in formatting the message</param>
 
3423
        </member>
 
3424
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
 
3425
            <summary>
 
3426
            Verifies that the first value is less than or equal to the second
 
3427
            value. If it is not, then an 
 
3428
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3429
            </summary>
 
3430
            <param name="arg1">The first value, expected to be less</param>
 
3431
            <param name="arg2">The second value, expected to be greater</param>
 
3432
            <param name="message">The message that will be displayed on failure</param>
 
3433
        </member>
 
3434
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
 
3435
            <summary>
 
3436
            Verifies that the first value is less than or equal to the second
 
3437
            value. If it is not, then an 
 
3438
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3439
            </summary>
 
3440
            <param name="arg1">The first value, expected to be less</param>
 
3441
            <param name="arg2">The second value, expected to be greater</param>
 
3442
        </member>
 
3443
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
 
3444
            <summary>
 
3445
            Verifies that the first value is less than or equal to the second
 
3446
            value. If it is not, then an 
 
3447
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3448
            </summary>
 
3449
            <param name="arg1">The first value, expected to be less</param>
 
3450
            <param name="arg2">The second value, expected to be greater</param>
 
3451
            <param name="message">The message that will be displayed on failure</param>
 
3452
            <param name="args">Arguments to be used in formatting the message</param>
 
3453
        </member>
 
3454
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
 
3455
            <summary>
 
3456
            Verifies that the first value is less than or equal to the second
 
3457
            value. If it is not, then an 
 
3458
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3459
            </summary>
 
3460
            <param name="arg1">The first value, expected to be less</param>
 
3461
            <param name="arg2">The second value, expected to be greater</param>
 
3462
            <param name="message">The message that will be displayed on failure</param>
 
3463
        </member>
 
3464
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
 
3465
            <summary>
 
3466
            Verifies that the first value is less than or equal to the second
 
3467
            value. If it is not, then an 
 
3468
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3469
            </summary>
 
3470
            <param name="arg1">The first value, expected to be less</param>
 
3471
            <param name="arg2">The second value, expected to be greater</param>
 
3472
        </member>
 
3473
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
 
3474
            <summary>
 
3475
            Verifies that the first value is less than or equal to the second
 
3476
            value. If it is not, then an 
 
3477
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3478
            </summary>
 
3479
            <param name="arg1">The first value, expected to be less</param>
 
3480
            <param name="arg2">The second value, expected to be greater</param>
 
3481
            <param name="message">The message that will be displayed on failure</param>
 
3482
            <param name="args">Arguments to be used in formatting the message</param>
 
3483
        </member>
 
3484
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
 
3485
            <summary>
 
3486
            Verifies that the first value is less than or equal to the second
 
3487
            value. If it is not, then an 
 
3488
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3489
            </summary>
 
3490
            <param name="arg1">The first value, expected to be less</param>
 
3491
            <param name="arg2">The second value, expected to be greater</param>
 
3492
            <param name="message">The message that will be displayed on failure</param>
 
3493
        </member>
 
3494
        <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
 
3495
            <summary>
 
3496
            Verifies that the first value is less than or equal to the second
 
3497
            value. If it is not, then an 
 
3498
            <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
3499
            </summary>
 
3500
            <param name="arg1">The first value, expected to be less</param>
 
3501
            <param name="arg2">The second value, expected to be greater</param>
 
3502
        </member>
 
3503
        <member name="P:NUnit.Framework.Assert.Counter">
 
3504
            <summary>
 
3505
            Gets the number of assertions executed so far and 
 
3506
            resets the counter to zero.
 
3507
            </summary>
 
3508
        </member>
 
3509
        <member name="T:NUnit.Framework.MessageMatch">
 
3510
            <summary>
 
3511
            Enumeration indicating how the expected message parameter is to be used
 
3512
            </summary>
 
3513
        </member>
 
3514
        <member name="F:NUnit.Framework.MessageMatch.Exact">
 
3515
            Expect an exact match
 
3516
        </member>
 
3517
        <member name="F:NUnit.Framework.MessageMatch.Contains">
 
3518
            Expect a message containing the parameter string
 
3519
        </member>
 
3520
        <member name="F:NUnit.Framework.MessageMatch.Regex">
 
3521
            Match the regular expression provided as a parameter
 
3522
        </member>
 
3523
        <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
 
3524
            <summary>
 
3525
            ExpectedExceptionAttribute
 
3526
            </summary>
 
3527
            
 
3528
        </member>
 
3529
        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
 
3530
            <summary>
 
3531
            Constructor for a non-specific exception
 
3532
            </summary>
 
3533
        </member>
 
3534
        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
 
3535
            <summary>
 
3536
            Constructor for a given type of exception
 
3537
            </summary>
 
3538
            <param name="exceptionType">The type of the expected exception</param>
 
3539
        </member>
 
3540
        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
 
3541
            <summary>
 
3542
            Constructor for a given exception name
 
3543
            </summary>
 
3544
            <param name="exceptionName">The full name of the expected exception</param>
 
3545
        </member>
 
3546
        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type,System.String)">
 
3547
            <summary>
 
3548
            Constructor for a given type of exception and expected message text
 
3549
            </summary>
 
3550
            <param name="exceptionType">The type of the expected exception</param>
 
3551
            <param name="expectedMessage">The expected message text</param>
 
3552
        </member>
 
3553
        <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String,System.String)">
 
3554
            <summary>
 
3555
            Constructor for a given exception name and expected message text
 
3556
            </summary>
 
3557
            <param name="exceptionName">The full name of the expected exception</param>
 
3558
            <param name="expectedMessage">The expected messge text</param>
 
3559
        </member>
 
3560
        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
 
3561
            <summary>
 
3562
            Gets or sets the expected exception type
 
3563
            </summary>
 
3564
        </member>
 
3565
        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExceptionName">
 
3566
            <summary>
 
3567
            Gets or sets the full Type name of the expected exception
 
3568
            </summary>
 
3569
        </member>
 
3570
        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
 
3571
            <summary>
 
3572
            Gets or sets the expected message text
 
3573
            </summary>
 
3574
        </member>
 
3575
        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
 
3576
            <summary>
 
3577
            Gets or sets the user message displayed in case of failure
 
3578
            </summary>
 
3579
        </member>
 
3580
        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
 
3581
            <summary>
 
3582
             Gets or sets the type of match to be performed on the expected message
 
3583
            </summary>
 
3584
        </member>
 
3585
        <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
 
3586
            <summary>
 
3587
             Gets the name of a method to be used as an exception handler
 
3588
            </summary>
 
3589
        </member>
 
3590
        <member name="T:NUnit.Framework.CollectionAssert">
 
3591
            <summary>
 
3592
            A set of Assert methods operationg on one or more collections
 
3593
            </summary>
 
3594
        </member>
 
3595
        <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
 
3596
            <summary>
 
3597
            The Equals method throws an AssertionException. This is done 
 
3598
            to make sure there is no mistake by calling this function.
 
3599
            </summary>
 
3600
            <param name="a"></param>
 
3601
            <param name="b"></param>
 
3602
        </member>
 
3603
        <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
 
3604
            <summary>
 
3605
            override the default ReferenceEquals to throw an AssertionException. This 
 
3606
            implementation makes sure there is no mistake in calling this function 
 
3607
            as part of Assert. 
 
3608
            </summary>
 
3609
            <param name="a"></param>
 
3610
            <param name="b"></param>
 
3611
        </member>
 
3612
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type)">
 
3613
            <summary>
 
3614
            Asserts that all items contained in collection are of the type specified by expectedType.
 
3615
            </summary>
 
3616
            <param name="collection">ICollection of objects to be considered</param>
 
3617
            <param name="expectedType">System.Type that all objects in collection must be instances of</param>
 
3618
        </member>
 
3619
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String)">
 
3620
            <summary>
 
3621
            Asserts that all items contained in collection are of the type specified by expectedType.
 
3622
            </summary>
 
3623
            <param name="collection">ICollection of objects to be considered</param>
 
3624
            <param name="expectedType">System.Type that all objects in collection must be instances of</param>
 
3625
            <param name="message">The message that will be displayed on failure</param>
 
3626
        </member>
 
3627
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.ICollection,System.Type,System.String,System.Object[])">
 
3628
            <summary>
 
3629
            Asserts that all items contained in collection are of the type specified by expectedType.
 
3630
            </summary>
 
3631
            <param name="collection">ICollection of objects to be considered</param>
 
3632
            <param name="expectedType">System.Type that all objects in collection must be instances of</param>
 
3633
            <param name="message">The message that will be displayed on failure</param>
 
3634
            <param name="args">Arguments to be used in formatting the message</param>
 
3635
        </member>
 
3636
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection)">
 
3637
            <summary>
 
3638
            Asserts that all items contained in collection are not equal to null.
 
3639
            </summary>
 
3640
            <param name="collection">ICollection of objects to be considered</param>
 
3641
        </member>
 
3642
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String)">
 
3643
            <summary>
 
3644
            Asserts that all items contained in collection are not equal to null.
 
3645
            </summary>
 
3646
            <param name="collection">ICollection of objects to be considered</param>
 
3647
            <param name="message">The message that will be displayed on failure</param>
 
3648
        </member>
 
3649
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.ICollection,System.String,System.Object[])">
 
3650
            <summary>
 
3651
            Asserts that all items contained in collection are not equal to null.
 
3652
            </summary>
 
3653
            <param name="collection">ICollection of objects to be considered</param>
 
3654
            <param name="message">The message that will be displayed on failure</param>
 
3655
            <param name="args">Arguments to be used in formatting the message</param>
 
3656
        </member>
 
3657
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection)">
 
3658
            <summary>
 
3659
            Ensures that every object contained in collection exists within the collection
 
3660
            once and only once.
 
3661
            </summary>
 
3662
            <param name="collection">ICollection of objects to be considered</param>
 
3663
        </member>
 
3664
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String)">
 
3665
            <summary>
 
3666
            Ensures that every object contained in collection exists within the collection
 
3667
            once and only once.
 
3668
            </summary>
 
3669
            <param name="collection">ICollection of objects to be considered</param>
 
3670
            <param name="message">The message that will be displayed on failure</param>
 
3671
        </member>
 
3672
        <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.ICollection,System.String,System.Object[])">
 
3673
            <summary>
 
3674
            Ensures that every object contained in collection exists within the collection
 
3675
            once and only once.
 
3676
            </summary>
 
3677
            <param name="collection">ICollection of objects to be considered</param>
 
3678
            <param name="message">The message that will be displayed on failure</param>
 
3679
            <param name="args">Arguments to be used in formatting the message</param>
 
3680
        </member>
 
3681
        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection)">
 
3682
            <summary>
 
3683
            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 
3684
            and contain the exact same objects in the same order.
 
3685
            </summary>
 
3686
            <param name="expected">The first ICollection of objects to be considered</param>
 
3687
            <param name="actual">The second ICollection of objects to be considered</param>
 
3688
        </member>
 
3689
        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
 
3690
            <summary>
 
3691
            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 
3692
            and contain the exact same objects in the same order.
 
3693
            If comparer is not null then it will be used to compare the objects.
 
3694
            </summary>
 
3695
            <param name="expected">The first ICollection of objects to be considered</param>
 
3696
            <param name="actual">The second ICollection of objects to be considered</param>
 
3697
            <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
 
3698
        </member>
 
3699
        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
 
3700
            <summary>
 
3701
            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 
3702
            and contain the exact same objects in the same order.
 
3703
            </summary>
 
3704
            <param name="expected">The first ICollection of objects to be considered</param>
 
3705
            <param name="actual">The second ICollection of objects to be considered</param>
 
3706
            <param name="message">The message that will be displayed on failure</param>
 
3707
        </member>
 
3708
        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
 
3709
            <summary>
 
3710
            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 
3711
            and contain the exact same objects in the same order.
 
3712
            If comparer is not null then it will be used to compare the objects.
 
3713
            </summary>
 
3714
            <param name="expected">The first ICollection of objects to be considered</param>
 
3715
            <param name="actual">The second ICollection of objects to be considered</param>
 
3716
            <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
 
3717
            <param name="message">The message that will be displayed on failure</param>
 
3718
        </member>
 
3719
        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
 
3720
            <summary>
 
3721
            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 
3722
            and contain the exact same objects in the same order.
 
3723
            </summary>
 
3724
            <param name="expected">The first ICollection of objects to be considered</param>
 
3725
            <param name="actual">The second ICollection of objects to be considered</param>
 
3726
            <param name="message">The message that will be displayed on failure</param>
 
3727
            <param name="args">Arguments to be used in formatting the message</param>
 
3728
        </member>
 
3729
        <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
 
3730
            <summary>
 
3731
            Asserts that expected and actual are exactly equal.  The collections must have the same count, 
 
3732
            and contain the exact same objects in the same order.
 
3733
            If comparer is not null then it will be used to compare the objects.
 
3734
            </summary>
 
3735
            <param name="expected">The first ICollection of objects to be considered</param>
 
3736
            <param name="actual">The second ICollection of objects to be considered</param>
 
3737
            <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
 
3738
            <param name="message">The message that will be displayed on failure</param>
 
3739
            <param name="args">Arguments to be used in formatting the message</param>
 
3740
        </member>
 
3741
        <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
 
3742
            <summary>
 
3743
            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
 
3744
            </summary>
 
3745
            <param name="expected">The first ICollection of objects to be considered</param>
 
3746
            <param name="actual">The second ICollection of objects to be considered</param>
 
3747
        </member>
 
3748
        <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
 
3749
            <summary>
 
3750
            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
 
3751
            </summary>
 
3752
            <param name="expected">The first ICollection of objects to be considered</param>
 
3753
            <param name="actual">The second ICollection of objects to be considered</param>
 
3754
            <param name="message">The message that will be displayed on failure</param>
 
3755
        </member>
 
3756
        <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
 
3757
            <summary>
 
3758
            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
 
3759
            </summary>
 
3760
            <param name="expected">The first ICollection of objects to be considered</param>
 
3761
            <param name="actual">The second ICollection of objects to be considered</param>
 
3762
            <param name="message">The message that will be displayed on failure</param>
 
3763
            <param name="args">Arguments to be used in formatting the message</param>
 
3764
        </member>
 
3765
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection)">
 
3766
            <summary>
 
3767
            Asserts that expected and actual are not exactly equal.
 
3768
            </summary>
 
3769
            <param name="expected">The first ICollection of objects to be considered</param>
 
3770
            <param name="actual">The second ICollection of objects to be considered</param>
 
3771
        </member>
 
3772
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer)">
 
3773
            <summary>
 
3774
            Asserts that expected and actual are not exactly equal.
 
3775
            If comparer is not null then it will be used to compare the objects.
 
3776
            </summary>
 
3777
            <param name="expected">The first ICollection of objects to be considered</param>
 
3778
            <param name="actual">The second ICollection of objects to be considered</param>
 
3779
            <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
 
3780
        </member>
 
3781
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String)">
 
3782
            <summary>
 
3783
            Asserts that expected and actual are not exactly equal.
 
3784
            </summary>
 
3785
            <param name="expected">The first ICollection of objects to be considered</param>
 
3786
            <param name="actual">The second ICollection of objects to be considered</param>
 
3787
            <param name="message">The message that will be displayed on failure</param>
 
3788
        </member>
 
3789
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String)">
 
3790
            <summary>
 
3791
            Asserts that expected and actual are not exactly equal.
 
3792
            If comparer is not null then it will be used to compare the objects.
 
3793
            </summary>
 
3794
            <param name="expected">The first ICollection of objects to be considered</param>
 
3795
            <param name="actual">The second ICollection of objects to be considered</param>
 
3796
            <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
 
3797
            <param name="message">The message that will be displayed on failure</param>
 
3798
        </member>
 
3799
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
 
3800
            <summary>
 
3801
            Asserts that expected and actual are not exactly equal.
 
3802
            </summary>
 
3803
            <param name="expected">The first ICollection of objects to be considered</param>
 
3804
            <param name="actual">The second ICollection of objects to be considered</param>
 
3805
            <param name="message">The message that will be displayed on failure</param>
 
3806
            <param name="args">Arguments to be used in formatting the message</param>
 
3807
        </member>
 
3808
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.ICollection,System.Collections.ICollection,System.Collections.IComparer,System.String,System.Object[])">
 
3809
            <summary>
 
3810
            Asserts that expected and actual are not exactly equal.
 
3811
            If comparer is not null then it will be used to compare the objects.
 
3812
            </summary>
 
3813
            <param name="expected">The first ICollection of objects to be considered</param>
 
3814
            <param name="actual">The second ICollection of objects to be considered</param>
 
3815
            <param name="comparer">The IComparer to use in comparing objects from each ICollection</param>
 
3816
            <param name="message">The message that will be displayed on failure</param>
 
3817
            <param name="args">Arguments to be used in formatting the message</param>
 
3818
        </member>
 
3819
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection)">
 
3820
            <summary>
 
3821
            Asserts that expected and actual are not equivalent.
 
3822
            </summary>
 
3823
            <param name="expected">The first ICollection of objects to be considered</param>
 
3824
            <param name="actual">The second ICollection of objects to be considered</param>
 
3825
        </member>
 
3826
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String)">
 
3827
            <summary>
 
3828
            Asserts that expected and actual are not equivalent.
 
3829
            </summary>
 
3830
            <param name="expected">The first ICollection of objects to be considered</param>
 
3831
            <param name="actual">The second ICollection of objects to be considered</param>
 
3832
            <param name="message">The message that will be displayed on failure</param>
 
3833
        </member>
 
3834
        <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
 
3835
            <summary>
 
3836
            Asserts that expected and actual are not equivalent.
 
3837
            </summary>
 
3838
            <param name="expected">The first ICollection of objects to be considered</param>
 
3839
            <param name="actual">The second ICollection of objects to be considered</param>
 
3840
            <param name="message">The message that will be displayed on failure</param>
 
3841
            <param name="args">Arguments to be used in formatting the message</param>
 
3842
        </member>
 
3843
        <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object)">
 
3844
            <summary>
 
3845
            Asserts that collection contains actual as an item.
 
3846
            </summary>
 
3847
            <param name="collection">ICollection of objects to be considered</param>
 
3848
            <param name="actual">Object to be found within collection</param>
 
3849
        </member>
 
3850
        <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String)">
 
3851
            <summary>
 
3852
            Asserts that collection contains actual as an item.
 
3853
            </summary>
 
3854
            <param name="collection">ICollection of objects to be considered</param>
 
3855
            <param name="actual">Object to be found within collection</param>
 
3856
            <param name="message">The message that will be displayed on failure</param>
 
3857
        </member>
 
3858
        <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.ICollection,System.Object,System.String,System.Object[])">
 
3859
            <summary>
 
3860
            Asserts that collection contains actual as an item.
 
3861
            </summary>
 
3862
            <param name="collection">ICollection of objects to be considered</param>
 
3863
            <param name="actual">Object to be found within collection</param>
 
3864
            <param name="message">The message that will be displayed on failure</param>
 
3865
            <param name="args">Arguments to be used in formatting the message</param>
 
3866
        </member>
 
3867
        <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object)">
 
3868
            <summary>
 
3869
            Asserts that collection does not contain actual as an item.
 
3870
            </summary>
 
3871
            <param name="collection">ICollection of objects to be considered</param>
 
3872
            <param name="actual">Object that cannot exist within collection</param>
 
3873
        </member>
 
3874
        <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String)">
 
3875
            <summary>
 
3876
            Asserts that collection does not contain actual as an item.
 
3877
            </summary>
 
3878
            <param name="collection">ICollection of objects to be considered</param>
 
3879
            <param name="actual">Object that cannot exist within collection</param>
 
3880
            <param name="message">The message that will be displayed on failure</param>
 
3881
        </member>
 
3882
        <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.ICollection,System.Object,System.String,System.Object[])">
 
3883
            <summary>
 
3884
            Asserts that collection does not contain actual as an item.
 
3885
            </summary>
 
3886
            <param name="collection">ICollection of objects to be considered</param>
 
3887
            <param name="actual">Object that cannot exist within collection</param>
 
3888
            <param name="message">The message that will be displayed on failure</param>
 
3889
            <param name="args">Arguments to be used in formatting the message</param>
 
3890
        </member>
 
3891
        <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
 
3892
            <summary>
 
3893
            Asserts that superset is not a subject of subset.
 
3894
            </summary>
 
3895
            <param name="subset">The ICollection superset to be considered</param>
 
3896
            <param name="superset">The ICollection subset to be considered</param>
 
3897
        </member>
 
3898
        <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
 
3899
            <summary>
 
3900
            Asserts that superset is not a subject of subset.
 
3901
            </summary>
 
3902
            <param name="subset">The ICollection superset to be considered</param>
 
3903
            <param name="superset">The ICollection subset to be considered</param>
 
3904
            <param name="message">The message that will be displayed on failure</param>
 
3905
        </member>
 
3906
        <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
 
3907
            <summary>
 
3908
            Asserts that superset is not a subject of subset.
 
3909
            </summary>
 
3910
            <param name="subset">The ICollection superset to be considered</param>
 
3911
            <param name="superset">The ICollection subset to be considered</param>
 
3912
            <param name="message">The message that will be displayed on failure</param>
 
3913
            <param name="args">Arguments to be used in formatting the message</param>
 
3914
        </member>
 
3915
        <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection)">
 
3916
            <summary>
 
3917
            Asserts that superset is a subset of subset.
 
3918
            </summary>
 
3919
            <param name="subset">The ICollection superset to be considered</param>
 
3920
            <param name="superset">The ICollection subset to be considered</param>
 
3921
        </member>
 
3922
        <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String)">
 
3923
            <summary>
 
3924
            Asserts that superset is a subset of subset.
 
3925
            </summary>
 
3926
            <param name="subset">The ICollection superset to be considered</param>
 
3927
            <param name="superset">The ICollection subset to be considered</param>
 
3928
            <param name="message">The message that will be displayed on failure</param>
 
3929
        </member>
 
3930
        <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.ICollection,System.Collections.ICollection,System.String,System.Object[])">
 
3931
            <summary>
 
3932
            Asserts that superset is a subset of subset.
 
3933
            </summary>
 
3934
            <param name="subset">The ICollection superset to be considered</param>
 
3935
            <param name="superset">The ICollection subset to be considered</param>
 
3936
            <param name="message">The message that will be displayed on failure</param>
 
3937
            <param name="args">Arguments to be used in formatting the message</param>
 
3938
        </member>
 
3939
        <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
 
3940
            <summary>
 
3941
            Assert that an array, list or other collection is empty
 
3942
            </summary>
 
3943
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
3944
            <param name="message">The message to be displayed on failure</param>
 
3945
            <param name="args">Arguments to be used in formatting the message</param>
 
3946
        </member>
 
3947
        <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.ICollection,System.String)">
 
3948
            <summary>
 
3949
            Assert that an array, list or other collection is empty
 
3950
            </summary>
 
3951
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
3952
            <param name="message">The message to be displayed on failure</param>
 
3953
        </member>
 
3954
        <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.ICollection)">
 
3955
            <summary>
 
3956
            Assert that an array,list or other collection is empty
 
3957
            </summary>
 
3958
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
3959
        </member>
 
3960
        <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
 
3961
            <summary>
 
3962
            Assert that an array, list or other collection is empty
 
3963
            </summary>
 
3964
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
3965
            <param name="message">The message to be displayed on failure</param>
 
3966
            <param name="args">Arguments to be used in formatting the message</param>
 
3967
        </member>
 
3968
        <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.ICollection,System.String)">
 
3969
            <summary>
 
3970
            Assert that an array, list or other collection is empty
 
3971
            </summary>
 
3972
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
3973
            <param name="message">The message to be displayed on failure</param>
 
3974
        </member>
 
3975
        <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.ICollection)">
 
3976
            <summary>
 
3977
            Assert that an array,list or other collection is empty
 
3978
            </summary>
 
3979
            <param name="collection">An array, list or other collection implementing ICollection</param>
 
3980
        </member>
 
3981
        <member name="T:NUnit.Framework.AbstractAsserter">
 
3982
            <summary>
 
3983
            NOTE: The use of asserters for extending NUnit has
 
3984
            now been replaced by the use of constraints. This
 
3985
            class is marked obsolete.
 
3986
            
 
3987
            AbstractAsserter is the base class for all asserters.
 
3988
            Asserters encapsulate a condition test and generation 
 
3989
            of an AssertionException with a tailored message. They
 
3990
            are used by the Assert class as helper objects.
 
3991
            
 
3992
            User-defined asserters may be passed to the 
 
3993
            Assert.DoAssert method in order to implement 
 
3994
            extended asserts.
 
3995
            </summary>
 
3996
        </member>
 
3997
        <member name="T:NUnit.Framework.IAsserter">
 
3998
            <summary>
 
3999
            NOTE: The use of asserters for extending NUnit has
 
4000
            now been replaced by the use of constraints. This
 
4001
            interface is marked obsolete.
 
4002
            
 
4003
            The interface implemented by an asserter. Asserters
 
4004
            encapsulate a condition test and generation of an
 
4005
            AssertionException with a tailored message. They
 
4006
            are used by the Assert class as helper objects.
 
4007
            
 
4008
            User-defined asserters may be passed to the
 
4009
            Assert.DoAssert method in order to implement
 
4010
            extended asserts.
 
4011
            </summary>
 
4012
        </member>
 
4013
        <member name="M:NUnit.Framework.IAsserter.Test">
 
4014
            <summary>
 
4015
            Test the condition for the assertion.
 
4016
            </summary>
 
4017
            <returns>True if the test succeeds</returns>
 
4018
        </member>
 
4019
        <member name="P:NUnit.Framework.IAsserter.Message">
 
4020
            <summary>
 
4021
            Return the message giving the failure reason.
 
4022
            The return value is unspecified if no failure
 
4023
            has occured.
 
4024
            </summary>
 
4025
        </member>
 
4026
        <member name="F:NUnit.Framework.AbstractAsserter.userMessage">
 
4027
            <summary>
 
4028
            The user-defined message for this asserter.
 
4029
            </summary>
 
4030
        </member>
 
4031
        <member name="F:NUnit.Framework.AbstractAsserter.args">
 
4032
            <summary>
 
4033
            Arguments to use in formatting the user-defined message.
 
4034
            </summary>
 
4035
        </member>
 
4036
        <member name="F:NUnit.Framework.AbstractAsserter.failureMessage">
 
4037
            <summary>
 
4038
            Our failure message object, initialized as needed
 
4039
            </summary>
 
4040
        </member>
 
4041
        <member name="M:NUnit.Framework.AbstractAsserter.#ctor(System.String,System.Object[])">
 
4042
            <summary>
 
4043
            Constructs an AbstractAsserter
 
4044
            </summary>
 
4045
            <param name="message">The message issued upon failure</param>
 
4046
            <param name="args">Arguments to be used in formatting the message</param>
 
4047
        </member>
 
4048
        <member name="M:NUnit.Framework.AbstractAsserter.Test">
 
4049
            <summary>
 
4050
            Test method to be implemented by derived types.
 
4051
            Default always succeeds.
 
4052
            </summary>
 
4053
            <returns>True if the test succeeds</returns>
 
4054
        </member>
 
4055
        <member name="P:NUnit.Framework.AbstractAsserter.FailureMessage">
 
4056
            <summary>
 
4057
            AssertionFailureMessage object used internally
 
4058
            </summary>
 
4059
        </member>
 
4060
        <member name="P:NUnit.Framework.AbstractAsserter.Message">
 
4061
            <summary>
 
4062
            Message related to a failure. If no failure has
 
4063
            occured, the result is unspecified.
 
4064
            </summary>
 
4065
        </member>
 
4066
        <member name="T:NUnit.Framework.Assertion">
 
4067
            <summary>
 
4068
            The Assertion class is obsolete and has been
 
4069
            replaced by the Assert class.
 
4070
            </summary>
 
4071
        </member>
 
4072
        <member name="M:NUnit.Framework.Assertion.Assert(System.String,System.Boolean)">
 
4073
            <summary>
 
4074
            Asserts that a condition is true. If it isn't it throws
 
4075
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
4076
            </summary>
 
4077
            <param name="message">The message to display is the condition
 
4078
            is false</param>
 
4079
            <param name="condition">The evaluated condition</param>
 
4080
        </member>
 
4081
        <member name="M:NUnit.Framework.Assertion.Assert(System.Boolean)">
 
4082
            <summary>
 
4083
            Asserts that a condition is true. If it isn't it throws
 
4084
            an <see cref="T:NUnit.Framework.AssertionException"/>.
 
4085
            </summary>
 
4086
            <param name="condition">The evaluated condition</param>
 
4087
        </member>
 
4088
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Double,System.Double,System.Double)">
 
4089
            <summary>
 
4090
            /// Asserts that two doubles are equal concerning a delta. If the
 
4091
            expected value is infinity then the delta value is ignored.
 
4092
            </summary>
 
4093
            <param name="expected">The expected value</param>
 
4094
            <param name="actual">The actual value</param>
 
4095
            <param name="delta">The maximum acceptable difference between the
 
4096
            the expected and the actual</param>
 
4097
        </member>
 
4098
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Single,System.Single,System.Single)">
 
4099
            <summary>
 
4100
            /// Asserts that two singles are equal concerning a delta. If the
 
4101
            expected value is infinity then the delta value is ignored.
 
4102
            </summary>
 
4103
            <param name="expected">The expected value</param>
 
4104
            <param name="actual">The actual value</param>
 
4105
            <param name="delta">The maximum acceptable difference between the
 
4106
            the expected and the actual</param>
 
4107
        </member>
 
4108
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Object,System.Object)">
 
4109
            <summary>Asserts that two objects are equal. If they are not
 
4110
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
 
4111
        </member>
 
4112
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.Int32,System.Int32)">
 
4113
            <summary>Asserts that two ints are equal. If they are not
 
4114
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
 
4115
        </member>
 
4116
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Int32,System.Int32)">
 
4117
            <summary>Asserts that two ints are equal. If they are not
 
4118
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
 
4119
        </member>
 
4120
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Double,System.Double,System.Double)">
 
4121
            <summary>Asserts that two doubles are equal concerning a delta.
 
4122
            If the expected value is infinity then the delta value is ignored.
 
4123
            </summary>
 
4124
        </member>
 
4125
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Single,System.Single,System.Single)">
 
4126
            <summary>Asserts that two floats are equal concerning a delta.
 
4127
            If the expected value is infinity then the delta value is ignored.
 
4128
            </summary>
 
4129
        </member>
 
4130
        <member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Object,System.Object)">
 
4131
            <summary>
 
4132
            Asserts that two objects are equal.  Two objects are considered
 
4133
            equal if both are null, or if both have the same value.  Numeric
 
4134
            types are compared via string comparision on their contents to
 
4135
            avoid problems comparing values between different types.  All
 
4136
            non-numeric types are compared by using the <c>Equals</c> method.
 
4137
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
4138
            </summary>
 
4139
        </member>
 
4140
        <member name="M:NUnit.Framework.Assertion.AssertNotNull(System.Object)">
 
4141
            <summary>Asserts that an object isn't null.</summary>
 
4142
        </member>
 
4143
        <member name="M:NUnit.Framework.Assertion.AssertNotNull(System.String,System.Object)">
 
4144
            <summary>Asserts that an object isn't null.</summary>
 
4145
        </member>
 
4146
        <member name="M:NUnit.Framework.Assertion.AssertNull(System.Object)">
 
4147
            <summary>Asserts that an object is null.</summary>
 
4148
        </member>
 
4149
        <member name="M:NUnit.Framework.Assertion.AssertNull(System.String,System.Object)">
 
4150
            <summary>Asserts that an object is null.</summary>
 
4151
        </member>
 
4152
        <member name="M:NUnit.Framework.Assertion.AssertSame(System.Object,System.Object)">
 
4153
            <summary>Asserts that two objects refer to the same object. If they
 
4154
            are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
4155
            </summary>
 
4156
        </member>
 
4157
        <member name="M:NUnit.Framework.Assertion.AssertSame(System.String,System.Object,System.Object)">
 
4158
            <summary>Asserts that two objects refer to the same object. 
 
4159
            If they are not an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
4160
            </summary>
 
4161
        </member>
 
4162
        <member name="M:NUnit.Framework.Assertion.Fail">
 
4163
            <summary>Fails a test with no message.</summary>
 
4164
        </member>
 
4165
        <member name="M:NUnit.Framework.Assertion.Fail(System.String)">
 
4166
            <summary>Fails a test with the given message.</summary>
 
4167
        </member>
 
4168
        <member name="T:NUnit.Framework.AssertionException">
 
4169
            <summary>
 
4170
            Thrown when an assertion failed.
 
4171
            </summary>
 
4172
            
 
4173
        </member>
 
4174
        <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
 
4175
            <param name="message">The error message that explains 
 
4176
            the reason for the exception</param>
 
4177
        </member>
 
4178
        <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
 
4179
            <param name="message">The error message that explains 
 
4180
            the reason for the exception</param>
 
4181
            <param name="inner">The exception that caused the 
 
4182
            current exception</param>
 
4183
        </member>
 
4184
        <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
 
4185
            <summary>
 
4186
            Serialization Constructor
 
4187
            </summary>
 
4188
        </member>
 
4189
        <member name="T:NUnit.Framework.AssertionFailureMessage">
 
4190
            <summary>
 
4191
            AssertionFailureMessage encapsulates a failure message
 
4192
            issued as a result of an Assert failure.
 
4193
            </summary>
 
4194
        </member>
 
4195
        <member name="F:NUnit.Framework.AssertionFailureMessage.PreClipLength">
 
4196
            <summary>
 
4197
            Number of characters before a highlighted position before
 
4198
            clipping will occur.  Clipped text is replaced with an
 
4199
            elipsis "..."
 
4200
            </summary>
 
4201
        </member>
 
4202
        <member name="F:NUnit.Framework.AssertionFailureMessage.PostClipLength">
 
4203
            <summary>
 
4204
            Number of characters after a highlighted position before
 
4205
            clipping will occur.  Clipped text is replaced with an
 
4206
            elipsis "..."
 
4207
            </summary>
 
4208
        </member>
 
4209
        <member name="F:NUnit.Framework.AssertionFailureMessage.expectedPrefix">
 
4210
            <summary>
 
4211
            Prefix used to start an expected value line.
 
4212
            Must be same length as actualPrefix.
 
4213
            </summary>
 
4214
        </member>
 
4215
        <member name="F:NUnit.Framework.AssertionFailureMessage.actualPrefix">
 
4216
            <summary>
 
4217
            Prefix used to start an actual value line.
 
4218
            Must be same length as expectedPrefix.
 
4219
            </summary>
 
4220
        </member>
 
4221
        <member name="M:NUnit.Framework.AssertionFailureMessage.#ctor(System.String,System.Object[])">
 
4222
            <summary>
 
4223
            Construct an AssertionFailureMessage with a message
 
4224
            and optional arguments.
 
4225
            </summary>
 
4226
            <param name="message"></param>
 
4227
            <param name="args"></param>
 
4228
        </member>
 
4229
        <member name="M:NUnit.Framework.AssertionFailureMessage.#ctor">
 
4230
            <summary>
 
4231
            Construct an empty AssertionFailureMessage
 
4232
            </summary>
 
4233
        </member>
 
4234
        <member name="M:NUnit.Framework.AssertionFailureMessage.WriteExpectedLine(System.String)">
 
4235
            <summary>
 
4236
            Add an expected value line to the message containing
 
4237
            the text provided as an argument.
 
4238
            </summary>
 
4239
            <param name="text">Text describing what was expected.</param>
 
4240
        </member>
 
4241
        <member name="M:NUnit.Framework.AssertionFailureMessage.WriteActualLine(System.String)">
 
4242
            <summary>
 
4243
            Add an actual value line to the message containing
 
4244
            the text provided as an argument.
 
4245
            </summary>
 
4246
            <param name="text">Text describing the actual value.</param>
 
4247
        </member>
 
4248
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedValue(System.Object)">
 
4249
            <summary>
 
4250
            Add an expected value line to the message containing
 
4251
            a string representation of the object provided.
 
4252
            </summary>
 
4253
            <param name="expected">An object representing the expected value</param>
 
4254
        </member>
 
4255
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedValue(System.Double,System.Double)">
 
4256
            <summary>
 
4257
            Add an expected value line to the message containing a double
 
4258
            and the tolerance used in making the comparison.
 
4259
            </summary>
 
4260
            <param name="expected">The expected value</param>
 
4261
            <param name="tolerance">The tolerance specified in the Assert</param>
 
4262
        </member>
 
4263
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayActualValue(System.Object)">
 
4264
            <summary>
 
4265
            Add an actual value line to the message containing
 
4266
            a string representation of the object provided.
 
4267
            </summary>
 
4268
            <param name="actual">An object representing what was actually found</param>
 
4269
        </member>
 
4270
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedAndActual(System.Object,System.Object)">
 
4271
            <summary>
 
4272
            Display two lines that communicate the expected value, and the actual value
 
4273
            </summary>
 
4274
            <param name="expected">The expected value</param>
 
4275
            <param name="actual">The actual value found</param>
 
4276
        </member>
 
4277
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayExpectedAndActual(System.Double,System.Double,System.Double)">
 
4278
            <summary>
 
4279
            Display two lines that communicate the expected value, the actual value and
 
4280
            the tolerance used in comparing two doubles.
 
4281
            </summary>
 
4282
            <param name="expected">The expected value</param>
 
4283
            <param name="actual">The actual value found</param>
 
4284
            <param name="tolerance">The tolerance specified in the Assert</param>
 
4285
        </member>
 
4286
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayPositionMarker(System.Int32)">
 
4287
            <summary>
 
4288
            Draws a marker under the expected/actual strings that highlights
 
4289
            where in the string a mismatch occurred.
 
4290
            </summary>
 
4291
            <param name="iPosition">The position of the mismatch</param>
 
4292
        </member>
 
4293
        <member name="M:NUnit.Framework.AssertionFailureMessage.BuildStringLengthReport(System.String,System.String)">
 
4294
            <summary>
 
4295
            Reports whether the string lengths are the same or different, and
 
4296
            what the string lengths are.
 
4297
            </summary>
 
4298
            <param name="sExpected">The expected string</param>
 
4299
            <param name="sActual">The actual string value</param>
 
4300
        </member>
 
4301
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayDifferences(System.Object,System.Object,System.Boolean)">
 
4302
            <summary>
 
4303
            Called to create additional message lines when two objects have been 
 
4304
            found to be unequal.  If the inputs are strings, a special message is
 
4305
            rendered that can help track down where the strings are different,
 
4306
            based on differences in length, or differences in content.
 
4307
            
 
4308
            If the inputs are not strings, the ToString method of the objects
 
4309
            is used to show what is different about them.
 
4310
            </summary>
 
4311
            <param name="expected">The expected value</param>
 
4312
            <param name="actual">The actual value</param>
 
4313
            <param name="caseInsensitive">True if a case-insensitive comparison is being performed</param>
 
4314
        </member>
 
4315
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayDifferencesWithTolerance(System.Double,System.Double,System.Double)">
 
4316
            <summary>
 
4317
            Called to create additional message lines when two doubles have been 
 
4318
            found to be unequal, within the specified tolerance.
 
4319
            </summary>
 
4320
        </member>
 
4321
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayStringDifferences(System.String,System.String,System.Boolean)">
 
4322
            <summary>
 
4323
            Constructs a message that can be displayed when the content of two
 
4324
            strings are different, but the string lengths are the same.  The
 
4325
            message will clip the strings to a reasonable length, centered
 
4326
            around the first position where they are mismatched, and draw 
 
4327
            a line marking the position of the difference to make comparison
 
4328
            quicker.
 
4329
            </summary>
 
4330
            <param name="sExpected">The expected string value</param>
 
4331
            <param name="sActual">The actual string value</param>
 
4332
            <param name="caseInsensitive">True if a case-insensitive comparison is being performed</param>
 
4333
        </member>
 
4334
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayArrayDifferences(System.Array,System.Array,System.Int32)">
 
4335
            <summary>
 
4336
            Display a standard message showing the differences found between 
 
4337
            two arrays that were expected to be equal.
 
4338
            </summary>
 
4339
            <param name="expected">The expected array value</param>
 
4340
            <param name="actual">The actual array value</param>
 
4341
            <param name="index">The index at which a difference was found</param>
 
4342
        </member>
 
4343
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayCollectionDifferences(System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
 
4344
            <summary>
 
4345
            Display a standard message showing the differences found between 
 
4346
            two collections that were expected to be equal.
 
4347
            </summary>
 
4348
            <param name="expected">The expected collection value</param>
 
4349
            <param name="actual">The actual collection value</param>
 
4350
            <param name="index">The index at which a difference was found</param>
 
4351
        </member>
 
4352
        <member name="M:NUnit.Framework.AssertionFailureMessage.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
 
4353
            <summary>
 
4354
            Get an array of indices representing the point in a collection or
 
4355
            array corresponding to a single int index into the collection.
 
4356
            </summary>
 
4357
            <param name="collection">The collection to which the indices apply</param>
 
4358
            <param name="index">Index in the collection</param>
 
4359
            <returns>Array of indices</returns>
 
4360
        </member>
 
4361
        <member name="M:NUnit.Framework.AssertionFailureMessage.DisplayListElements(System.String,System.Collections.IList,System.Int32,System.Int32)">
 
4362
            <summary>
 
4363
            Displays elements from a list on a line
 
4364
            </summary>
 
4365
            <param name="label">Text to prefix the line with</param>
 
4366
            <param name="list">The list of items to display</param>
 
4367
            <param name="index">The index in the list of the first element to display</param>
 
4368
            <param name="max">The maximum number of elements to display</param>
 
4369
        </member>
 
4370
        <member name="M:NUnit.Framework.AssertionFailureMessage.FormatObjectForDisplay(System.Object)">
 
4371
            <summary>
 
4372
            Formats an object for display in a message line
 
4373
            </summary>
 
4374
            <param name="obj">The object to be displayed</param>
 
4375
            <returns></returns>
 
4376
        </member>
 
4377
        <member name="M:NUnit.Framework.AssertionFailureMessage.InputsAreStrings(System.Object,System.Object)">
 
4378
            <summary>
 
4379
            Tests two objects to determine if they are strings.
 
4380
            </summary>
 
4381
            <param name="expected"></param>
 
4382
            <param name="actual"></param>
 
4383
            <returns></returns>
 
4384
        </member>
 
4385
        <member name="M:NUnit.Framework.AssertionFailureMessage.ClipAroundPosition(System.String,System.Int32)">
 
4386
            <summary>
 
4387
            Renders up to M characters before, and up to N characters after
 
4388
            the specified index position.  If leading or trailing text is
 
4389
            clipped, and elipses "..." is added where the missing text would
 
4390
            be.
 
4391
            
 
4392
            Clips strings to limit previous or post newline characters,
 
4393
            since these mess up the comparison
 
4394
            </summary>
 
4395
            <param name="sString"></param>
 
4396
            <param name="iPosition"></param>
 
4397
            <returns></returns>
 
4398
        </member>
 
4399
        <member name="M:NUnit.Framework.AssertionFailureMessage.FindMismatchPosition(System.String,System.String,System.Int32)">
 
4400
            <summary>
 
4401
            Shows the position two strings start to differ.  Comparison 
 
4402
            starts at the start index.
 
4403
            </summary>
 
4404
            <param name="sExpected"></param>
 
4405
            <param name="sActual"></param>
 
4406
            <param name="iStart"></param>
 
4407
            <returns>-1 if no mismatch found, or the index where mismatch found</returns>
 
4408
        </member>
 
4409
        <member name="M:NUnit.Framework.AssertionFailureMessage.ConvertWhitespace(System.String)">
 
4410
            <summary>
 
4411
            Turns CR, LF, or TAB into visual indicator to preserve visual marker 
 
4412
            position.   This is done by replacing the '\r' into '\\' and 'r' 
 
4413
            characters, and the '\n' into '\\' and 'n' characters, and '\t' into
 
4414
            '\\' and 't' characters.  
 
4415
            
 
4416
            Thus the single character becomes two characters for display.
 
4417
            </summary>
 
4418
            <param name="sInput"></param>
 
4419
            <returns></returns>
 
4420
        </member>
 
4421
        <member name="T:NUnit.Framework.CategoryAttribute">
 
4422
            <summary>
 
4423
            Attribute used to apply a category to a test
 
4424
            </summary>
 
4425
        </member>
 
4426
        <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
 
4427
            <summary>
 
4428
            The name of the category
 
4429
            </summary>
 
4430
        </member>
 
4431
        <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
 
4432
            <summary>
 
4433
            Construct attribute for a given category
 
4434
            </summary>
 
4435
            <param name="name">The name of the category</param>
 
4436
        </member>
 
4437
        <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
 
4438
            <summary>
 
4439
            Protected constructor uses the Type name as the name
 
4440
            of the category.
 
4441
            </summary>
 
4442
        </member>
 
4443
        <member name="P:NUnit.Framework.CategoryAttribute.Name">
 
4444
            <summary>
 
4445
            The name of the category
 
4446
            </summary>
 
4447
        </member>
 
4448
        <member name="T:NUnit.Framework.IncludeExcludeAttribute">
 
4449
            <summary>
 
4450
            Abstract base for Attributes that are used to include tests
 
4451
            in the test run based on environmental settings.
 
4452
            </summary>
 
4453
        </member>
 
4454
        <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
 
4455
            <summary>
 
4456
            Constructor with no included items specified, for use
 
4457
            with named property syntax.
 
4458
            </summary>
 
4459
        </member>
 
4460
        <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
 
4461
            <summary>
 
4462
            Constructor taking one or more included items
 
4463
            </summary>
 
4464
            <param name="include">Comma-delimited list of included items</param>
 
4465
        </member>
 
4466
        <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
 
4467
            <summary>
 
4468
            Name of the item that is needed in order for
 
4469
            a test to run. Multiple itemss may be given,
 
4470
            separated by a comma.
 
4471
            </summary>
 
4472
        </member>
 
4473
        <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
 
4474
            <summary>
 
4475
            Name of the item to be excluded. Multiple items
 
4476
            may be given, separated by a comma.
 
4477
            </summary>
 
4478
        </member>
 
4479
        <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
 
4480
            <summary>
 
4481
            The reason for including or excluding the test
 
4482
            </summary>
 
4483
        </member>
 
4484
        <member name="T:NUnit.Framework.PlatformAttribute">
 
4485
            <summary>
 
4486
            PlatformAttribute is used to mark a test fixture or an
 
4487
            individual method as applying to a particular platform only.
 
4488
            </summary>
 
4489
        </member>
 
4490
        <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
 
4491
            <summary>
 
4492
            Constructor with no platforms specified, for use
 
4493
            with named property syntax.
 
4494
            </summary>
 
4495
        </member>
 
4496
        <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
 
4497
            <summary>
 
4498
            Constructor taking one or more platforms
 
4499
            </summary>
 
4500
            <param name="platforms">Comma-deliminted list of platforms</param>
 
4501
        </member>
 
4502
        <member name="T:NUnit.Framework.CultureAttribute">
 
4503
            <summary>
 
4504
            CultureAttribute is used to mark a test fixture or an
 
4505
            individual method as applying to a particular Culture only.
 
4506
            </summary>
 
4507
        </member>
 
4508
        <member name="M:NUnit.Framework.CultureAttribute.#ctor">
 
4509
            <summary>
 
4510
            Constructor with no cultures specified, for use
 
4511
            with named property syntax.
 
4512
            </summary>
 
4513
        </member>
 
4514
        <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
 
4515
            <summary>
 
4516
            Constructor taking one or more cultures
 
4517
            </summary>
 
4518
            <param name="cultures">Comma-deliminted list of cultures</param>
 
4519
        </member>
 
4520
        <member name="T:NUnit.Framework.MessageWriter">
 
4521
            <summary>
 
4522
            MessageWriter is the abstract base for classes that write
 
4523
            constraint descriptions and messages in some form. The
 
4524
            class has separate methods for writing various components
 
4525
            of a message, allowing implementations to tailor the
 
4526
            presentation as needed.
 
4527
            </summary>
 
4528
        </member>
 
4529
        <member name="M:NUnit.Framework.MessageWriter.#ctor">
 
4530
            <summary>
 
4531
            Construct a MessageWriter given a culture
 
4532
            </summary>
 
4533
        </member>
 
4534
        <member name="M:NUnit.Framework.MessageWriter.WriteMessageLine(System.String,System.Object[])">
 
4535
            <summary>
 
4536
            Method to write single line  message with optional args, usually
 
4537
            written to precede the general failure message.
 
4538
            </summary>
 
4539
            <param name="message">The message to be written</param>
 
4540
            <param name="args">Any arguments used in formatting the message</param>
 
4541
        </member>
 
4542
        <member name="M:NUnit.Framework.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
 
4543
            <summary>
 
4544
            Method to write single line  message with optional args, usually
 
4545
            written to precede the general failure message, at a givel 
 
4546
            indentation level.
 
4547
            </summary>
 
4548
            <param name="level">The indentation level of the message</param>
 
4549
            <param name="message">The message to be written</param>
 
4550
            <param name="args">Any arguments used in formatting the message</param>
 
4551
        </member>
 
4552
        <member name="M:NUnit.Framework.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
 
4553
            <summary>
 
4554
            Display Expected and Actual lines for a constraint. This
 
4555
            is called by MessageWriter's default implementation of 
 
4556
            WriteMessageTo and provides the generic two-line display. 
 
4557
            </summary>
 
4558
            <param name="constraint">The constraint that failed</param>
 
4559
        </member>
 
4560
        <member name="M:NUnit.Framework.MessageWriter.DisplayDifferences(System.Object,System.Object)">
 
4561
            <summary>
 
4562
            Display Expected and Actual lines for given values. This
 
4563
            method may be called by constraints that need more control over
 
4564
            the display of actual and expected values than is provided
 
4565
            by the default implementation.
 
4566
            </summary>
 
4567
            <param name="expected">The expected value</param>
 
4568
            <param name="actual">The actual value causing the failure</param>
 
4569
        </member>
 
4570
        <member name="M:NUnit.Framework.MessageWriter.DisplayDifferences(System.Object,System.Object,System.Object)">
 
4571
            <summary>
 
4572
            Display Expected and Actual lines for given values, including
 
4573
            a tolerance value on the Expected line.
 
4574
            </summary>
 
4575
            <param name="expected">The expected value</param>
 
4576
            <param name="actual">The actual value causing the failure</param>
 
4577
            <param name="tolerance">The tolerance within which the test was made</param>
 
4578
        </member>
 
4579
        <member name="M:NUnit.Framework.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean)">
 
4580
            <summary>
 
4581
            Display the expected and actual string values on separate lines.
 
4582
            If the mismatch parameter is >=0, an additional line is displayed
 
4583
            line containing a caret that points to the mismatch point.
 
4584
            </summary>
 
4585
            <param name="expected">The expected string value</param>
 
4586
            <param name="actual">The actual string value</param>
 
4587
            <param name="mismatch">The point at which the strings don't match or -1</param>
 
4588
            <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
 
4589
        </member>
 
4590
        <member name="M:NUnit.Framework.MessageWriter.WriteConnector(System.String)">
 
4591
            <summary>
 
4592
            Writes the text for a connector.
 
4593
            </summary>
 
4594
            <param name="connector">The connector.</param>
 
4595
        </member>
 
4596
        <member name="M:NUnit.Framework.MessageWriter.WritePredicate(System.String)">
 
4597
            <summary>
 
4598
            Writes the text for a predicate.
 
4599
            </summary>
 
4600
            <param name="predicate">The predicate.</param>
 
4601
        </member>
 
4602
        <member name="M:NUnit.Framework.MessageWriter.WriteExpectedValue(System.Object)">
 
4603
            <summary>
 
4604
            Writes the text for an expected value.
 
4605
            </summary>
 
4606
            <param name="expected">The expected value.</param>
 
4607
        </member>
 
4608
        <member name="M:NUnit.Framework.MessageWriter.WriteModifier(System.String)">
 
4609
            <summary>
 
4610
            Writes the text for a modifier
 
4611
            </summary>
 
4612
            <param name="modifier">The modifier.</param>
 
4613
        </member>
 
4614
        <member name="M:NUnit.Framework.MessageWriter.WriteActualValue(System.Object)">
 
4615
            <summary>
 
4616
            Writes the text for an actual value.
 
4617
            </summary>
 
4618
            <param name="actual">The actual value.</param>
 
4619
        </member>
 
4620
        <member name="M:NUnit.Framework.MessageWriter.WriteValue(System.Object)">
 
4621
            <summary>
 
4622
            Writes the text for a generalized value.
 
4623
            </summary>
 
4624
            <param name="val">The value.</param>
 
4625
        </member>
 
4626
        <member name="M:NUnit.Framework.MessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
 
4627
            <summary>
 
4628
            Writes the text for a collection value,
 
4629
            starting at a particular point, to a max length
 
4630
            </summary>
 
4631
            <param name="collection">The collection containing elements to write.</param>
 
4632
            <param name="start">The starting point of the elements to write</param>
 
4633
            <param name="max">The maximum number of elements to write</param>
 
4634
        </member>
 
4635
        <member name="P:NUnit.Framework.MessageWriter.MaxLineLength">
 
4636
            <summary>
 
4637
            Abstract method to get the max line length
 
4638
            </summary>
 
4639
        </member>
 
4640
        <member name="T:NUnit.Framework.SetCultureAttribute">
 
4641
            <summary>
 
4642
            Summary description for SetCultureAttribute.
 
4643
            </summary>
 
4644
        </member>
 
4645
        <member name="T:NUnit.Framework.PropertyAttribute">
 
4646
            <summary>
 
4647
            PropertyAttribute is used to attach information to a test as a name/value pair..
 
4648
            </summary>
 
4649
        </member>
 
4650
        <member name="F:NUnit.Framework.PropertyAttribute.propertyName">
 
4651
            <summary>
 
4652
            The property name
 
4653
            </summary>
 
4654
        </member>
 
4655
        <member name="F:NUnit.Framework.PropertyAttribute.propertyValue">
 
4656
            <summary>
 
4657
            The property value
 
4658
            </summary>
 
4659
        </member>
 
4660
        <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Object)">
 
4661
            <summary>
 
4662
            Construct a PropertyAttribute with a name and value
 
4663
            </summary>
 
4664
            <param name="propertyName">The name of the property</param>
 
4665
            <param name="propertyValue">The property value</param>
 
4666
        </member>
 
4667
        <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
 
4668
            <summary>
 
4669
            Constructor for use by inherited classes that use the
 
4670
            name of the type as the property name.
 
4671
            </summary>
 
4672
        </member>
 
4673
        <member name="P:NUnit.Framework.PropertyAttribute.Name">
 
4674
            <summary>
 
4675
            Gets the property name
 
4676
            </summary>
 
4677
        </member>
 
4678
        <member name="P:NUnit.Framework.PropertyAttribute.Value">
 
4679
            <summary>
 
4680
            Gets the property value
 
4681
            </summary>
 
4682
        </member>
 
4683
        <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
 
4684
            <summary>
 
4685
            Construct given the name of a culture
 
4686
            </summary>
 
4687
            <param name="culture"></param>
 
4688
        </member>
 
4689
        <member name="T:NUnit.Framework.TextMessageWriter">
 
4690
            <summary>
 
4691
            TextMessageWriter writes constraint descriptions and messages
 
4692
            in displayable form as a text stream. It tailors the display
 
4693
            of individual message components to form the standard message
 
4694
            format of NUnit assertion failure messages.
 
4695
            </summary>
 
4696
        </member>
 
4697
        <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
 
4698
            <summary>
 
4699
            Prefix used for the expected value line of a message
 
4700
            </summary>
 
4701
        </member>
 
4702
        <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
 
4703
            <summary>
 
4704
            Prefix used for the actual value line of a message
 
4705
            </summary>
 
4706
        </member>
 
4707
        <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
 
4708
            <summary>
 
4709
            Length of a message prefix
 
4710
            </summary>
 
4711
        </member>
 
4712
        <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
 
4713
            <summary>
 
4714
            Construct a TextMessageWriter
 
4715
            </summary>
 
4716
        </member>
 
4717
        <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
 
4718
            <summary>
 
4719
            Construct a TextMessageWriter, specifying a user message
 
4720
            and optional formatting arguments.
 
4721
            </summary>
 
4722
            <param name="userMessage"></param>
 
4723
            <param name="args"></param>
 
4724
        </member>
 
4725
        <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
 
4726
            <summary>
 
4727
            Method to write single line  message with optional args, usually
 
4728
            written to precede the general failure message, at a givel 
 
4729
            indentation level.
 
4730
            </summary>
 
4731
            <param name="level">The indentation level of the message</param>
 
4732
            <param name="message">The message to be written</param>
 
4733
            <param name="args">Any arguments used in formatting the message</param>
 
4734
        </member>
 
4735
        <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
 
4736
            <summary>
 
4737
            Display Expected and Actual lines for a constraint. This
 
4738
            is called by MessageWriter's default implementation of 
 
4739
            WriteMessageTo and provides the generic two-line display. 
 
4740
            </summary>
 
4741
            <param name="constraint">The constraint that failed</param>
 
4742
        </member>
 
4743
        <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
 
4744
            <summary>
 
4745
            Display Expected and Actual lines for given values. This
 
4746
            method may be called by constraints that need more control over
 
4747
            the display of actual and expected values than is provided
 
4748
            by the default implementation.
 
4749
            </summary>
 
4750
            <param name="expected">The expected value</param>
 
4751
            <param name="actual">The actual value causing the failure</param>
 
4752
        </member>
 
4753
        <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,System.Object)">
 
4754
            <summary>
 
4755
            Display Expected and Actual lines for given values, including
 
4756
            a tolerance value on the expected line.
 
4757
            </summary>
 
4758
            <param name="expected">The expected value</param>
 
4759
            <param name="actual">The actual value causing the failure</param>
 
4760
            <param name="tolerance">The tolerance within which the test was made</param>
 
4761
        </member>
 
4762
        <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean)">
 
4763
            <summary>
 
4764
            Display the expected and actual string values on separate lines.
 
4765
            If the mismatch parameter is >=0, an additional line is displayed
 
4766
            line containing a caret that points to the mismatch point.
 
4767
            </summary>
 
4768
            <param name="expected">The expected string value</param>
 
4769
            <param name="actual">The actual string value</param>
 
4770
            <param name="mismatch">The point at which the strings don't match or -1</param>
 
4771
            <param name="ignoreCase">If true, case is ignored in string comparisons</param>
 
4772
        </member>
 
4773
        <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
 
4774
            <summary>
 
4775
            Writes the text for a connector.
 
4776
            </summary>
 
4777
            <param name="connector">The connector.</param>
 
4778
        </member>
 
4779
        <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
 
4780
            <summary>
 
4781
            Writes the text for a predicate.
 
4782
            </summary>
 
4783
            <param name="predicate">The predicate.</param>
 
4784
        </member>
 
4785
        <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
 
4786
            <summary>
 
4787
            Write the text for a modifier.
 
4788
            </summary>
 
4789
            <param name="modifier">The modifier.</param>
 
4790
        </member>
 
4791
        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
 
4792
            <summary>
 
4793
            Writes the text for an expected value.
 
4794
            </summary>
 
4795
            <param name="expected">The expected value.</param>
 
4796
        </member>
 
4797
        <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
 
4798
            <summary>
 
4799
            Writes the text for an actual value.
 
4800
            </summary>
 
4801
            <param name="actual">The actual value.</param>
 
4802
        </member>
 
4803
        <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
 
4804
            <summary>
 
4805
            Writes the text for a generalized value.
 
4806
            </summary>
 
4807
            <param name="val">The value.</param>
 
4808
        </member>
 
4809
        <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
 
4810
            <summary>
 
4811
            Writes the text for a collection value,
 
4812
            starting at a particular point, to a max length
 
4813
            </summary>
 
4814
            <param name="collection">The collection containing elements to write.</param>
 
4815
            <param name="start">The starting point of the elements to write</param>
 
4816
            <param name="max">The maximum number of elements to write</param>
 
4817
        </member>
 
4818
        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
 
4819
            <summary>
 
4820
            Write the generic 'Expected' line for a constraint
 
4821
            </summary>
 
4822
            <param name="constraint">The constraint that failed</param>
 
4823
        </member>
 
4824
        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
 
4825
            <summary>
 
4826
            Write the generic 'Expected' line for a given value
 
4827
            </summary>
 
4828
            <param name="expected">The expected value</param>
 
4829
        </member>
 
4830
        <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,System.Object)">
 
4831
            <summary>
 
4832
            Write the generic 'Expected' line for a given value
 
4833
            and tolerance.
 
4834
            </summary>
 
4835
            <param name="expected">The expected value</param>
 
4836
            <param name="tolerance">The tolerance within which the test was made</param>
 
4837
        </member>
 
4838
        <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
 
4839
            <summary>
 
4840
            Write the generic 'Actual' line for a constraint
 
4841
            </summary>
 
4842
            <param name="constraint">The constraint for which the actual value is to be written</param>
 
4843
        </member>
 
4844
        <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
 
4845
            <summary>
 
4846
            Write the generic 'Actual' line for a given value
 
4847
            </summary>
 
4848
            <param name="actual">The actual value causing a failure</param>
 
4849
        </member>
 
4850
        <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
 
4851
            <summary>
 
4852
            Gets the maximum line length for this writer
 
4853
            </summary>
 
4854
        </member>
 
4855
        <member name="T:NUnit.Framework.StringAssert">
 
4856
            <summary>
 
4857
            Basic Asserts on strings.
 
4858
            </summary>
 
4859
        </member>
 
4860
        <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
 
4861
            <summary>
 
4862
            The Equals method throws an AssertionException. This is done 
 
4863
            to make sure there is no mistake by calling this function.
 
4864
            </summary>
 
4865
            <param name="a"></param>
 
4866
            <param name="b"></param>
 
4867
        </member>
 
4868
        <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
 
4869
            <summary>
 
4870
            override the default ReferenceEquals to throw an AssertionException. This 
 
4871
            implementation makes sure there is no mistake in calling this function 
 
4872
            as part of Assert. 
 
4873
            </summary>
 
4874
            <param name="a"></param>
 
4875
            <param name="b"></param>
 
4876
        </member>
 
4877
        <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
 
4878
            <summary>
 
4879
            Asserts that a string is found within another string.
 
4880
            </summary>
 
4881
            <param name="expected">The expected string</param>
 
4882
            <param name="actual">The string to be examined</param>
 
4883
            <param name="message">The message to display in case of failure</param>
 
4884
            <param name="args">Arguments used in formatting the message</param>
 
4885
        </member>
 
4886
        <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
 
4887
            <summary>
 
4888
            Asserts that a string is found within another string.
 
4889
            </summary>
 
4890
            <param name="expected">The expected string</param>
 
4891
            <param name="actual">The string to be examined</param>
 
4892
            <param name="message">The message to display in case of failure</param>
 
4893
        </member>
 
4894
        <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
 
4895
            <summary>
 
4896
            Asserts that a string is found within another string.
 
4897
            </summary>
 
4898
            <param name="expected">The expected string</param>
 
4899
            <param name="actual">The string to be examined</param>
 
4900
        </member>
 
4901
        <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
 
4902
            <summary>
 
4903
            Asserts that a string starts with another string.
 
4904
            </summary>
 
4905
            <param name="expected">The expected string</param>
 
4906
            <param name="actual">The string to be examined</param>
 
4907
            <param name="message">The message to display in case of failure</param>
 
4908
            <param name="args">Arguments used in formatting the message</param>
 
4909
        </member>
 
4910
        <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
 
4911
            <summary>
 
4912
            Asserts that a string starts with another string.
 
4913
            </summary>
 
4914
            <param name="expected">The expected string</param>
 
4915
            <param name="actual">The string to be examined</param>
 
4916
            <param name="message">The message to display in case of failure</param>
 
4917
        </member>
 
4918
        <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
 
4919
            <summary>
 
4920
            Asserts that a string starts with another string.
 
4921
            </summary>
 
4922
            <param name="expected">The expected string</param>
 
4923
            <param name="actual">The string to be examined</param>
 
4924
        </member>
 
4925
        <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
 
4926
            <summary>
 
4927
            Asserts that a string ends with another string.
 
4928
            </summary>
 
4929
            <param name="expected">The expected string</param>
 
4930
            <param name="actual">The string to be examined</param>
 
4931
            <param name="message">The message to display in case of failure</param>
 
4932
            <param name="args">Arguments used in formatting the message</param>
 
4933
        </member>
 
4934
        <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
 
4935
            <summary>
 
4936
            Asserts that a string ends with another string.
 
4937
            </summary>
 
4938
            <param name="expected">The expected string</param>
 
4939
            <param name="actual">The string to be examined</param>
 
4940
            <param name="message">The message to display in case of failure</param>
 
4941
        </member>
 
4942
        <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
 
4943
            <summary>
 
4944
            Asserts that a string ends with another string.
 
4945
            </summary>
 
4946
            <param name="expected">The expected string</param>
 
4947
            <param name="actual">The string to be examined</param>
 
4948
        </member>
 
4949
        <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
 
4950
            <summary>
 
4951
            Asserts that two strings are equal, without regard to case.
 
4952
            </summary>
 
4953
            <param name="expected">The expected string</param>
 
4954
            <param name="actual">The actual string</param>
 
4955
            <param name="message">The message to display in case of failure</param>
 
4956
            <param name="args">Arguments used in formatting the message</param>
 
4957
        </member>
 
4958
        <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
 
4959
            <summary>
 
4960
            Asserts that two strings are equal, without regard to case.
 
4961
            </summary>
 
4962
            <param name="expected">The expected string</param>
 
4963
            <param name="actual">The actual string</param>
 
4964
            <param name="message">The message to display in case of failure</param>
 
4965
        </member>
 
4966
        <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
 
4967
            <summary>
 
4968
            Asserts that two strings are equal, without regard to case.
 
4969
            </summary>
 
4970
            <param name="expected">The expected string</param>
 
4971
            <param name="actual">The actual string</param>
 
4972
        </member>
 
4973
        <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
 
4974
            <summary>
 
4975
            Asserts that a string matches an expected regular expression pattern.
 
4976
            </summary>
 
4977
            <param name="expected">The expected expression</param>
 
4978
            <param name="actual">The actual string</param>
 
4979
            <param name="message">The message to display in case of failure</param>
 
4980
            <param name="args">Arguments used in formatting the message</param>
 
4981
        </member>
 
4982
        <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
 
4983
            <summary>
 
4984
            Asserts that a string matches an expected regular expression pattern.
 
4985
            </summary>
 
4986
            <param name="expected">The expected expression</param>
 
4987
            <param name="actual">The actual string</param>
 
4988
            <param name="message">The message to display in case of failure</param>
 
4989
        </member>
 
4990
        <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
 
4991
            <summary>
 
4992
            Asserts that a string matches an expected regular expression pattern.
 
4993
            </summary>
 
4994
            <param name="expected">The expected expression</param>
 
4995
            <param name="actual">The actual string</param>
 
4996
        </member>
 
4997
        <member name="T:NUnit.Framework.MsgUtils">
 
4998
            <summary>
 
4999
            Static methods used in creating messages
 
5000
            </summary>
 
5001
        </member>
 
5002
        <member name="M:NUnit.Framework.MsgUtils.GetTypeRepresentation(System.Object)">
 
5003
            <summary>
 
5004
            Returns the representation of a type as used in NUnitLite.
 
5005
            This is the same as Type.ToString() except for arrays,
 
5006
            which are displayed with their declared sizes.
 
5007
            </summary>
 
5008
            <param name="obj"></param>
 
5009
            <returns></returns>
 
5010
        </member>
 
5011
        <member name="M:NUnit.Framework.MsgUtils.ConvertWhitespace(System.String)">
 
5012
            <summary>
 
5013
            Converts any control characters in a string 
 
5014
            to their escaped representation.
 
5015
            </summary>
 
5016
            <param name="s">The string to be converted</param>
 
5017
            <returns>The converted string</returns>
 
5018
        </member>
 
5019
        <member name="M:NUnit.Framework.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
 
5020
            <summary>
 
5021
            Return the a string representation for a set of indices into an array
 
5022
            </summary>
 
5023
            <param name="indices">Array of indices for which a string is needed</param>
 
5024
        </member>
 
5025
        <member name="M:NUnit.Framework.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
 
5026
            <summary>
 
5027
            Get an array of indices representing the point in a collection or
 
5028
            array corresponding to a single int index into the collection.
 
5029
            </summary>
 
5030
            <param name="collection">The collection to which the indices apply</param>
 
5031
            <param name="index">Index in the collection</param>
 
5032
            <returns>Array of indices</returns>
 
5033
        </member>
 
5034
        <member name="M:NUnit.Framework.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
 
5035
            <summary>
 
5036
            Clip a string around a particular point, returning the clipped
 
5037
            string with ellipses representing the removed parts
 
5038
            </summary>
 
5039
            <param name="s">The string to be clipped</param>
 
5040
            <param name="maxStringLength">The maximum permitted length of the result string</param>
 
5041
            <param name="mismatch">The point around which clipping is to occur</param>
 
5042
            <returns>The clipped string</returns>
 
5043
        </member>
 
5044
        <member name="M:NUnit.Framework.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
 
5045
            <summary>
 
5046
            Shows the position two strings start to differ.  Comparison 
 
5047
            starts at the start index.
 
5048
            </summary>
 
5049
            <param name="expected">The expected string</param>
 
5050
            <param name="actual">The actual string</param>
 
5051
            <param name="istart">The index in the strings at which comparison should start</param>
 
5052
            <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
 
5053
            <returns>-1 if no mismatch found, or the index where mismatch found</returns>
 
5054
        </member>
 
5055
        <member name="T:NUnit.Framework.AssertionHelper">
 
5056
            <summary>
 
5057
            AssertionHelper is an optional base class for user tests,
 
5058
            allowing the use of shorter names for constraints and
 
5059
            asserts and avoiding conflict with the definition of 
 
5060
            <see cref="T:NUnit.Framework.SyntaxHelpers.Is"/>, from which it inherits much of its
 
5061
            behavior, in certain mock object frameworks.
 
5062
            </summary>
 
5063
        </member>
 
5064
        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.Constraint)">
 
5065
            <summary>
 
5066
            Apply a constraint to an actual value, succeeding if the constraint
 
5067
            is satisfied and throwing an assertion exception on failure. Works
 
5068
            identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint)"/>
 
5069
            </summary>
 
5070
            <param name="constraint">A Constraint to be applied</param>
 
5071
            <param name="actual">The actual value to test</param>
 
5072
        </member>
 
5073
        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.Constraint,System.String)">
 
5074
            <summary>
 
5075
            Apply a constraint to an actual value, succeeding if the constraint
 
5076
            is satisfied and throwing an assertion exception on failure. Works
 
5077
            identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String)"/>
 
5078
            </summary>
 
5079
            <param name="constraint">A Constraint to be applied</param>
 
5080
            <param name="actual">The actual value to test</param>
 
5081
            <param name="message">The message that will be displayed on failure</param>
 
5082
        </member>
 
5083
        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.Constraint,System.String,System.Object[])">
 
5084
            <summary>
 
5085
            Apply a constraint to an actual value, succeeding if the constraint
 
5086
            is satisfied and throwing an assertion exception on failure. Works
 
5087
            identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.Constraint,System.String,System.Object[])"/>
 
5088
            </summary>
 
5089
            <param name="constraint">A Constraint to be applied</param>
 
5090
            <param name="actual">The actual value to test</param>
 
5091
            <param name="message">The message that will be displayed on failure</param>
 
5092
            <param name="args">Arguments to be used in formatting the message</param>
 
5093
        </member>
 
5094
        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
 
5095
            <summary>
 
5096
            Asserts that a condition is true. If the condition is false the method throws
 
5097
            an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to 
 
5098
            <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
 
5099
            </summary> 
 
5100
            <param name="condition">The evaluated condition</param>
 
5101
            <param name="message">The message to display if the condition is false</param>
 
5102
            <param name="args">Arguments to be used in formatting the message</param>
 
5103
        </member>
 
5104
        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
 
5105
            <summary>
 
5106
            Asserts that a condition is true. If the condition is false the method throws
 
5107
            an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to 
 
5108
            <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
 
5109
            </summary>
 
5110
            <param name="condition">The evaluated condition</param>
 
5111
            <param name="message">The message to display if the condition is false</param>
 
5112
        </member>
 
5113
        <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
 
5114
            <summary>
 
5115
            Asserts that a condition is true. If the condition is false the method throws
 
5116
            an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
 
5117
            </summary>
 
5118
            <param name="condition">The evaluated condition</param>
 
5119
        </member>
 
5120
        <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
 
5121
            <summary>
 
5122
            Returns a ListMapper based on a collection.
 
5123
            </summary>
 
5124
            <param name="original">The original collection</param>
 
5125
            <returns></returns>
 
5126
        </member>
 
5127
        <member name="T:NUnit.Framework.FileAssert">
 
5128
            <summary>
 
5129
            Summary description for FileAssert.
 
5130
            </summary>
 
5131
        </member>
 
5132
        <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
 
5133
            <summary>
 
5134
            The Equals method throws an AssertionException. This is done 
 
5135
            to make sure there is no mistake by calling this function.
 
5136
            </summary>
 
5137
            <param name="a"></param>
 
5138
            <param name="b"></param>
 
5139
        </member>
 
5140
        <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
 
5141
            <summary>
 
5142
            override the default ReferenceEquals to throw an AssertionException. This 
 
5143
            implementation makes sure there is no mistake in calling this function 
 
5144
            as part of Assert. 
 
5145
            </summary>
 
5146
            <param name="a"></param>
 
5147
            <param name="b"></param>
 
5148
        </member>
 
5149
        <member name="M:NUnit.Framework.FileAssert.#ctor">
 
5150
            <summary>
 
5151
            We don't actually want any instances of this object, but some people
 
5152
            like to inherit from it to add other static methods. Hence, the
 
5153
            protected constructor disallows any instances of this object. 
 
5154
            </summary>
 
5155
        </member>
 
5156
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
 
5157
            <summary>
 
5158
            Verifies that two Streams are equal.  Two Streams are considered
 
5159
            equal if both are null, or if both have the same value byte for byte.
 
5160
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5161
            </summary>
 
5162
            <param name="expected">The expected Stream</param>
 
5163
            <param name="actual">The actual Stream</param>
 
5164
            <param name="message">The message to display if Streams are not equal</param>
 
5165
            <param name="args">Arguments to be used in formatting the message</param>
 
5166
        </member>
 
5167
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
 
5168
            <summary>
 
5169
            Verifies that two Streams are equal.  Two Streams are considered
 
5170
            equal if both are null, or if both have the same value byte for byte.
 
5171
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5172
            </summary>
 
5173
            <param name="expected">The expected Stream</param>
 
5174
            <param name="actual">The actual Stream</param>
 
5175
            <param name="message">The message to display if objects are not equal</param>
 
5176
        </member>
 
5177
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
 
5178
            <summary>
 
5179
            Verifies that two Streams are equal.  Two Streams are considered
 
5180
            equal if both are null, or if both have the same value byte for byte.
 
5181
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5182
            </summary>
 
5183
            <param name="expected">The expected Stream</param>
 
5184
            <param name="actual">The actual Stream</param>
 
5185
        </member>
 
5186
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
 
5187
            <summary>
 
5188
            Verifies that two files are equal.  Two files are considered
 
5189
            equal if both are null, or if both have the same value byte for byte.
 
5190
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5191
            </summary>
 
5192
            <param name="expected">A file containing the value that is expected</param>
 
5193
            <param name="actual">A file containing the actual value</param>
 
5194
            <param name="message">The message to display if Streams are not equal</param>
 
5195
            <param name="args">Arguments to be used in formatting the message</param>
 
5196
        </member>
 
5197
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
 
5198
            <summary>
 
5199
            Verifies that two files are equal.  Two files are considered
 
5200
            equal if both are null, or if both have the same value byte for byte.
 
5201
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5202
            </summary>
 
5203
            <param name="expected">A file containing the value that is expected</param>
 
5204
            <param name="actual">A file containing the actual value</param>
 
5205
            <param name="message">The message to display if objects are not equal</param>
 
5206
        </member>
 
5207
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
 
5208
            <summary>
 
5209
            Verifies that two files are equal.  Two files are considered
 
5210
            equal if both are null, or if both have the same value byte for byte.
 
5211
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5212
            </summary>
 
5213
            <param name="expected">A file containing the value that is expected</param>
 
5214
            <param name="actual">A file containing the actual value</param>
 
5215
        </member>
 
5216
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
 
5217
            <summary>
 
5218
            Verifies that two files are equal.  Two files are considered
 
5219
            equal if both are null, or if both have the same value byte for byte.
 
5220
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5221
            </summary>
 
5222
            <param name="expected">The path to a file containing the value that is expected</param>
 
5223
            <param name="actual">The path to a file containing the actual value</param>
 
5224
            <param name="message">The message to display if Streams are not equal</param>
 
5225
            <param name="args">Arguments to be used in formatting the message</param>
 
5226
        </member>
 
5227
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
 
5228
            <summary>
 
5229
            Verifies that two files are equal.  Two files are considered
 
5230
            equal if both are null, or if both have the same value byte for byte.
 
5231
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5232
            </summary>
 
5233
            <param name="expected">The path to a file containing the value that is expected</param>
 
5234
            <param name="actual">The path to a file containing the actual value</param>
 
5235
            <param name="message">The message to display if objects are not equal</param>
 
5236
        </member>
 
5237
        <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
 
5238
            <summary>
 
5239
            Verifies that two files are equal.  Two files are considered
 
5240
            equal if both are null, or if both have the same value byte for byte.
 
5241
            If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5242
            </summary>
 
5243
            <param name="expected">The path to a file containing the value that is expected</param>
 
5244
            <param name="actual">The path to a file containing the actual value</param>
 
5245
        </member>
 
5246
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
 
5247
            <summary>
 
5248
            Asserts that two Streams are not equal. If they are equal
 
5249
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5250
            </summary>
 
5251
            <param name="expected">The expected Stream</param>
 
5252
            <param name="actual">The actual Stream</param>
 
5253
            <param name="message">The message to be displayed when the two Stream are the same.</param>
 
5254
            <param name="args">Arguments to be used in formatting the message</param>
 
5255
        </member>
 
5256
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
 
5257
            <summary>
 
5258
            Asserts that two Streams are not equal. If they are equal
 
5259
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5260
            </summary>
 
5261
            <param name="expected">The expected Stream</param>
 
5262
            <param name="actual">The actual Stream</param>
 
5263
            <param name="message">The message to be displayed when the Streams are the same.</param>
 
5264
        </member>
 
5265
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
 
5266
            <summary>
 
5267
            Asserts that two Streams are not equal. If they are equal
 
5268
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5269
            </summary>
 
5270
            <param name="expected">The expected Stream</param>
 
5271
            <param name="actual">The actual Stream</param>
 
5272
        </member>
 
5273
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
 
5274
            <summary>
 
5275
            Asserts that two files are not equal. If they are equal
 
5276
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5277
            </summary>
 
5278
            <param name="expected">A file containing the value that is expected</param>
 
5279
            <param name="actual">A file containing the actual value</param>
 
5280
            <param name="message">The message to display if Streams are not equal</param>
 
5281
            <param name="args">Arguments to be used in formatting the message</param>
 
5282
        </member>
 
5283
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
 
5284
            <summary>
 
5285
            Asserts that two files are not equal. If they are equal
 
5286
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5287
            </summary>
 
5288
            <param name="expected">A file containing the value that is expected</param>
 
5289
            <param name="actual">A file containing the actual value</param>
 
5290
            <param name="message">The message to display if objects are not equal</param>
 
5291
        </member>
 
5292
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
 
5293
            <summary>
 
5294
            Asserts that two files are not equal. If they are equal
 
5295
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5296
            </summary>
 
5297
            <param name="expected">A file containing the value that is expected</param>
 
5298
            <param name="actual">A file containing the actual value</param>
 
5299
        </member>
 
5300
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
 
5301
            <summary>
 
5302
            Asserts that two files are not equal. If they are equal
 
5303
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5304
            </summary>
 
5305
            <param name="expected">The path to a file containing the value that is expected</param>
 
5306
            <param name="actual">The path to a file containing the actual value</param>
 
5307
            <param name="message">The message to display if Streams are not equal</param>
 
5308
            <param name="args">Arguments to be used in formatting the message</param>
 
5309
        </member>
 
5310
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
 
5311
            <summary>
 
5312
            Asserts that two files are not equal. If they are equal
 
5313
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5314
            </summary>
 
5315
            <param name="expected">The path to a file containing the value that is expected</param>
 
5316
            <param name="actual">The path to a file containing the actual value</param>
 
5317
            <param name="message">The message to display if objects are not equal</param>
 
5318
        </member>
 
5319
        <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
 
5320
            <summary>
 
5321
            Asserts that two files are not equal. If they are equal
 
5322
            an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
 
5323
            </summary>
 
5324
            <param name="expected">The path to a file containing the value that is expected</param>
 
5325
            <param name="actual">The path to a file containing the actual value</param>
 
5326
        </member>
 
5327
        <member name="T:NUnit.Framework.IgnoreException">
 
5328
            <summary>
 
5329
            Thrown when an assertion failed.
 
5330
            </summary>
 
5331
        </member>
 
5332
        <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
 
5333
            <param name="message"></param>
 
5334
        </member>
 
5335
        <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
 
5336
            <param name="message">The error message that explains 
 
5337
            the reason for the exception</param>
 
5338
            <param name="inner">The exception that caused the 
 
5339
            current exception</param>
 
5340
        </member>
 
5341
        <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
 
5342
            <summary>
 
5343
            Serialization Constructor
 
5344
            </summary>
 
5345
        </member>
 
5346
        <member name="T:NUnit.Framework.TestCase">
 
5347
            <summary>
 
5348
            Obsolete class, formerly used to identify tests through
 
5349
            inheritance. Avoid using this class for new tests.
 
5350
            </summary>
 
5351
        </member>
 
5352
        <member name="M:NUnit.Framework.TestCase.SetUp">
 
5353
            <summary>
 
5354
            Method called immediately before running the test.
 
5355
            </summary>
 
5356
        </member>
 
5357
        <member name="M:NUnit.Framework.TestCase.TearDown">
 
5358
            <summary>
 
5359
            Method Called immediately after running the test. It is
 
5360
            guaranteed to be called, even if an exception is thrown. 
 
5361
            </summary>
 
5362
        </member>
 
5363
        <member name="T:NUnit.Framework.SetUpAttribute">
 
5364
            <summary>
 
5365
            Attribute used to mark a class that contains one-time SetUp 
 
5366
            and/or TearDown methods that apply to all the tests in a
 
5367
            namespace or an assembly.
 
5368
            </summary>
 
5369
        </member>
 
5370
        <member name="T:NUnit.Framework.SetUpFixtureAttribute">
 
5371
            <summary>
 
5372
            SetUpFixtureAttribute is used to identify a SetUpFixture
 
5373
            </summary>
 
5374
        </member>
 
5375
        <member name="T:NUnit.Framework.SuiteAttribute">
 
5376
            <summary>
 
5377
            Attribute used to mark a static (shared in VB) property
 
5378
            that returns a list of tests.
 
5379
            </summary>
 
5380
        </member>
 
5381
        <member name="T:NUnit.Framework.TearDownAttribute">
 
5382
            <summary>
 
5383
            Attribute used to identify a method that is called 
 
5384
            immediately after each test is run. The method is 
 
5385
            guaranteed to be called, even if an exception is thrown.
 
5386
            </summary>
 
5387
        </member>
 
5388
        <member name="T:NUnit.Framework.TestAttribute">
 
5389
            <summary>
 
5390
            Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/> 
 
5391
            class makes the method callable from the NUnit test runner. There is a property 
 
5392
            called Description which is optional which you can provide a more detailed test
 
5393
            description. This class cannot be inherited.
 
5394
            </summary>
 
5395
            
 
5396
            <example>
 
5397
            [TestFixture]
 
5398
            public class Fixture
 
5399
            {
 
5400
              [Test]
 
5401
              public void MethodToTest()
 
5402
              {}
 
5403
              
 
5404
              [Test(Description = "more detailed description")]
 
5405
              publc void TestDescriptionMethod()
 
5406
              {}
 
5407
            }
 
5408
            </example>
 
5409
            
 
5410
        </member>
 
5411
        <member name="P:NUnit.Framework.TestAttribute.Description">
 
5412
            <summary>
 
5413
            Descriptive text for this test
 
5414
            </summary>
 
5415
        </member>
 
5416
        <member name="T:NUnit.Framework.TestFixtureAttribute">
 
5417
            <example>
 
5418
            [TestFixture]
 
5419
            public class ExampleClass 
 
5420
            {}
 
5421
            </example>
 
5422
        </member>
 
5423
        <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
 
5424
            <summary>
 
5425
            Descriptive text for this fixture
 
5426
            </summary>
 
5427
        </member>
 
5428
        <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
 
5429
            <summary>
 
5430
            Attribute used to identify a method that is 
 
5431
            called before any tests in a fixture are run.
 
5432
            </summary>
 
5433
        </member>
 
5434
        <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
 
5435
            <summary>
 
5436
            Attribute used to identify a method that is called after
 
5437
            all the tests in a fixture have run. The method is 
 
5438
            guaranteed to be called, even if an exception is thrown.
 
5439
            </summary>
 
5440
        </member>
 
5441
        <member name="T:NUnit.Framework.IgnoreAttribute">
 
5442
            <summary>
 
5443
            Attribute used to mark a test that is to be ignored.
 
5444
            Ignored tests result in a warning message when the
 
5445
            tests are run.
 
5446
            </summary>
 
5447
        </member>
 
5448
        <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
 
5449
            <summary>
 
5450
            Constructs the attribute without giving a reason 
 
5451
            for ignoring the test.
 
5452
            </summary>
 
5453
        </member>
 
5454
        <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
 
5455
            <summary>
 
5456
            Constructs the attribute giving a reason for ignoring the test
 
5457
            </summary>
 
5458
            <param name="reason">The reason for ignoring the test</param>
 
5459
        </member>
 
5460
        <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
 
5461
            <summary>
 
5462
            The reason for ignoring a test
 
5463
            </summary>
 
5464
        </member>
 
5465
        <member name="T:NUnit.Framework.ExplicitAttribute">
 
5466
            <summary>
 
5467
            ExplicitAttribute marks a test or test fixture so that it will
 
5468
            only be run if explicitly executed from the gui or command line
 
5469
            or if it is included by use of a filter. The test will not be
 
5470
            run simply because an enclosing suite is run.
 
5471
            </summary>
 
5472
        </member>
 
5473
        <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
 
5474
            <summary>
 
5475
            Default constructor
 
5476
            </summary>
 
5477
        </member>
 
5478
        <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
 
5479
            <summary>
 
5480
            Constructor with a reason
 
5481
            </summary>
 
5482
            <param name="reason">The reason test is marked explicit</param>
 
5483
        </member>
 
5484
        <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
 
5485
            <summary>
 
5486
            The reason test is marked explicit
 
5487
            </summary>
 
5488
        </member>
 
5489
        <member name="T:NUnit.Framework.DescriptionAttribute">
 
5490
            <summary>
 
5491
            Attribute used to provide descriptive text about a 
 
5492
            test case or fixture.
 
5493
            </summary>
 
5494
        </member>
 
5495
        <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
 
5496
            <summary>
 
5497
            Construct the attribute
 
5498
            </summary>
 
5499
            <param name="description">Text describing the test</param>
 
5500
        </member>
 
5501
        <member name="P:NUnit.Framework.DescriptionAttribute.Description">
 
5502
            <summary>
 
5503
            Gets the test description
 
5504
            </summary>
 
5505
        </member>
 
5506
        <member name="T:NUnit.Framework.IExpectException">
 
5507
            <summary>
 
5508
            Interface implemented by a user fixture in order to
 
5509
            validate any expected exceptions. It is only called
 
5510
            for test methods marked with the ExpectedException
 
5511
            attribute.
 
5512
            </summary>
 
5513
        </member>
 
5514
        <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
 
5515
            <summary>
 
5516
            Method to handle an expected exception
 
5517
            </summary>
 
5518
            <param name="ex">The exception to be handled</param>
 
5519
        </member>
 
5520
    </members>
 
5521
</doc>