comparison packages/NUnit.2.6.3/lib/nunit.framework.xml @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
1 <?xml version="1.0"?>
2 <doc>
3 <assembly>
4 <name>nunit.framework</name>
5 </assembly>
6 <members>
7 <member name="T:NUnit.Framework.ActionTargets">
8 <summary>
9 The different targets a test action attribute can be applied to
10 </summary>
11 </member>
12 <member name="F:NUnit.Framework.ActionTargets.Default">
13 <summary>
14 Default target, which is determined by where the action attribute is attached
15 </summary>
16 </member>
17 <member name="F:NUnit.Framework.ActionTargets.Test">
18 <summary>
19 Target a individual test case
20 </summary>
21 </member>
22 <member name="F:NUnit.Framework.ActionTargets.Suite">
23 <summary>
24 Target a suite of test cases
25 </summary>
26 </member>
27 <member name="T:NUnit.Framework.TestDelegate">
28 <summary>
29 Delegate used by tests that execute code and
30 capture any thrown exception.
31 </summary>
32 </member>
33 <member name="T:NUnit.Framework.Assert">
34 <summary>
35 The Assert class contains a collection of static methods that
36 implement the most common assertions used in NUnit.
37 </summary>
38 </member>
39 <member name="M:NUnit.Framework.Assert.#ctor">
40 <summary>
41 We don't actually want any instances of this object, but some people
42 like to inherit from it to add other static methods. Hence, the
43 protected constructor disallows any instances of this object.
44 </summary>
45 </member>
46 <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
47 <summary>
48 The Equals method throws an AssertionException. This is done
49 to make sure there is no mistake by calling this function.
50 </summary>
51 <param name="a"></param>
52 <param name="b"></param>
53 </member>
54 <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
55 <summary>
56 override the default ReferenceEquals to throw an AssertionException. This
57 implementation makes sure there is no mistake in calling this function
58 as part of Assert.
59 </summary>
60 <param name="a"></param>
61 <param name="b"></param>
62 </member>
63 <member name="M:NUnit.Framework.Assert.Pass(System.String,System.Object[])">
64 <summary>
65 Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
66 that are passed in. This allows a test to be cut short, with a result
67 of success returned to NUnit.
68 </summary>
69 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
70 <param name="args">Arguments to be used in formatting the message</param>
71 </member>
72 <member name="M:NUnit.Framework.Assert.Pass(System.String)">
73 <summary>
74 Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
75 that are passed in. This allows a test to be cut short, with a result
76 of success returned to NUnit.
77 </summary>
78 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
79 </member>
80 <member name="M:NUnit.Framework.Assert.Pass">
81 <summary>
82 Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
83 that are passed in. This allows a test to be cut short, with a result
84 of success returned to NUnit.
85 </summary>
86 </member>
87 <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
88 <summary>
89 Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
90 that are passed in. This is used by the other Assert functions.
91 </summary>
92 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
93 <param name="args">Arguments to be used in formatting the message</param>
94 </member>
95 <member name="M:NUnit.Framework.Assert.Fail(System.String)">
96 <summary>
97 Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
98 passed in. This is used by the other Assert functions.
99 </summary>
100 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
101 </member>
102 <member name="M:NUnit.Framework.Assert.Fail">
103 <summary>
104 Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
105 This is used by the other Assert functions.
106 </summary>
107 </member>
108 <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
109 <summary>
110 Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
111 that are passed in. This causes the test to be reported as ignored.
112 </summary>
113 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
114 <param name="args">Arguments to be used in formatting the message</param>
115 </member>
116 <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
117 <summary>
118 Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
119 passed in. This causes the test to be reported as ignored.
120 </summary>
121 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
122 </member>
123 <member name="M:NUnit.Framework.Assert.Ignore">
124 <summary>
125 Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
126 This causes the test to be reported as ignored.
127 </summary>
128 </member>
129 <member name="M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
130 <summary>
131 Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message and arguments
132 that are passed in. This causes the test to be reported as inconclusive.
133 </summary>
134 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
135 <param name="args">Arguments to be used in formatting the message</param>
136 </member>
137 <member name="M:NUnit.Framework.Assert.Inconclusive(System.String)">
138 <summary>
139 Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message that is
140 passed in. This causes the test to be reported as inconclusive.
141 </summary>
142 <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
143 </member>
144 <member name="M:NUnit.Framework.Assert.Inconclusive">
145 <summary>
146 Throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
147 This causes the test to be reported as Inconclusive.
148 </summary>
149 </member>
150 <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
151 <summary>
152 Apply a constraint to an actual value, succeeding if the constraint
153 is satisfied and throwing an assertion exception on failure.
154 </summary>
155 <param name="actual">The actual value to test</param>
156 <param name="expression">A Constraint to be applied</param>
157 </member>
158 <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
159 <summary>
160 Apply a constraint to an actual value, succeeding if the constraint
161 is satisfied and throwing an assertion exception on failure.
162 </summary>
163 <param name="actual">The actual value to test</param>
164 <param name="expression">A Constraint to be applied</param>
165 <param name="message">The message that will be displayed on failure</param>
166 </member>
167 <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
168 <summary>
169 Apply a constraint to an actual value, succeeding if the constraint
170 is satisfied and throwing an assertion exception on failure.
171 </summary>
172 <param name="actual">The actual value to test</param>
173 <param name="expression">A Constraint expression to be applied</param>
174 <param name="message">The message that will be displayed on failure</param>
175 <param name="args">Arguments to be used in formatting the message</param>
176 </member>
177 <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
178 <summary>
179 Asserts that a condition is true. If the condition is false the method throws
180 an <see cref="T:NUnit.Framework.AssertionException"/>.
181 </summary>
182 <param name="condition">The evaluated condition</param>
183 <param name="message">The message to display if the condition is false</param>
184 <param name="args">Arguments to be used in formatting the message</param>
185 </member>
186 <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
187 <summary>
188 Asserts that a condition is true. If the condition is false the method throws
189 an <see cref="T:NUnit.Framework.AssertionException"/>.
190 </summary>
191 <param name="condition">The evaluated condition</param>
192 <param name="message">The message to display if the condition is false</param>
193 </member>
194 <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
195 <summary>
196 Asserts that a condition is true. If the condition is false the method throws
197 an <see cref="T:NUnit.Framework.AssertionException"/>.
198 </summary>
199 <param name="condition">The evaluated condition</param>
200 </member>
201 <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
202 <summary>
203 Apply a constraint to an actual value, succeeding if the constraint
204 is satisfied and throwing an assertion exception on failure.
205 </summary>
206 <param name="del">An ActualValueDelegate returning the value to be tested</param>
207 <param name="expr">A Constraint expression to be applied</param>
208 </member>
209 <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
210 <summary>
211 Apply a constraint to an actual value, succeeding if the constraint
212 is satisfied and throwing an assertion exception on failure.
213 </summary>
214 <param name="del">An ActualValueDelegate returning the value to be tested</param>
215 <param name="expr">A Constraint expression to be applied</param>
216 <param name="message">The message that will be displayed on failure</param>
217 </member>
218 <member name="M:NUnit.Framework.Assert.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
219 <summary>
220 Apply a constraint to an actual value, succeeding if the constraint
221 is satisfied and throwing an assertion exception on failure.
222 </summary>
223 <param name="del">An ActualValueDelegate returning the value to be tested</param>
224 <param name="expr">A Constraint expression to be applied</param>
225 <param name="message">The message that will be displayed on failure</param>
226 <param name="args">Arguments to be used in formatting the message</param>
227 </member>
228 <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
229 <summary>
230 Apply a constraint to a referenced value, succeeding if the constraint
231 is satisfied and throwing an assertion exception on failure.
232 </summary>
233 <param name="actual">The actual value to test</param>
234 <param name="expression">A Constraint to be applied</param>
235 </member>
236 <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
237 <summary>
238 Apply a constraint to a referenced value, succeeding if the constraint
239 is satisfied and throwing an assertion exception on failure.
240 </summary>
241 <param name="actual">The actual value to test</param>
242 <param name="expression">A Constraint to be applied</param>
243 <param name="message">The message that will be displayed on failure</param>
244 </member>
245 <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
246 <summary>
247 Apply a constraint to a referenced value, succeeding if the constraint
248 is satisfied and throwing an assertion exception on failure.
249 </summary>
250 <param name="actual">The actual value to test</param>
251 <param name="expression">A Constraint to be applied</param>
252 <param name="message">The message that will be displayed on failure</param>
253 <param name="args">Arguments to be used in formatting the message</param>
254 </member>
255 <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
256 <summary>
257 Asserts that the code represented by a delegate throws an exception
258 that satisfies the constraint provided.
259 </summary>
260 <param name="code">A TestDelegate to be executed</param>
261 <param name="constraint">A ThrowsConstraint used in the test</param>
262 </member>
263 <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
264 <summary>
265 Apply a constraint to an actual value, succeeding if the constraint
266 is satisfied and throwing an assertion exception on failure.
267 Used as a synonym for That in rare cases where a private setter
268 causes a Visual Basic compilation error.
269 </summary>
270 <param name="actual">The actual value to test</param>
271 <param name="expression">A Constraint to be applied</param>
272 </member>
273 <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
274 <summary>
275 Apply a constraint to an actual value, succeeding if the constraint
276 is satisfied and throwing an assertion exception on failure.
277 Used as a synonym for That in rare cases where a private setter
278 causes a Visual Basic compilation error.
279 </summary>
280 <param name="actual">The actual value to test</param>
281 <param name="expression">A Constraint to be applied</param>
282 <param name="message">The message that will be displayed on failure</param>
283 </member>
284 <member name="M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
285 <summary>
286 Apply a constraint to an actual value, succeeding if the constraint
287 is satisfied and throwing an assertion exception on failure.
288 Used as a synonym for That in rare cases where a private setter
289 causes a Visual Basic compilation error.
290 </summary>
291 <remarks>
292 This method is provided for use by VB developers needing to test
293 the value of properties with private setters.
294 </remarks>
295 <param name="actual">The actual value to test</param>
296 <param name="expression">A Constraint expression to be applied</param>
297 <param name="message">The message that will be displayed on failure</param>
298 <param name="args">Arguments to be used in formatting the message</param>
299 </member>
300 <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])">
301 <summary>
302 Verifies that a delegate throws a particular exception when called.
303 </summary>
304 <param name="expression">A constraint to be satisfied by the exception</param>
305 <param name="code">A TestDelegate</param>
306 <param name="message">The message that will be displayed on failure</param>
307 <param name="args">Arguments to be used in formatting the message</param>
308 </member>
309 <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)">
310 <summary>
311 Verifies that a delegate throws a particular exception when called.
312 </summary>
313 <param name="expression">A constraint to be satisfied by the exception</param>
314 <param name="code">A TestDelegate</param>
315 <param name="message">The message that will be displayed on failure</param>
316 </member>
317 <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)">
318 <summary>
319 Verifies that a delegate throws a particular exception when called.
320 </summary>
321 <param name="expression">A constraint to be satisfied by the exception</param>
322 <param name="code">A TestDelegate</param>
323 </member>
324 <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
325 <summary>
326 Verifies that a delegate throws a particular exception when called.
327 </summary>
328 <param name="expectedExceptionType">The exception Type expected</param>
329 <param name="code">A TestDelegate</param>
330 <param name="message">The message that will be displayed on failure</param>
331 <param name="args">Arguments to be used in formatting the message</param>
332 </member>
333 <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)">
334 <summary>
335 Verifies that a delegate throws a particular exception when called.
336 </summary>
337 <param name="expectedExceptionType">The exception Type expected</param>
338 <param name="code">A TestDelegate</param>
339 <param name="message">The message that will be displayed on failure</param>
340 </member>
341 <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)">
342 <summary>
343 Verifies that a delegate throws a particular exception when called.
344 </summary>
345 <param name="expectedExceptionType">The exception Type expected</param>
346 <param name="code">A TestDelegate</param>
347 </member>
348 <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
349 <summary>
350 Verifies that a delegate throws a particular exception when called.
351 </summary>
352 <typeparam name="T">Type of the expected exception</typeparam>
353 <param name="code">A TestDelegate</param>
354 <param name="message">The message that will be displayed on failure</param>
355 <param name="args">Arguments to be used in formatting the message</param>
356 </member>
357 <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)">
358 <summary>
359 Verifies that a delegate throws a particular exception when called.
360 </summary>
361 <typeparam name="T">Type of the expected exception</typeparam>
362 <param name="code">A TestDelegate</param>
363 <param name="message">The message that will be displayed on failure</param>
364 </member>
365 <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)">
366 <summary>
367 Verifies that a delegate throws a particular exception when called.
368 </summary>
369 <typeparam name="T">Type of the expected exception</typeparam>
370 <param name="code">A TestDelegate</param>
371 </member>
372 <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])">
373 <summary>
374 Verifies that a delegate throws an exception when called
375 and returns it.
376 </summary>
377 <param name="code">A TestDelegate</param>
378 <param name="message">The message that will be displayed on failure</param>
379 <param name="args">Arguments to be used in formatting the message</param>
380 </member>
381 <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String)">
382 <summary>
383 Verifies that a delegate throws an exception when called
384 and returns it.
385 </summary>
386 <param name="code">A TestDelegate</param>
387 <param name="message">The message that will be displayed on failure</param>
388 </member>
389 <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)">
390 <summary>
391 Verifies that a delegate throws an exception when called
392 and returns it.
393 </summary>
394 <param name="code">A TestDelegate</param>
395 </member>
396 <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
397 <summary>
398 Verifies that a delegate throws an exception of a certain Type
399 or one derived from it when called and returns it.
400 </summary>
401 <param name="expectedExceptionType">The expected Exception Type</param>
402 <param name="code">A TestDelegate</param>
403 <param name="message">The message that will be displayed on failure</param>
404 <param name="args">Arguments to be used in formatting the message</param>
405 </member>
406 <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)">
407 <summary>
408 Verifies that a delegate throws an exception of a certain Type
409 or one derived from it when called and returns it.
410 </summary>
411 <param name="expectedExceptionType">The expected Exception Type</param>
412 <param name="code">A TestDelegate</param>
413 <param name="message">The message that will be displayed on failure</param>
414 </member>
415 <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)">
416 <summary>
417 Verifies that a delegate throws an exception of a certain Type
418 or one derived from it when called and returns it.
419 </summary>
420 <param name="expectedExceptionType">The expected Exception Type</param>
421 <param name="code">A TestDelegate</param>
422 </member>
423 <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
424 <summary>
425 Verifies that a delegate throws an exception of a certain Type
426 or one derived from it when called and returns it.
427 </summary>
428 <typeparam name="T">The expected Exception Type</typeparam>
429 <param name="code">A TestDelegate</param>
430 <param name="message">The message that will be displayed on failure</param>
431 <param name="args">Arguments to be used in formatting the message</param>
432 </member>
433 <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)">
434 <summary>
435 Verifies that a delegate throws an exception of a certain Type
436 or one derived from it when called and returns it.
437 </summary>
438 <typeparam name="T">The expected Exception Type</typeparam>
439 <param name="code">A TestDelegate</param>
440 <param name="message">The message that will be displayed on failure</param>
441 </member>
442 <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)">
443 <summary>
444 Verifies that a delegate throws an exception of a certain Type
445 or one derived from it when called and returns it.
446 </summary>
447 <typeparam name="T">The expected Exception Type</typeparam>
448 <param name="code">A TestDelegate</param>
449 </member>
450 <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])">
451 <summary>
452 Verifies that a delegate does not throw an exception
453 </summary>
454 <param name="code">A TestDelegate</param>
455 <param name="message">The message that will be displayed on failure</param>
456 <param name="args">Arguments to be used in formatting the message</param>
457 </member>
458 <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)">
459 <summary>
460 Verifies that a delegate does not throw an exception.
461 </summary>
462 <param name="code">A TestDelegate</param>
463 <param name="message">The message that will be displayed on failure</param>
464 </member>
465 <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)">
466 <summary>
467 Verifies that a delegate does not throw an exception.
468 </summary>
469 <param name="code">A TestDelegate</param>
470 </member>
471 <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])">
472 <summary>
473 Asserts that a condition is true. If the condition is false the method throws
474 an <see cref="T:NUnit.Framework.AssertionException"/>.
475 </summary>
476 <param name="condition">The evaluated condition</param>
477 <param name="message">The message to display in case of failure</param>
478 <param name="args">Array of objects to be used in formatting the message</param>
479 </member>
480 <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String)">
481 <summary>
482 Asserts that a condition is true. If the condition is false the method throws
483 an <see cref="T:NUnit.Framework.AssertionException"/>.
484 </summary>
485 <param name="condition">The evaluated condition</param>
486 <param name="message">The message to display in case of failure</param>
487 </member>
488 <member name="M:NUnit.Framework.Assert.True(System.Boolean)">
489 <summary>
490 Asserts that a condition is true. If the condition is false the method throws
491 an <see cref="T:NUnit.Framework.AssertionException"/>.
492 </summary>
493 <param name="condition">The evaluated condition</param>
494 </member>
495 <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
496 <summary>
497 Asserts that a condition is true. If the condition is false the method throws
498 an <see cref="T:NUnit.Framework.AssertionException"/>.
499 </summary>
500 <param name="condition">The evaluated condition</param>
501 <param name="message">The message to display in case of failure</param>
502 <param name="args">Array of objects to be used in formatting the message</param>
503 </member>
504 <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
505 <summary>
506 Asserts that a condition is true. If the condition is false the method throws
507 an <see cref="T:NUnit.Framework.AssertionException"/>.
508 </summary>
509 <param name="condition">The evaluated condition</param>
510 <param name="message">The message to display in case of failure</param>
511 </member>
512 <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
513 <summary>
514 Asserts that a condition is true. If the condition is false the method throws
515 an <see cref="T:NUnit.Framework.AssertionException"/>.
516 </summary>
517 <param name="condition">The evaluated condition</param>
518 </member>
519 <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])">
520 <summary>
521 Asserts that a condition is false. If the condition is true the method throws
522 an <see cref="T:NUnit.Framework.AssertionException"/>.
523 </summary>
524 <param name="condition">The evaluated condition</param>
525 <param name="message">The message to display in case of failure</param>
526 <param name="args">Array of objects to be used in formatting the message</param>
527 </member>
528 <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String)">
529 <summary>
530 Asserts that a condition is false. If the condition is true the method throws
531 an <see cref="T:NUnit.Framework.AssertionException"/>.
532 </summary>
533 <param name="condition">The evaluated condition</param>
534 <param name="message">The message to display in case of failure</param>
535 </member>
536 <member name="M:NUnit.Framework.Assert.False(System.Boolean)">
537 <summary>
538 Asserts that a condition is false. If the condition is true the method throws
539 an <see cref="T:NUnit.Framework.AssertionException"/>.
540 </summary>
541 <param name="condition">The evaluated condition</param>
542 </member>
543 <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
544 <summary>
545 Asserts that a condition is false. If the condition is true the method throws
546 an <see cref="T:NUnit.Framework.AssertionException"/>.
547 </summary>
548 <param name="condition">The evaluated condition</param>
549 <param name="message">The message to display in case of failure</param>
550 <param name="args">Array of objects to be used in formatting the message</param>
551 </member>
552 <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
553 <summary>
554 Asserts that a condition is false. If the condition is true the method throws
555 an <see cref="T:NUnit.Framework.AssertionException"/>.
556 </summary>
557 <param name="condition">The evaluated condition</param>
558 <param name="message">The message to display in case of failure</param>
559 </member>
560 <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
561 <summary>
562 Asserts that a condition is false. If the condition is true the method throws
563 an <see cref="T:NUnit.Framework.AssertionException"/>.
564 </summary>
565 <param name="condition">The evaluated condition</param>
566 </member>
567 <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])">
568 <summary>
569 Verifies that the object that is passed in is not equal to <code>null</code>
570 If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
571 is thrown.
572 </summary>
573 <param name="anObject">The object that is to be tested</param>
574 <param name="message">The message to display in case of failure</param>
575 <param name="args">Array of objects to be used in formatting the message</param>
576 </member>
577 <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String)">
578 <summary>
579 Verifies that the object that is passed in is not equal to <code>null</code>
580 If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
581 is thrown.
582 </summary>
583 <param name="anObject">The object that is to be tested</param>
584 <param name="message">The message to display in case of failure</param>
585 </member>
586 <member name="M:NUnit.Framework.Assert.NotNull(System.Object)">
587 <summary>
588 Verifies that the object that is passed in is not equal to <code>null</code>
589 If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
590 is thrown.
591 </summary>
592 <param name="anObject">The object that is to be tested</param>
593 </member>
594 <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
595 <summary>
596 Verifies that the object that is passed in is not equal to <code>null</code>
597 If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
598 is thrown.
599 </summary>
600 <param name="anObject">The object that is to be tested</param>
601 <param name="message">The message to display in case of failure</param>
602 <param name="args">Array of objects to be used in formatting the message</param>
603 </member>
604 <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
605 <summary>
606 Verifies that the object that is passed in is not equal to <code>null</code>
607 If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
608 is thrown.
609 </summary>
610 <param name="anObject">The object that is to be tested</param>
611 <param name="message">The message to display in case of failure</param>
612 </member>
613 <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
614 <summary>
615 Verifies that the object that is passed in is not equal to <code>null</code>
616 If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
617 is thrown.
618 </summary>
619 <param name="anObject">The object that is to be tested</param>
620 </member>
621 <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])">
622 <summary>
623 Verifies that the object that is passed in is equal to <code>null</code>
624 If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
625 is thrown.
626 </summary>
627 <param name="anObject">The object that is to be tested</param>
628 <param name="message">The message to display in case of failure</param>
629 <param name="args">Array of objects to be used in formatting the message</param>
630 </member>
631 <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String)">
632 <summary>
633 Verifies that the object that is passed in is equal to <code>null</code>
634 If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
635 is thrown.
636 </summary>
637 <param name="anObject">The object that is to be tested</param>
638 <param name="message">The message to display in case of failure</param>
639 </member>
640 <member name="M:NUnit.Framework.Assert.Null(System.Object)">
641 <summary>
642 Verifies that the object that is passed in is equal to <code>null</code>
643 If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
644 is thrown.
645 </summary>
646 <param name="anObject">The object that is to be tested</param>
647 </member>
648 <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
649 <summary>
650 Verifies that the object that is passed in is equal to <code>null</code>
651 If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
652 is thrown.
653 </summary>
654 <param name="anObject">The object that is to be tested</param>
655 <param name="message">The message to display in case of failure</param>
656 <param name="args">Array of objects to be used in formatting the message</param>
657 </member>
658 <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
659 <summary>
660 Verifies that the object that is passed in is equal to <code>null</code>
661 If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
662 is thrown.
663 </summary>
664 <param name="anObject">The object that is to be tested</param>
665 <param name="message">The message to display in case of failure</param>
666 </member>
667 <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
668 <summary>
669 Verifies that the object that is passed in is equal to <code>null</code>
670 If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
671 is thrown.
672 </summary>
673 <param name="anObject">The object that is to be tested</param>
674 </member>
675 <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
676 <summary>
677 Verifies that two ints are equal. If they are not, then an
678 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
679 </summary>
680 <param name="expected">The expected value</param>
681 <param name="actual">The actual value</param>
682 <param name="message">The message to display in case of failure</param>
683 <param name="args">Array of objects to be used in formatting the message</param>
684 </member>
685 <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
686 <summary>
687 Verifies that two ints are equal. If they are not, then an
688 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
689 </summary>
690 <param name="expected">The expected value</param>
691 <param name="actual">The actual value</param>
692 <param name="message">The message to display in case of failure</param>
693 </member>
694 <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
695 <summary>
696 Verifies that two ints are equal. If they are not, then an
697 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
698 </summary>
699 <param name="expected">The expected value</param>
700 <param name="actual">The actual value</param>
701 </member>
702 <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
703 <summary>
704 Verifies that two longs are equal. If they are not, then an
705 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
706 </summary>
707 <param name="expected">The expected value</param>
708 <param name="actual">The actual value</param>
709 <param name="message">The message to display in case of failure</param>
710 <param name="args">Array of objects to be used in formatting the message</param>
711 </member>
712 <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
713 <summary>
714 Verifies that two longs are equal. If they are not, then an
715 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
716 </summary>
717 <param name="expected">The expected value</param>
718 <param name="actual">The actual value</param>
719 <param name="message">The message to display in case of failure</param>
720 </member>
721 <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
722 <summary>
723 Verifies that two longs are equal. If they are not, then an
724 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
725 </summary>
726 <param name="expected">The expected value</param>
727 <param name="actual">The actual value</param>
728 </member>
729 <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
730 <summary>
731 Verifies that two unsigned ints are equal. If they are not, then an
732 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
733 </summary>
734 <param name="expected">The expected value</param>
735 <param name="actual">The actual value</param>
736 <param name="message">The message to display in case of failure</param>
737 <param name="args">Array of objects to be used in formatting the message</param>
738 </member>
739 <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
740 <summary>
741 Verifies that two unsigned ints are equal. If they are not, then an
742 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
743 </summary>
744 <param name="expected">The expected value</param>
745 <param name="actual">The actual value</param>
746 <param name="message">The message to display in case of failure</param>
747 </member>
748 <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
749 <summary>
750 Verifies that two unsigned ints are equal. If they are not, then an
751 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
752 </summary>
753 <param name="expected">The expected value</param>
754 <param name="actual">The actual value</param>
755 </member>
756 <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
757 <summary>
758 Verifies that two unsigned longs are equal. If they are not, then an
759 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
760 </summary>
761 <param name="expected">The expected value</param>
762 <param name="actual">The actual value</param>
763 <param name="message">The message to display in case of failure</param>
764 <param name="args">Array of objects to be used in formatting the message</param>
765 </member>
766 <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
767 <summary>
768 Verifies that two unsigned longs are equal. If they are not, then an
769 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
770 </summary>
771 <param name="expected">The expected value</param>
772 <param name="actual">The actual value</param>
773 <param name="message">The message to display in case of failure</param>
774 </member>
775 <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
776 <summary>
777 Verifies that two unsigned longs are equal. If they are not, then an
778 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
779 </summary>
780 <param name="expected">The expected value</param>
781 <param name="actual">The actual value</param>
782 </member>
783 <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
784 <summary>
785 Verifies that two decimals are equal. If they are not, then an
786 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
787 </summary>
788 <param name="expected">The expected value</param>
789 <param name="actual">The actual value</param>
790 <param name="message">The message to display in case of failure</param>
791 <param name="args">Array of objects to be used in formatting the message</param>
792 </member>
793 <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
794 <summary>
795 Verifies that two decimals are equal. If they are not, then an
796 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
797 </summary>
798 <param name="expected">The expected value</param>
799 <param name="actual">The actual value</param>
800 <param name="message">The message to display in case of failure</param>
801 </member>
802 <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
803 <summary>
804 Verifies that two decimals are equal. If they are not, then an
805 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
806 </summary>
807 <param name="expected">The expected value</param>
808 <param name="actual">The actual value</param>
809 </member>
810 <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
811 <summary>
812 Verifies that two doubles are equal considering a delta. If the
813 expected value is infinity then the delta value is ignored. If
814 they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
815 thrown.
816 </summary>
817 <param name="expected">The expected value</param>
818 <param name="actual">The actual value</param>
819 <param name="delta">The maximum acceptable difference between the
820 the expected and the actual</param>
821 <param name="message">The message to display in case of failure</param>
822 <param name="args">Array of objects to be used in formatting the message</param>
823 </member>
824 <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
825 <summary>
826 Verifies that two doubles are equal considering a delta. If the
827 expected value is infinity then the delta value is ignored. If
828 they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
829 thrown.
830 </summary>
831 <param name="expected">The expected value</param>
832 <param name="actual">The actual value</param>
833 <param name="delta">The maximum acceptable difference between the
834 the expected and the actual</param>
835 <param name="message">The message to display in case of failure</param>
836 </member>
837 <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
838 <summary>
839 Verifies that two doubles are equal considering a delta. If the
840 expected value is infinity then the delta value is ignored. If
841 they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
842 thrown.
843 </summary>
844 <param name="expected">The expected value</param>
845 <param name="actual">The actual value</param>
846 <param name="delta">The maximum acceptable difference between the
847 the expected and the actual</param>
848 </member>
849 <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])">
850 <summary>
851 Verifies that two doubles are equal considering a delta. If the
852 expected value is infinity then the delta value is ignored. If
853 they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
854 thrown.
855 </summary>
856 <param name="expected">The expected value</param>
857 <param name="actual">The actual value</param>
858 <param name="delta">The maximum acceptable difference between the
859 the expected and the actual</param>
860 <param name="message">The message to display in case of failure</param>
861 <param name="args">Array of objects to be used in formatting the message</param>
862 </member>
863 <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)">
864 <summary>
865 Verifies that two doubles are equal considering a delta. If the
866 expected value is infinity then the delta value is ignored. If
867 they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
868 thrown.
869 </summary>
870 <param name="expected">The expected value</param>
871 <param name="actual">The actual value</param>
872 <param name="delta">The maximum acceptable difference between the
873 the expected and the actual</param>
874 <param name="message">The message to display in case of failure</param>
875 </member>
876 <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)">
877 <summary>
878 Verifies that two doubles are equal considering a delta. If the
879 expected value is infinity then the delta value is ignored. If
880 they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
881 thrown.
882 </summary>
883 <param name="expected">The expected value</param>
884 <param name="actual">The actual value</param>
885 <param name="delta">The maximum acceptable difference between the
886 the expected and the actual</param>
887 </member>
888 <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
889 <summary>
890 Verifies that two objects are equal. Two objects are considered
891 equal if both are null, or if both have the same value. NUnit
892 has special semantics for some object types.
893 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
894 </summary>
895 <param name="expected">The value that is expected</param>
896 <param name="actual">The actual value</param>
897 <param name="message">The message to display in case of failure</param>
898 <param name="args">Array of objects to be used in formatting the message</param>
899 </member>
900 <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
901 <summary>
902 Verifies that two objects are equal. Two objects are considered
903 equal if both are null, or if both have the same value. NUnit
904 has special semantics for some object types.
905 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
906 </summary>
907 <param name="expected">The value that is expected</param>
908 <param name="actual">The actual value</param>
909 <param name="message">The message to display in case of failure</param>
910 </member>
911 <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
912 <summary>
913 Verifies that two objects are equal. Two objects are considered
914 equal if both are null, or if both have the same value. NUnit
915 has special semantics for some object types.
916 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
917 </summary>
918 <param name="expected">The value that is expected</param>
919 <param name="actual">The actual value</param>
920 </member>
921 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
922 <summary>
923 Verifies that two ints are not equal. If they are equal, then an
924 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
925 </summary>
926 <param name="expected">The expected value</param>
927 <param name="actual">The actual value</param>
928 <param name="message">The message to display in case of failure</param>
929 <param name="args">Array of objects to be used in formatting the message</param>
930 </member>
931 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
932 <summary>
933 Verifies that two ints are not equal. If they are equal, then an
934 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
935 </summary>
936 <param name="expected">The expected value</param>
937 <param name="actual">The actual value</param>
938 <param name="message">The message to display in case of failure</param>
939 </member>
940 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
941 <summary>
942 Verifies that two ints are not equal. If they are equal, then an
943 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
944 </summary>
945 <param name="expected">The expected value</param>
946 <param name="actual">The actual value</param>
947 </member>
948 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
949 <summary>
950 Verifies that two longs are not equal. If they are equal, then an
951 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
952 </summary>
953 <param name="expected">The expected value</param>
954 <param name="actual">The actual value</param>
955 <param name="message">The message to display in case of failure</param>
956 <param name="args">Array of objects to be used in formatting the message</param>
957 </member>
958 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
959 <summary>
960 Verifies that two longs are not equal. If they are equal, then an
961 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
962 </summary>
963 <param name="expected">The expected value</param>
964 <param name="actual">The actual value</param>
965 <param name="message">The message to display in case of failure</param>
966 </member>
967 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
968 <summary>
969 Verifies that two longs are not equal. If they are equal, then an
970 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
971 </summary>
972 <param name="expected">The expected value</param>
973 <param name="actual">The actual value</param>
974 </member>
975 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
976 <summary>
977 Verifies that two unsigned ints are not equal. If they are equal, then an
978 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
979 </summary>
980 <param name="expected">The expected value</param>
981 <param name="actual">The actual value</param>
982 <param name="message">The message to display in case of failure</param>
983 <param name="args">Array of objects to be used in formatting the message</param>
984 </member>
985 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
986 <summary>
987 Verifies that two unsigned ints are not equal. If they are equal, then an
988 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
989 </summary>
990 <param name="expected">The expected value</param>
991 <param name="actual">The actual value</param>
992 <param name="message">The message to display in case of failure</param>
993 </member>
994 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
995 <summary>
996 Verifies that two unsigned ints are not equal. If they are equal, then an
997 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
998 </summary>
999 <param name="expected">The expected value</param>
1000 <param name="actual">The actual value</param>
1001 </member>
1002 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
1003 <summary>
1004 Verifies that two unsigned longs are not equal. If they are equal, then an
1005 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1006 </summary>
1007 <param name="expected">The expected value</param>
1008 <param name="actual">The actual value</param>
1009 <param name="message">The message to display in case of failure</param>
1010 <param name="args">Array of objects to be used in formatting the message</param>
1011 </member>
1012 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
1013 <summary>
1014 Verifies that two unsigned longs are not equal. If they are equal, then an
1015 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1016 </summary>
1017 <param name="expected">The expected value</param>
1018 <param name="actual">The actual value</param>
1019 <param name="message">The message to display in case of failure</param>
1020 </member>
1021 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
1022 <summary>
1023 Verifies that two unsigned longs are not equal. If they are equal, then an
1024 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1025 </summary>
1026 <param name="expected">The expected value</param>
1027 <param name="actual">The actual value</param>
1028 </member>
1029 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
1030 <summary>
1031 Verifies that two decimals are not equal. If they are equal, then an
1032 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1033 </summary>
1034 <param name="expected">The expected value</param>
1035 <param name="actual">The actual value</param>
1036 <param name="message">The message to display in case of failure</param>
1037 <param name="args">Array of objects to be used in formatting the message</param>
1038 </member>
1039 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
1040 <summary>
1041 Verifies that two decimals are not equal. If they are equal, then an
1042 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1043 </summary>
1044 <param name="expected">The expected value</param>
1045 <param name="actual">The actual value</param>
1046 <param name="message">The message to display in case of failure</param>
1047 </member>
1048 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
1049 <summary>
1050 Verifies that two decimals are not equal. If they are equal, then an
1051 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1052 </summary>
1053 <param name="expected">The expected value</param>
1054 <param name="actual">The actual value</param>
1055 </member>
1056 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
1057 <summary>
1058 Verifies that two floats are not equal. If they are equal, then an
1059 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1060 </summary>
1061 <param name="expected">The expected value</param>
1062 <param name="actual">The actual value</param>
1063 <param name="message">The message to display in case of failure</param>
1064 <param name="args">Array of objects to be used in formatting the message</param>
1065 </member>
1066 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
1067 <summary>
1068 Verifies that two floats are not equal. If they are equal, then an
1069 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1070 </summary>
1071 <param name="expected">The expected value</param>
1072 <param name="actual">The actual value</param>
1073 <param name="message">The message to display in case of failure</param>
1074 </member>
1075 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
1076 <summary>
1077 Verifies that two floats are not equal. If they are equal, then an
1078 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1079 </summary>
1080 <param name="expected">The expected value</param>
1081 <param name="actual">The actual value</param>
1082 </member>
1083 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
1084 <summary>
1085 Verifies that two doubles are not equal. If they are equal, then an
1086 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1087 </summary>
1088 <param name="expected">The expected value</param>
1089 <param name="actual">The actual value</param>
1090 <param name="message">The message to display in case of failure</param>
1091 <param name="args">Array of objects to be used in formatting the message</param>
1092 </member>
1093 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
1094 <summary>
1095 Verifies that two doubles are not equal. If they are equal, then an
1096 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1097 </summary>
1098 <param name="expected">The expected value</param>
1099 <param name="actual">The actual value</param>
1100 <param name="message">The message to display in case of failure</param>
1101 </member>
1102 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
1103 <summary>
1104 Verifies that two doubles are not equal. If they are equal, then an
1105 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1106 </summary>
1107 <param name="expected">The expected value</param>
1108 <param name="actual">The actual value</param>
1109 </member>
1110 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
1111 <summary>
1112 Verifies that two objects are not equal. Two objects are considered
1113 equal if both are null, or if both have the same value. NUnit
1114 has special semantics for some object types.
1115 If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1116 </summary>
1117 <param name="expected">The value that is expected</param>
1118 <param name="actual">The actual value</param>
1119 <param name="message">The message to display in case of failure</param>
1120 <param name="args">Array of objects to be used in formatting the message</param>
1121 </member>
1122 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
1123 <summary>
1124 Verifies that two objects are not equal. Two objects are considered
1125 equal if both are null, or if both have the same value. NUnit
1126 has special semantics for some object types.
1127 If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1128 </summary>
1129 <param name="expected">The value that is expected</param>
1130 <param name="actual">The actual value</param>
1131 <param name="message">The message to display in case of failure</param>
1132 </member>
1133 <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
1134 <summary>
1135 Verifies that two objects are not equal. Two objects are considered
1136 equal if both are null, or if both have the same value. NUnit
1137 has special semantics for some object types.
1138 If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1139 </summary>
1140 <param name="expected">The value that is expected</param>
1141 <param name="actual">The actual value</param>
1142 </member>
1143 <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
1144 <summary>
1145 Asserts that two objects refer to the same object. If they
1146 are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1147 </summary>
1148 <param name="expected">The expected object</param>
1149 <param name="actual">The actual object</param>
1150 <param name="message">The message to display in case of failure</param>
1151 <param name="args">Array of objects to be used in formatting the message</param>
1152 </member>
1153 <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
1154 <summary>
1155 Asserts that two objects refer to the same object. If they
1156 are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1157 </summary>
1158 <param name="expected">The expected object</param>
1159 <param name="actual">The actual object</param>
1160 <param name="message">The message to display in case of failure</param>
1161 </member>
1162 <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
1163 <summary>
1164 Asserts that two objects refer to the same object. If they
1165 are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1166 </summary>
1167 <param name="expected">The expected object</param>
1168 <param name="actual">The actual object</param>
1169 </member>
1170 <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
1171 <summary>
1172 Asserts that two objects do not refer to the same object. If they
1173 are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1174 </summary>
1175 <param name="expected">The expected object</param>
1176 <param name="actual">The actual object</param>
1177 <param name="message">The message to display in case of failure</param>
1178 <param name="args">Array of objects to be used in formatting the message</param>
1179 </member>
1180 <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
1181 <summary>
1182 Asserts that two objects do not refer to the same object. If they
1183 are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1184 </summary>
1185 <param name="expected">The expected object</param>
1186 <param name="actual">The actual object</param>
1187 <param name="message">The message to display in case of failure</param>
1188 </member>
1189 <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
1190 <summary>
1191 Asserts that two objects do not refer to the same object. If they
1192 are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1193 </summary>
1194 <param name="expected">The expected object</param>
1195 <param name="actual">The actual object</param>
1196 </member>
1197 <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
1198 <summary>
1199 Verifies that the double that is passed in is an <code>NaN</code> value.
1200 If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
1201 is thrown.
1202 </summary>
1203 <param name="aDouble">The value that is to be tested</param>
1204 <param name="message">The message to display in case of failure</param>
1205 <param name="args">Array of objects to be used in formatting the message</param>
1206 </member>
1207 <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
1208 <summary>
1209 Verifies that the double that is passed in is an <code>NaN</code> value.
1210 If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
1211 is thrown.
1212 </summary>
1213 <param name="aDouble">The value that is to be tested</param>
1214 <param name="message">The message to display in case of failure</param>
1215 </member>
1216 <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
1217 <summary>
1218 Verifies that the double that is passed in is an <code>NaN</code> value.
1219 If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
1220 is thrown.
1221 </summary>
1222 <param name="aDouble">The value that is to be tested</param>
1223 </member>
1224 <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])">
1225 <summary>
1226 Verifies that the double that is passed in is an <code>NaN</code> value.
1227 If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
1228 is thrown.
1229 </summary>
1230 <param name="aDouble">The value that is to be tested</param>
1231 <param name="message">The message to display in case of failure</param>
1232 <param name="args">Array of objects to be used in formatting the message</param>
1233 </member>
1234 <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)">
1235 <summary>
1236 Verifies that the double that is passed in is an <code>NaN</code> value.
1237 If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
1238 is thrown.
1239 </summary>
1240 <param name="aDouble">The value that is to be tested</param>
1241 <param name="message">The message to display in case of failure</param>
1242 </member>
1243 <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})">
1244 <summary>
1245 Verifies that the double that is passed in is an <code>NaN</code> value.
1246 If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
1247 is thrown.
1248 </summary>
1249 <param name="aDouble">The value that is to be tested</param>
1250 </member>
1251 <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
1252 <summary>
1253 Assert that a string is empty - that is equal to string.Empty
1254 </summary>
1255 <param name="aString">The string to be tested</param>
1256 <param name="message">The message to display in case of failure</param>
1257 <param name="args">Array of objects to be used in formatting the message</param>
1258 </member>
1259 <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
1260 <summary>
1261 Assert that a string is empty - that is equal to string.Empty
1262 </summary>
1263 <param name="aString">The string to be tested</param>
1264 <param name="message">The message to display in case of failure</param>
1265 </member>
1266 <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
1267 <summary>
1268 Assert that a string is empty - that is equal to string.Empty
1269 </summary>
1270 <param name="aString">The string to be tested</param>
1271 </member>
1272 <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
1273 <summary>
1274 Assert that an array, list or other collection is empty
1275 </summary>
1276 <param name="collection">An array, list or other collection implementing ICollection</param>
1277 <param name="message">The message to display in case of failure</param>
1278 <param name="args">Array of objects to be used in formatting the message</param>
1279 </member>
1280 <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String)">
1281 <summary>
1282 Assert that an array, list or other collection is empty
1283 </summary>
1284 <param name="collection">An array, list or other collection implementing ICollection</param>
1285 <param name="message">The message to display in case of failure</param>
1286 </member>
1287 <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable)">
1288 <summary>
1289 Assert that an array, list or other collection is empty
1290 </summary>
1291 <param name="collection">An array, list or other collection implementing ICollection</param>
1292 </member>
1293 <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
1294 <summary>
1295 Assert that a string is not empty - that is not equal to string.Empty
1296 </summary>
1297 <param name="aString">The string to be tested</param>
1298 <param name="message">The message to display in case of failure</param>
1299 <param name="args">Array of objects to be used in formatting the message</param>
1300 </member>
1301 <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
1302 <summary>
1303 Assert that a string is not empty - that is not equal to string.Empty
1304 </summary>
1305 <param name="aString">The string to be tested</param>
1306 <param name="message">The message to display in case of failure</param>
1307 </member>
1308 <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
1309 <summary>
1310 Assert that a string is not empty - that is not equal to string.Empty
1311 </summary>
1312 <param name="aString">The string to be tested</param>
1313 </member>
1314 <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
1315 <summary>
1316 Assert that an array, list or other collection is not empty
1317 </summary>
1318 <param name="collection">An array, list or other collection implementing ICollection</param>
1319 <param name="message">The message to display in case of failure</param>
1320 <param name="args">Array of objects to be used in formatting the message</param>
1321 </member>
1322 <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
1323 <summary>
1324 Assert that an array, list or other collection is not empty
1325 </summary>
1326 <param name="collection">An array, list or other collection implementing ICollection</param>
1327 <param name="message">The message to display in case of failure</param>
1328 </member>
1329 <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable)">
1330 <summary>
1331 Assert that an array, list or other collection is not empty
1332 </summary>
1333 <param name="collection">An array, list or other collection implementing ICollection</param>
1334 </member>
1335 <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])">
1336 <summary>
1337 Assert that a string is either null or equal to string.Empty
1338 </summary>
1339 <param name="aString">The string to be tested</param>
1340 <param name="message">The message to display in case of failure</param>
1341 <param name="args">Array of objects to be used in formatting the message</param>
1342 </member>
1343 <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)">
1344 <summary>
1345 Assert that a string is either null or equal to string.Empty
1346 </summary>
1347 <param name="aString">The string to be tested</param>
1348 <param name="message">The message to display in case of failure</param>
1349 </member>
1350 <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)">
1351 <summary>
1352 Assert that a string is either null or equal to string.Empty
1353 </summary>
1354 <param name="aString">The string to be tested</param>
1355 </member>
1356 <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])">
1357 <summary>
1358 Assert that a string is not null or empty
1359 </summary>
1360 <param name="aString">The string to be tested</param>
1361 <param name="message">The message to display in case of failure</param>
1362 <param name="args">Array of objects to be used in formatting the message</param>
1363 </member>
1364 <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)">
1365 <summary>
1366 Assert that a string is not null or empty
1367 </summary>
1368 <param name="aString">The string to be tested</param>
1369 <param name="message">The message to display in case of failure</param>
1370 </member>
1371 <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)">
1372 <summary>
1373 Assert that a string is not null or empty
1374 </summary>
1375 <param name="aString">The string to be tested</param>
1376 </member>
1377 <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
1378 <summary>
1379 Asserts that an object may be assigned a value of a given Type.
1380 </summary>
1381 <param name="expected">The expected Type.</param>
1382 <param name="actual">The object under examination</param>
1383 <param name="message">The message to display in case of failure</param>
1384 <param name="args">Array of objects to be used in formatting the message</param>
1385 </member>
1386 <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
1387 <summary>
1388 Asserts that an object may be assigned a value of a given Type.
1389 </summary>
1390 <param name="expected">The expected Type.</param>
1391 <param name="actual">The object under examination</param>
1392 <param name="message">The message to display in case of failure</param>
1393 </member>
1394 <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
1395 <summary>
1396 Asserts that an object may be assigned a value of a given Type.
1397 </summary>
1398 <param name="expected">The expected Type.</param>
1399 <param name="actual">The object under examination</param>
1400 </member>
1401 <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])">
1402 <summary>
1403 Asserts that an object may be assigned a value of a given Type.
1404 </summary>
1405 <typeparam name="T">The expected Type.</typeparam>
1406 <param name="actual">The object under examination</param>
1407 <param name="message">The message to display in case of failure</param>
1408 <param name="args">Array of objects to be used in formatting the message</param>
1409 </member>
1410 <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)">
1411 <summary>
1412 Asserts that an object may be assigned a value of a given Type.
1413 </summary>
1414 <typeparam name="T">The expected Type.</typeparam>
1415 <param name="actual">The object under examination</param>
1416 <param name="message">The message to display in case of failure</param>
1417 </member>
1418 <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)">
1419 <summary>
1420 Asserts that an object may be assigned a value of a given Type.
1421 </summary>
1422 <typeparam name="T">The expected Type.</typeparam>
1423 <param name="actual">The object under examination</param>
1424 </member>
1425 <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
1426 <summary>
1427 Asserts that an object may not be assigned a value of a given Type.
1428 </summary>
1429 <param name="expected">The expected Type.</param>
1430 <param name="actual">The object under examination</param>
1431 <param name="message">The message to display in case of failure</param>
1432 <param name="args">Array of objects to be used in formatting the message</param>
1433 </member>
1434 <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
1435 <summary>
1436 Asserts that an object may not be assigned a value of a given Type.
1437 </summary>
1438 <param name="expected">The expected Type.</param>
1439 <param name="actual">The object under examination</param>
1440 <param name="message">The message to display in case of failure</param>
1441 </member>
1442 <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
1443 <summary>
1444 Asserts that an object may not be assigned a value of a given Type.
1445 </summary>
1446 <param name="expected">The expected Type.</param>
1447 <param name="actual">The object under examination</param>
1448 </member>
1449 <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])">
1450 <summary>
1451 Asserts that an object may not be assigned a value of a given Type.
1452 </summary>
1453 <typeparam name="T">The expected Type.</typeparam>
1454 <param name="actual">The object under examination</param>
1455 <param name="message">The message to display in case of failure</param>
1456 <param name="args">Array of objects to be used in formatting the message</param>
1457 </member>
1458 <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)">
1459 <summary>
1460 Asserts that an object may not be assigned a value of a given Type.
1461 </summary>
1462 <typeparam name="T">The expected Type.</typeparam>
1463 <param name="actual">The object under examination</param>
1464 <param name="message">The message to display in case of failure</param>
1465 </member>
1466 <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)">
1467 <summary>
1468 Asserts that an object may not be assigned a value of a given Type.
1469 </summary>
1470 <typeparam name="T">The expected Type.</typeparam>
1471 <param name="actual">The object under examination</param>
1472 </member>
1473 <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])">
1474 <summary>
1475 Asserts that an object is an instance of a given type.
1476 </summary>
1477 <param name="expected">The expected Type</param>
1478 <param name="actual">The object being examined</param>
1479 <param name="message">The message to display in case of failure</param>
1480 <param name="args">Array of objects to be used in formatting the message</param>
1481 </member>
1482 <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)">
1483 <summary>
1484 Asserts that an object is an instance of a given type.
1485 </summary>
1486 <param name="expected">The expected Type</param>
1487 <param name="actual">The object being examined</param>
1488 <param name="message">The message to display in case of failure</param>
1489 </member>
1490 <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)">
1491 <summary>
1492 Asserts that an object is an instance of a given type.
1493 </summary>
1494 <param name="expected">The expected Type</param>
1495 <param name="actual">The object being examined</param>
1496 </member>
1497 <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
1498 <summary>
1499 Asserts that an object is an instance of a given type.
1500 </summary>
1501 <param name="expected">The expected Type</param>
1502 <param name="actual">The object being examined</param>
1503 <param name="message">The message to display in case of failure</param>
1504 <param name="args">Array of objects to be used in formatting the message</param>
1505 </member>
1506 <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
1507 <summary>
1508 Asserts that an object is an instance of a given type.
1509 </summary>
1510 <param name="expected">The expected Type</param>
1511 <param name="actual">The object being examined</param>
1512 <param name="message">The message to display in case of failure</param>
1513 </member>
1514 <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
1515 <summary>
1516 Asserts that an object is an instance of a given type.
1517 </summary>
1518 <param name="expected">The expected Type</param>
1519 <param name="actual">The object being examined</param>
1520 </member>
1521 <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])">
1522 <summary>
1523 Asserts that an object is an instance of a given type.
1524 </summary>
1525 <typeparam name="T">The expected Type</typeparam>
1526 <param name="actual">The object being examined</param>
1527 <param name="message">The message to display in case of failure</param>
1528 <param name="args">Array of objects to be used in formatting the message</param>
1529 </member>
1530 <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)">
1531 <summary>
1532 Asserts that an object is an instance of a given type.
1533 </summary>
1534 <typeparam name="T">The expected Type</typeparam>
1535 <param name="actual">The object being examined</param>
1536 <param name="message">The message to display in case of failure</param>
1537 </member>
1538 <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)">
1539 <summary>
1540 Asserts that an object is an instance of a given type.
1541 </summary>
1542 <typeparam name="T">The expected Type</typeparam>
1543 <param name="actual">The object being examined</param>
1544 </member>
1545 <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])">
1546 <summary>
1547 Asserts that an object is not an instance of a given type.
1548 </summary>
1549 <param name="expected">The expected Type</param>
1550 <param name="actual">The object being examined</param>
1551 <param name="message">The message to display in case of failure</param>
1552 <param name="args">Array of objects to be used in formatting the message</param>
1553 </member>
1554 <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)">
1555 <summary>
1556 Asserts that an object is not an instance of a given type.
1557 </summary>
1558 <param name="expected">The expected Type</param>
1559 <param name="actual">The object being examined</param>
1560 <param name="message">The message to display in case of failure</param>
1561 </member>
1562 <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)">
1563 <summary>
1564 Asserts that an object is not an instance of a given type.
1565 </summary>
1566 <param name="expected">The expected Type</param>
1567 <param name="actual">The object being examined</param>
1568 </member>
1569 <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
1570 <summary>
1571 Asserts that an object is not an instance of a given type.
1572 </summary>
1573 <param name="expected">The expected Type</param>
1574 <param name="actual">The object being examined</param>
1575 <param name="message">The message to display in case of failure</param>
1576 <param name="args">Array of objects to be used in formatting the message</param>
1577 </member>
1578 <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
1579 <summary>
1580 Asserts that an object is not an instance of a given type.
1581 </summary>
1582 <param name="expected">The expected Type</param>
1583 <param name="actual">The object being examined</param>
1584 <param name="message">The message to display in case of failure</param>
1585 </member>
1586 <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
1587 <summary>
1588 Asserts that an object is not an instance of a given type.
1589 </summary>
1590 <param name="expected">The expected Type</param>
1591 <param name="actual">The object being examined</param>
1592 </member>
1593 <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])">
1594 <summary>
1595 Asserts that an object is not an instance of a given type.
1596 </summary>
1597 <typeparam name="T">The expected Type</typeparam>
1598 <param name="actual">The object being examined</param>
1599 <param name="message">The message to display in case of failure</param>
1600 <param name="args">Array of objects to be used in formatting the message</param>
1601 </member>
1602 <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)">
1603 <summary>
1604 Asserts that an object is not an instance of a given type.
1605 </summary>
1606 <typeparam name="T">The expected Type</typeparam>
1607 <param name="actual">The object being examined</param>
1608 <param name="message">The message to display in case of failure</param>
1609 </member>
1610 <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)">
1611 <summary>
1612 Asserts that an object is not an instance of a given type.
1613 </summary>
1614 <typeparam name="T">The expected Type</typeparam>
1615 <param name="actual">The object being examined</param>
1616 </member>
1617 <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
1618 <summary>
1619 Verifies that the first value is greater than the second
1620 value. If it is not, then an
1621 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1622 </summary>
1623 <param name="arg1">The first value, expected to be greater</param>
1624 <param name="arg2">The second value, expected to be less</param>
1625 <param name="message">The message to display in case of failure</param>
1626 <param name="args">Array of objects to be used in formatting the message</param>
1627 </member>
1628 <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
1629 <summary>
1630 Verifies that the first value is greater than the second
1631 value. If it is not, then an
1632 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1633 </summary>
1634 <param name="arg1">The first value, expected to be greater</param>
1635 <param name="arg2">The second value, expected to be less</param>
1636 <param name="message">The message to display in case of failure</param>
1637 </member>
1638 <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
1639 <summary>
1640 Verifies that the first value is greater than the second
1641 value. If it is not, then an
1642 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1643 </summary>
1644 <param name="arg1">The first value, expected to be greater</param>
1645 <param name="arg2">The second value, expected to be less</param>
1646 </member>
1647 <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
1648 <summary>
1649 Verifies that the first value is greater than the second
1650 value. If it is not, then an
1651 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1652 </summary>
1653 <param name="arg1">The first value, expected to be greater</param>
1654 <param name="arg2">The second value, expected to be less</param>
1655 <param name="message">The message to display in case of failure</param>
1656 <param name="args">Array of objects to be used in formatting the message</param>
1657 </member>
1658 <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
1659 <summary>
1660 Verifies that the first value is greater than the second
1661 value. If it is not, then an
1662 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1663 </summary>
1664 <param name="arg1">The first value, expected to be greater</param>
1665 <param name="arg2">The second value, expected to be less</param>
1666 <param name="message">The message to display in case of failure</param>
1667 </member>
1668 <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
1669 <summary>
1670 Verifies that the first value is greater than the second
1671 value. If it is not, then an
1672 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1673 </summary>
1674 <param name="arg1">The first value, expected to be greater</param>
1675 <param name="arg2">The second value, expected to be less</param>
1676 </member>
1677 <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
1678 <summary>
1679 Verifies that the first value is greater than the second
1680 value. If it is not, then an
1681 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1682 </summary>
1683 <param name="arg1">The first value, expected to be greater</param>
1684 <param name="arg2">The second value, expected to be less</param>
1685 <param name="message">The message to display in case of failure</param>
1686 <param name="args">Array of objects to be used in formatting the message</param>
1687 </member>
1688 <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
1689 <summary>
1690 Verifies that the first value is greater than the second
1691 value. If it is not, then an
1692 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1693 </summary>
1694 <param name="arg1">The first value, expected to be greater</param>
1695 <param name="arg2">The second value, expected to be less</param>
1696 <param name="message">The message to display in case of failure</param>
1697 </member>
1698 <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
1699 <summary>
1700 Verifies that the first value is greater than the second
1701 value. If it is not, then an
1702 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1703 </summary>
1704 <param name="arg1">The first value, expected to be greater</param>
1705 <param name="arg2">The second value, expected to be less</param>
1706 </member>
1707 <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
1708 <summary>
1709 Verifies that the first value is greater than the second
1710 value. If it is not, then an
1711 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1712 </summary>
1713 <param name="arg1">The first value, expected to be greater</param>
1714 <param name="arg2">The second value, expected to be less</param>
1715 <param name="message">The message to display in case of failure</param>
1716 <param name="args">Array of objects to be used in formatting the message</param>
1717 </member>
1718 <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
1719 <summary>
1720 Verifies that the first value is greater than the second
1721 value. If it is not, then an
1722 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1723 </summary>
1724 <param name="arg1">The first value, expected to be greater</param>
1725 <param name="arg2">The second value, expected to be less</param>
1726 <param name="message">The message to display in case of failure</param>
1727 </member>
1728 <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
1729 <summary>
1730 Verifies that the first value is greater than the second
1731 value. If it is not, then an
1732 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1733 </summary>
1734 <param name="arg1">The first value, expected to be greater</param>
1735 <param name="arg2">The second value, expected to be less</param>
1736 </member>
1737 <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
1738 <summary>
1739 Verifies that the first value is greater than the second
1740 value. If it is not, then an
1741 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1742 </summary>
1743 <param name="arg1">The first value, expected to be greater</param>
1744 <param name="arg2">The second value, expected to be less</param>
1745 <param name="message">The message to display in case of failure</param>
1746 <param name="args">Array of objects to be used in formatting the message</param>
1747 </member>
1748 <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
1749 <summary>
1750 Verifies that the first value is greater than the second
1751 value. If it is not, then an
1752 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1753 </summary>
1754 <param name="arg1">The first value, expected to be greater</param>
1755 <param name="arg2">The second value, expected to be less</param>
1756 <param name="message">The message to display in case of failure</param>
1757 </member>
1758 <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
1759 <summary>
1760 Verifies that the first value is greater than the second
1761 value. If it is not, then an
1762 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1763 </summary>
1764 <param name="arg1">The first value, expected to be greater</param>
1765 <param name="arg2">The second value, expected to be less</param>
1766 </member>
1767 <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
1768 <summary>
1769 Verifies that the first value is greater than the second
1770 value. If it is not, then an
1771 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1772 </summary>
1773 <param name="arg1">The first value, expected to be greater</param>
1774 <param name="arg2">The second value, expected to be less</param>
1775 <param name="message">The message to display in case of failure</param>
1776 <param name="args">Array of objects to be used in formatting the message</param>
1777 </member>
1778 <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
1779 <summary>
1780 Verifies that the first value is greater than the second
1781 value. If it is not, then an
1782 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1783 </summary>
1784 <param name="arg1">The first value, expected to be greater</param>
1785 <param name="arg2">The second value, expected to be less</param>
1786 <param name="message">The message to display in case of failure</param>
1787 </member>
1788 <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
1789 <summary>
1790 Verifies that the first value is greater than the second
1791 value. If it is not, then an
1792 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1793 </summary>
1794 <param name="arg1">The first value, expected to be greater</param>
1795 <param name="arg2">The second value, expected to be less</param>
1796 </member>
1797 <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
1798 <summary>
1799 Verifies that the first value is greater than the second
1800 value. If it is not, then an
1801 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1802 </summary>
1803 <param name="arg1">The first value, expected to be greater</param>
1804 <param name="arg2">The second value, expected to be less</param>
1805 <param name="message">The message to display in case of failure</param>
1806 <param name="args">Array of objects to be used in formatting the message</param>
1807 </member>
1808 <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
1809 <summary>
1810 Verifies that the first value is greater than the second
1811 value. If it is not, then an
1812 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1813 </summary>
1814 <param name="arg1">The first value, expected to be greater</param>
1815 <param name="arg2">The second value, expected to be less</param>
1816 <param name="message">The message to display in case of failure</param>
1817 </member>
1818 <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
1819 <summary>
1820 Verifies that the first value is greater than the second
1821 value. If it is not, then an
1822 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1823 </summary>
1824 <param name="arg1">The first value, expected to be greater</param>
1825 <param name="arg2">The second value, expected to be less</param>
1826 </member>
1827 <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
1828 <summary>
1829 Verifies that the first value is greater than the second
1830 value. If it is not, then an
1831 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1832 </summary>
1833 <param name="arg1">The first value, expected to be greater</param>
1834 <param name="arg2">The second value, expected to be less</param>
1835 <param name="message">The message to display in case of failure</param>
1836 <param name="args">Array of objects to be used in formatting the message</param>
1837 </member>
1838 <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
1839 <summary>
1840 Verifies that the first value is greater than the second
1841 value. If it is not, then an
1842 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1843 </summary>
1844 <param name="arg1">The first value, expected to be greater</param>
1845 <param name="arg2">The second value, expected to be less</param>
1846 <param name="message">The message to display in case of failure</param>
1847 </member>
1848 <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
1849 <summary>
1850 Verifies that the first value is greater than the second
1851 value. If it is not, then an
1852 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1853 </summary>
1854 <param name="arg1">The first value, expected to be greater</param>
1855 <param name="arg2">The second value, expected to be less</param>
1856 </member>
1857 <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
1858 <summary>
1859 Verifies that the first value is less than the second
1860 value. If it is not, then an
1861 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1862 </summary>
1863 <param name="arg1">The first value, expected to be less</param>
1864 <param name="arg2">The second value, expected to be greater</param>
1865 <param name="message">The message to display in case of failure</param>
1866 <param name="args">Array of objects to be used in formatting the message</param>
1867 </member>
1868 <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
1869 <summary>
1870 Verifies that the first value is less than the second
1871 value. If it is not, then an
1872 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1873 </summary>
1874 <param name="arg1">The first value, expected to be less</param>
1875 <param name="arg2">The second value, expected to be greater</param>
1876 <param name="message">The message to display in case of failure</param>
1877 </member>
1878 <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
1879 <summary>
1880 Verifies that the first value is less than the second
1881 value. If it is not, then an
1882 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1883 </summary>
1884 <param name="arg1">The first value, expected to be less</param>
1885 <param name="arg2">The second value, expected to be greater</param>
1886 </member>
1887 <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
1888 <summary>
1889 Verifies that the first value is less than the second
1890 value. If it is not, then an
1891 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1892 </summary>
1893 <param name="arg1">The first value, expected to be less</param>
1894 <param name="arg2">The second value, expected to be greater</param>
1895 <param name="message">The message to display in case of failure</param>
1896 <param name="args">Array of objects to be used in formatting the message</param>
1897 </member>
1898 <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
1899 <summary>
1900 Verifies that the first value is less than the second
1901 value. If it is not, then an
1902 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1903 </summary>
1904 <param name="arg1">The first value, expected to be less</param>
1905 <param name="arg2">The second value, expected to be greater</param>
1906 <param name="message">The message to display in case of failure</param>
1907 </member>
1908 <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
1909 <summary>
1910 Verifies that the first value is less than the second
1911 value. If it is not, then an
1912 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1913 </summary>
1914 <param name="arg1">The first value, expected to be less</param>
1915 <param name="arg2">The second value, expected to be greater</param>
1916 </member>
1917 <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
1918 <summary>
1919 Verifies that the first value is less than the second
1920 value. If it is not, then an
1921 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1922 </summary>
1923 <param name="arg1">The first value, expected to be less</param>
1924 <param name="arg2">The second value, expected to be greater</param>
1925 <param name="message">The message to display in case of failure</param>
1926 <param name="args">Array of objects to be used in formatting the message</param>
1927 </member>
1928 <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
1929 <summary>
1930 Verifies that the first value is less than the second
1931 value. If it is not, then an
1932 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1933 </summary>
1934 <param name="arg1">The first value, expected to be less</param>
1935 <param name="arg2">The second value, expected to be greater</param>
1936 <param name="message">The message to display in case of failure</param>
1937 </member>
1938 <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
1939 <summary>
1940 Verifies that the first value is less than the second
1941 value. If it is not, then an
1942 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1943 </summary>
1944 <param name="arg1">The first value, expected to be less</param>
1945 <param name="arg2">The second value, expected to be greater</param>
1946 </member>
1947 <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
1948 <summary>
1949 Verifies that the first value is less than the second
1950 value. If it is not, then an
1951 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1952 </summary>
1953 <param name="arg1">The first value, expected to be less</param>
1954 <param name="arg2">The second value, expected to be greater</param>
1955 <param name="message">The message to display in case of failure</param>
1956 <param name="args">Array of objects to be used in formatting the message</param>
1957 </member>
1958 <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
1959 <summary>
1960 Verifies that the first value is less than the second
1961 value. If it is not, then an
1962 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1963 </summary>
1964 <param name="arg1">The first value, expected to be less</param>
1965 <param name="arg2">The second value, expected to be greater</param>
1966 <param name="message">The message to display in case of failure</param>
1967 </member>
1968 <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
1969 <summary>
1970 Verifies that the first value is less than the second
1971 value. If it is not, then an
1972 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1973 </summary>
1974 <param name="arg1">The first value, expected to be less</param>
1975 <param name="arg2">The second value, expected to be greater</param>
1976 </member>
1977 <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
1978 <summary>
1979 Verifies that the first value is less than the second
1980 value. If it is not, then an
1981 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1982 </summary>
1983 <param name="arg1">The first value, expected to be less</param>
1984 <param name="arg2">The second value, expected to be greater</param>
1985 <param name="message">The message to display in case of failure</param>
1986 <param name="args">Array of objects to be used in formatting the message</param>
1987 </member>
1988 <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
1989 <summary>
1990 Verifies that the first value is less than the second
1991 value. If it is not, then an
1992 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
1993 </summary>
1994 <param name="arg1">The first value, expected to be less</param>
1995 <param name="arg2">The second value, expected to be greater</param>
1996 <param name="message">The message to display in case of failure</param>
1997 </member>
1998 <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
1999 <summary>
2000 Verifies that the first value is less than the second
2001 value. If it is not, then an
2002 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2003 </summary>
2004 <param name="arg1">The first value, expected to be less</param>
2005 <param name="arg2">The second value, expected to be greater</param>
2006 </member>
2007 <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
2008 <summary>
2009 Verifies that the first value is less than the second
2010 value. If it is not, then an
2011 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2012 </summary>
2013 <param name="arg1">The first value, expected to be less</param>
2014 <param name="arg2">The second value, expected to be greater</param>
2015 <param name="message">The message to display in case of failure</param>
2016 <param name="args">Array of objects to be used in formatting the message</param>
2017 </member>
2018 <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
2019 <summary>
2020 Verifies that the first value is less than the second
2021 value. If it is not, then an
2022 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2023 </summary>
2024 <param name="arg1">The first value, expected to be less</param>
2025 <param name="arg2">The second value, expected to be greater</param>
2026 <param name="message">The message to display in case of failure</param>
2027 </member>
2028 <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
2029 <summary>
2030 Verifies that the first value is less than the second
2031 value. If it is not, then an
2032 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2033 </summary>
2034 <param name="arg1">The first value, expected to be less</param>
2035 <param name="arg2">The second value, expected to be greater</param>
2036 </member>
2037 <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
2038 <summary>
2039 Verifies that the first value is less than the second
2040 value. If it is not, then an
2041 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2042 </summary>
2043 <param name="arg1">The first value, expected to be less</param>
2044 <param name="arg2">The second value, expected to be greater</param>
2045 <param name="message">The message to display in case of failure</param>
2046 <param name="args">Array of objects to be used in formatting the message</param>
2047 </member>
2048 <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
2049 <summary>
2050 Verifies that the first value is less than the second
2051 value. If it is not, then an
2052 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2053 </summary>
2054 <param name="arg1">The first value, expected to be less</param>
2055 <param name="arg2">The second value, expected to be greater</param>
2056 <param name="message">The message to display in case of failure</param>
2057 </member>
2058 <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
2059 <summary>
2060 Verifies that the first value is less than the second
2061 value. If it is not, then an
2062 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2063 </summary>
2064 <param name="arg1">The first value, expected to be less</param>
2065 <param name="arg2">The second value, expected to be greater</param>
2066 </member>
2067 <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
2068 <summary>
2069 Verifies that the first value is less than the second
2070 value. If it is not, then an
2071 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2072 </summary>
2073 <param name="arg1">The first value, expected to be less</param>
2074 <param name="arg2">The second value, expected to be greater</param>
2075 <param name="message">The message to display in case of failure</param>
2076 <param name="args">Array of objects to be used in formatting the message</param>
2077 </member>
2078 <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
2079 <summary>
2080 Verifies that the first value is less than the second
2081 value. If it is not, then an
2082 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2083 </summary>
2084 <param name="arg1">The first value, expected to be less</param>
2085 <param name="arg2">The second value, expected to be greater</param>
2086 <param name="message">The message to display in case of failure</param>
2087 </member>
2088 <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
2089 <summary>
2090 Verifies that the first value is less than the second
2091 value. If it is not, then an
2092 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2093 </summary>
2094 <param name="arg1">The first value, expected to be less</param>
2095 <param name="arg2">The second value, expected to be greater</param>
2096 </member>
2097 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
2098 <summary>
2099 Verifies that the first value is greater than or equal tothe second
2100 value. If it is not, then an
2101 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2102 </summary>
2103 <param name="arg1">The first value, expected to be greater</param>
2104 <param name="arg2">The second value, expected to be less</param>
2105 <param name="message">The message to display in case of failure</param>
2106 <param name="args">Array of objects to be used in formatting the message</param>
2107 </member>
2108 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
2109 <summary>
2110 Verifies that the first value is greater than or equal tothe second
2111 value. If it is not, then an
2112 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2113 </summary>
2114 <param name="arg1">The first value, expected to be greater</param>
2115 <param name="arg2">The second value, expected to be less</param>
2116 <param name="message">The message to display in case of failure</param>
2117 </member>
2118 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
2119 <summary>
2120 Verifies that the first value is greater than or equal tothe second
2121 value. If it is not, then an
2122 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2123 </summary>
2124 <param name="arg1">The first value, expected to be greater</param>
2125 <param name="arg2">The second value, expected to be less</param>
2126 </member>
2127 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
2128 <summary>
2129 Verifies that the first value is greater than or equal tothe second
2130 value. If it is not, then an
2131 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2132 </summary>
2133 <param name="arg1">The first value, expected to be greater</param>
2134 <param name="arg2">The second value, expected to be less</param>
2135 <param name="message">The message to display in case of failure</param>
2136 <param name="args">Array of objects to be used in formatting the message</param>
2137 </member>
2138 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
2139 <summary>
2140 Verifies that the first value is greater than or equal tothe second
2141 value. If it is not, then an
2142 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2143 </summary>
2144 <param name="arg1">The first value, expected to be greater</param>
2145 <param name="arg2">The second value, expected to be less</param>
2146 <param name="message">The message to display in case of failure</param>
2147 </member>
2148 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
2149 <summary>
2150 Verifies that the first value is greater than or equal tothe second
2151 value. If it is not, then an
2152 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2153 </summary>
2154 <param name="arg1">The first value, expected to be greater</param>
2155 <param name="arg2">The second value, expected to be less</param>
2156 </member>
2157 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
2158 <summary>
2159 Verifies that the first value is greater than or equal tothe second
2160 value. If it is not, then an
2161 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2162 </summary>
2163 <param name="arg1">The first value, expected to be greater</param>
2164 <param name="arg2">The second value, expected to be less</param>
2165 <param name="message">The message to display in case of failure</param>
2166 <param name="args">Array of objects to be used in formatting the message</param>
2167 </member>
2168 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
2169 <summary>
2170 Verifies that the first value is greater than or equal tothe second
2171 value. If it is not, then an
2172 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2173 </summary>
2174 <param name="arg1">The first value, expected to be greater</param>
2175 <param name="arg2">The second value, expected to be less</param>
2176 <param name="message">The message to display in case of failure</param>
2177 </member>
2178 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
2179 <summary>
2180 Verifies that the first value is greater than or equal tothe second
2181 value. If it is not, then an
2182 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2183 </summary>
2184 <param name="arg1">The first value, expected to be greater</param>
2185 <param name="arg2">The second value, expected to be less</param>
2186 </member>
2187 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
2188 <summary>
2189 Verifies that the first value is greater than or equal tothe second
2190 value. If it is not, then an
2191 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2192 </summary>
2193 <param name="arg1">The first value, expected to be greater</param>
2194 <param name="arg2">The second value, expected to be less</param>
2195 <param name="message">The message to display in case of failure</param>
2196 <param name="args">Array of objects to be used in formatting the message</param>
2197 </member>
2198 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
2199 <summary>
2200 Verifies that the first value is greater than or equal tothe second
2201 value. If it is not, then an
2202 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2203 </summary>
2204 <param name="arg1">The first value, expected to be greater</param>
2205 <param name="arg2">The second value, expected to be less</param>
2206 <param name="message">The message to display in case of failure</param>
2207 </member>
2208 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
2209 <summary>
2210 Verifies that the first value is greater than or equal tothe second
2211 value. If it is not, then an
2212 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2213 </summary>
2214 <param name="arg1">The first value, expected to be greater</param>
2215 <param name="arg2">The second value, expected to be less</param>
2216 </member>
2217 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
2218 <summary>
2219 Verifies that the first value is greater than or equal tothe second
2220 value. If it is not, then an
2221 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2222 </summary>
2223 <param name="arg1">The first value, expected to be greater</param>
2224 <param name="arg2">The second value, expected to be less</param>
2225 <param name="message">The message to display in case of failure</param>
2226 <param name="args">Array of objects to be used in formatting the message</param>
2227 </member>
2228 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
2229 <summary>
2230 Verifies that the first value is greater than or equal tothe second
2231 value. If it is not, then an
2232 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2233 </summary>
2234 <param name="arg1">The first value, expected to be greater</param>
2235 <param name="arg2">The second value, expected to be less</param>
2236 <param name="message">The message to display in case of failure</param>
2237 </member>
2238 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
2239 <summary>
2240 Verifies that the first value is greater than or equal tothe second
2241 value. If it is not, then an
2242 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2243 </summary>
2244 <param name="arg1">The first value, expected to be greater</param>
2245 <param name="arg2">The second value, expected to be less</param>
2246 </member>
2247 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
2248 <summary>
2249 Verifies that the first value is greater than or equal tothe second
2250 value. If it is not, then an
2251 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2252 </summary>
2253 <param name="arg1">The first value, expected to be greater</param>
2254 <param name="arg2">The second value, expected to be less</param>
2255 <param name="message">The message to display in case of failure</param>
2256 <param name="args">Array of objects to be used in formatting the message</param>
2257 </member>
2258 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
2259 <summary>
2260 Verifies that the first value is greater than or equal tothe second
2261 value. If it is not, then an
2262 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2263 </summary>
2264 <param name="arg1">The first value, expected to be greater</param>
2265 <param name="arg2">The second value, expected to be less</param>
2266 <param name="message">The message to display in case of failure</param>
2267 </member>
2268 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
2269 <summary>
2270 Verifies that the first value is greater than or equal tothe second
2271 value. If it is not, then an
2272 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2273 </summary>
2274 <param name="arg1">The first value, expected to be greater</param>
2275 <param name="arg2">The second value, expected to be less</param>
2276 </member>
2277 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
2278 <summary>
2279 Verifies that the first value is greater than or equal tothe second
2280 value. If it is not, then an
2281 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2282 </summary>
2283 <param name="arg1">The first value, expected to be greater</param>
2284 <param name="arg2">The second value, expected to be less</param>
2285 <param name="message">The message to display in case of failure</param>
2286 <param name="args">Array of objects to be used in formatting the message</param>
2287 </member>
2288 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
2289 <summary>
2290 Verifies that the first value is greater than or equal tothe second
2291 value. If it is not, then an
2292 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2293 </summary>
2294 <param name="arg1">The first value, expected to be greater</param>
2295 <param name="arg2">The second value, expected to be less</param>
2296 <param name="message">The message to display in case of failure</param>
2297 </member>
2298 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
2299 <summary>
2300 Verifies that the first value is greater than or equal tothe second
2301 value. If it is not, then an
2302 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2303 </summary>
2304 <param name="arg1">The first value, expected to be greater</param>
2305 <param name="arg2">The second value, expected to be less</param>
2306 </member>
2307 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
2308 <summary>
2309 Verifies that the first value is greater than or equal tothe second
2310 value. If it is not, then an
2311 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2312 </summary>
2313 <param name="arg1">The first value, expected to be greater</param>
2314 <param name="arg2">The second value, expected to be less</param>
2315 <param name="message">The message to display in case of failure</param>
2316 <param name="args">Array of objects to be used in formatting the message</param>
2317 </member>
2318 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
2319 <summary>
2320 Verifies that the first value is greater than or equal tothe second
2321 value. If it is not, then an
2322 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2323 </summary>
2324 <param name="arg1">The first value, expected to be greater</param>
2325 <param name="arg2">The second value, expected to be less</param>
2326 <param name="message">The message to display in case of failure</param>
2327 </member>
2328 <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
2329 <summary>
2330 Verifies that the first value is greater than or equal tothe second
2331 value. If it is not, then an
2332 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2333 </summary>
2334 <param name="arg1">The first value, expected to be greater</param>
2335 <param name="arg2">The second value, expected to be less</param>
2336 </member>
2337 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
2338 <summary>
2339 Verifies that the first value is less than or equal to the second
2340 value. If it is not, then an
2341 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2342 </summary>
2343 <param name="arg1">The first value, expected to be less</param>
2344 <param name="arg2">The second value, expected to be greater</param>
2345 <param name="message">The message to display in case of failure</param>
2346 <param name="args">Array of objects to be used in formatting the message</param>
2347 </member>
2348 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
2349 <summary>
2350 Verifies that the first value is less than or equal to the second
2351 value. If it is not, then an
2352 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2353 </summary>
2354 <param name="arg1">The first value, expected to be less</param>
2355 <param name="arg2">The second value, expected to be greater</param>
2356 <param name="message">The message to display in case of failure</param>
2357 </member>
2358 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
2359 <summary>
2360 Verifies that the first value is less than or equal to the second
2361 value. If it is not, then an
2362 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2363 </summary>
2364 <param name="arg1">The first value, expected to be less</param>
2365 <param name="arg2">The second value, expected to be greater</param>
2366 </member>
2367 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
2368 <summary>
2369 Verifies that the first value is less than or equal to the second
2370 value. If it is not, then an
2371 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2372 </summary>
2373 <param name="arg1">The first value, expected to be less</param>
2374 <param name="arg2">The second value, expected to be greater</param>
2375 <param name="message">The message to display in case of failure</param>
2376 <param name="args">Array of objects to be used in formatting the message</param>
2377 </member>
2378 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
2379 <summary>
2380 Verifies that the first value is less than or equal to the second
2381 value. If it is not, then an
2382 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2383 </summary>
2384 <param name="arg1">The first value, expected to be less</param>
2385 <param name="arg2">The second value, expected to be greater</param>
2386 <param name="message">The message to display in case of failure</param>
2387 </member>
2388 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
2389 <summary>
2390 Verifies that the first value is less than or equal to the second
2391 value. If it is not, then an
2392 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2393 </summary>
2394 <param name="arg1">The first value, expected to be less</param>
2395 <param name="arg2">The second value, expected to be greater</param>
2396 </member>
2397 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
2398 <summary>
2399 Verifies that the first value is less than or equal to the second
2400 value. If it is not, then an
2401 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2402 </summary>
2403 <param name="arg1">The first value, expected to be less</param>
2404 <param name="arg2">The second value, expected to be greater</param>
2405 <param name="message">The message to display in case of failure</param>
2406 <param name="args">Array of objects to be used in formatting the message</param>
2407 </member>
2408 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
2409 <summary>
2410 Verifies that the first value is less than or equal to the second
2411 value. If it is not, then an
2412 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2413 </summary>
2414 <param name="arg1">The first value, expected to be less</param>
2415 <param name="arg2">The second value, expected to be greater</param>
2416 <param name="message">The message to display in case of failure</param>
2417 </member>
2418 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
2419 <summary>
2420 Verifies that the first value is less than or equal to the second
2421 value. If it is not, then an
2422 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2423 </summary>
2424 <param name="arg1">The first value, expected to be less</param>
2425 <param name="arg2">The second value, expected to be greater</param>
2426 </member>
2427 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
2428 <summary>
2429 Verifies that the first value is less than or equal to the second
2430 value. If it is not, then an
2431 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2432 </summary>
2433 <param name="arg1">The first value, expected to be less</param>
2434 <param name="arg2">The second value, expected to be greater</param>
2435 <param name="message">The message to display in case of failure</param>
2436 <param name="args">Array of objects to be used in formatting the message</param>
2437 </member>
2438 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
2439 <summary>
2440 Verifies that the first value is less than or equal to the second
2441 value. If it is not, then an
2442 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2443 </summary>
2444 <param name="arg1">The first value, expected to be less</param>
2445 <param name="arg2">The second value, expected to be greater</param>
2446 <param name="message">The message to display in case of failure</param>
2447 </member>
2448 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
2449 <summary>
2450 Verifies that the first value is less than or equal to the second
2451 value. If it is not, then an
2452 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2453 </summary>
2454 <param name="arg1">The first value, expected to be less</param>
2455 <param name="arg2">The second value, expected to be greater</param>
2456 </member>
2457 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
2458 <summary>
2459 Verifies that the first value is less than or equal to the second
2460 value. If it is not, then an
2461 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2462 </summary>
2463 <param name="arg1">The first value, expected to be less</param>
2464 <param name="arg2">The second value, expected to be greater</param>
2465 <param name="message">The message to display in case of failure</param>
2466 <param name="args">Array of objects to be used in formatting the message</param>
2467 </member>
2468 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
2469 <summary>
2470 Verifies that the first value is less than or equal to the second
2471 value. If it is not, then an
2472 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2473 </summary>
2474 <param name="arg1">The first value, expected to be less</param>
2475 <param name="arg2">The second value, expected to be greater</param>
2476 <param name="message">The message to display in case of failure</param>
2477 </member>
2478 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
2479 <summary>
2480 Verifies that the first value is less than or equal to the second
2481 value. If it is not, then an
2482 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2483 </summary>
2484 <param name="arg1">The first value, expected to be less</param>
2485 <param name="arg2">The second value, expected to be greater</param>
2486 </member>
2487 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
2488 <summary>
2489 Verifies that the first value is less than or equal to the second
2490 value. If it is not, then an
2491 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2492 </summary>
2493 <param name="arg1">The first value, expected to be less</param>
2494 <param name="arg2">The second value, expected to be greater</param>
2495 <param name="message">The message to display in case of failure</param>
2496 <param name="args">Array of objects to be used in formatting the message</param>
2497 </member>
2498 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
2499 <summary>
2500 Verifies that the first value is less than or equal to the second
2501 value. If it is not, then an
2502 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2503 </summary>
2504 <param name="arg1">The first value, expected to be less</param>
2505 <param name="arg2">The second value, expected to be greater</param>
2506 <param name="message">The message to display in case of failure</param>
2507 </member>
2508 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
2509 <summary>
2510 Verifies that the first value is less than or equal to the second
2511 value. If it is not, then an
2512 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2513 </summary>
2514 <param name="arg1">The first value, expected to be less</param>
2515 <param name="arg2">The second value, expected to be greater</param>
2516 </member>
2517 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
2518 <summary>
2519 Verifies that the first value is less than or equal to the second
2520 value. If it is not, then an
2521 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2522 </summary>
2523 <param name="arg1">The first value, expected to be less</param>
2524 <param name="arg2">The second value, expected to be greater</param>
2525 <param name="message">The message to display in case of failure</param>
2526 <param name="args">Array of objects to be used in formatting the message</param>
2527 </member>
2528 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
2529 <summary>
2530 Verifies that the first value is less than or equal to the second
2531 value. If it is not, then an
2532 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2533 </summary>
2534 <param name="arg1">The first value, expected to be less</param>
2535 <param name="arg2">The second value, expected to be greater</param>
2536 <param name="message">The message to display in case of failure</param>
2537 </member>
2538 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
2539 <summary>
2540 Verifies that the first value is less than or equal to the second
2541 value. If it is not, then an
2542 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2543 </summary>
2544 <param name="arg1">The first value, expected to be less</param>
2545 <param name="arg2">The second value, expected to be greater</param>
2546 </member>
2547 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
2548 <summary>
2549 Verifies that the first value is less than or equal to the second
2550 value. If it is not, then an
2551 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2552 </summary>
2553 <param name="arg1">The first value, expected to be less</param>
2554 <param name="arg2">The second value, expected to be greater</param>
2555 <param name="message">The message to display in case of failure</param>
2556 <param name="args">Array of objects to be used in formatting the message</param>
2557 </member>
2558 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
2559 <summary>
2560 Verifies that the first value is less than or equal to the second
2561 value. If it is not, then an
2562 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2563 </summary>
2564 <param name="arg1">The first value, expected to be less</param>
2565 <param name="arg2">The second value, expected to be greater</param>
2566 <param name="message">The message to display in case of failure</param>
2567 </member>
2568 <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
2569 <summary>
2570 Verifies that the first value is less than or equal to the second
2571 value. If it is not, then an
2572 <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
2573 </summary>
2574 <param name="arg1">The first value, expected to be less</param>
2575 <param name="arg2">The second value, expected to be greater</param>
2576 </member>
2577 <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
2578 <summary>
2579 Asserts that an object is contained in a list.
2580 </summary>
2581 <param name="expected">The expected object</param>
2582 <param name="actual">The list to be examined</param>
2583 <param name="message">The message to display in case of failure</param>
2584 <param name="args">Array of objects to be used in formatting the message</param>
2585 </member>
2586 <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
2587 <summary>
2588 Asserts that an object is contained in a list.
2589 </summary>
2590 <param name="expected">The expected object</param>
2591 <param name="actual">The list to be examined</param>
2592 <param name="message">The message to display in case of failure</param>
2593 </member>
2594 <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
2595 <summary>
2596 Asserts that an object is contained in a list.
2597 </summary>
2598 <param name="expected">The expected object</param>
2599 <param name="actual">The list to be examined</param>
2600 </member>
2601 <member name="M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
2602 <summary>
2603 Helper for Assert.AreEqual(double expected, double actual, ...)
2604 allowing code generation to work consistently.
2605 </summary>
2606 <param name="expected">The expected value</param>
2607 <param name="actual">The actual value</param>
2608 <param name="delta">The maximum acceptable difference between the
2609 the expected and the actual</param>
2610 <param name="message">The message to display in case of failure</param>
2611 <param name="args">Array of objects to be used in formatting the message</param>
2612 </member>
2613 <member name="P:NUnit.Framework.Assert.Counter">
2614 <summary>
2615 Gets the number of assertions executed so far and
2616 resets the counter to zero.
2617 </summary>
2618 </member>
2619 <member name="T:NUnit.Framework.AssertionHelper">
2620 <summary>
2621 AssertionHelper is an optional base class for user tests,
2622 allowing the use of shorter names for constraints and
2623 asserts and avoiding conflict with the definition of
2624 <see cref="T:NUnit.Framework.Is"/>, from which it inherits much of its
2625 behavior, in certain mock object frameworks.
2626 </summary>
2627 </member>
2628 <member name="T:NUnit.Framework.Constraints.ConstraintFactory">
2629 <summary>
2630 Helper class with properties and methods that supply
2631 a number of constraints used in Asserts.
2632 </summary>
2633 </member>
2634 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Exactly(System.Int32)">
2635 <summary>
2636 Returns a ConstraintExpression, which will apply
2637 the following constraint to all members of a collection,
2638 succeeding only if a specified number of them succeed.
2639 </summary>
2640 </member>
2641 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)">
2642 <summary>
2643 Returns a new PropertyConstraintExpression, which will either
2644 test for the existence of the named property on the object
2645 being tested or apply any following constraint to that property.
2646 </summary>
2647 </member>
2648 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)">
2649 <summary>
2650 Returns a new AttributeConstraint checking for the
2651 presence of a particular attribute on an object.
2652 </summary>
2653 </member>
2654 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1">
2655 <summary>
2656 Returns a new AttributeConstraint checking for the
2657 presence of a particular attribute on an object.
2658 </summary>
2659 </member>
2660 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)">
2661 <summary>
2662 Returns a constraint that tests two items for equality
2663 </summary>
2664 </member>
2665 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)">
2666 <summary>
2667 Returns a constraint that tests that two references are the same object
2668 </summary>
2669 </member>
2670 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)">
2671 <summary>
2672 Returns a constraint that tests whether the
2673 actual value is greater than the suppled argument
2674 </summary>
2675 </member>
2676 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)">
2677 <summary>
2678 Returns a constraint that tests whether the
2679 actual value is greater than or equal to the suppled argument
2680 </summary>
2681 </member>
2682 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)">
2683 <summary>
2684 Returns a constraint that tests whether the
2685 actual value is greater than or equal to the suppled argument
2686 </summary>
2687 </member>
2688 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)">
2689 <summary>
2690 Returns a constraint that tests whether the
2691 actual value is less than the suppled argument
2692 </summary>
2693 </member>
2694 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)">
2695 <summary>
2696 Returns a constraint that tests whether the
2697 actual value is less than or equal to the suppled argument
2698 </summary>
2699 </member>
2700 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)">
2701 <summary>
2702 Returns a constraint that tests whether the
2703 actual value is less than or equal to the suppled argument
2704 </summary>
2705 </member>
2706 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)">
2707 <summary>
2708 Returns a constraint that tests whether the actual
2709 value is of the exact type supplied as an argument.
2710 </summary>
2711 </member>
2712 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1">
2713 <summary>
2714 Returns a constraint that tests whether the actual
2715 value is of the exact type supplied as an argument.
2716 </summary>
2717 </member>
2718 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)">
2719 <summary>
2720 Returns a constraint that tests whether the actual value
2721 is of the type supplied as an argument or a derived type.
2722 </summary>
2723 </member>
2724 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1">
2725 <summary>
2726 Returns a constraint that tests whether the actual value
2727 is of the type supplied as an argument or a derived type.
2728 </summary>
2729 </member>
2730 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)">
2731 <summary>
2732 Returns a constraint that tests whether the actual value
2733 is of the type supplied as an argument or a derived type.
2734 </summary>
2735 </member>
2736 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1">
2737 <summary>
2738 Returns a constraint that tests whether the actual value
2739 is of the type supplied as an argument or a derived type.
2740 </summary>
2741 </member>
2742 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)">
2743 <summary>
2744 Returns a constraint that tests whether the actual value
2745 is assignable from the type supplied as an argument.
2746 </summary>
2747 </member>
2748 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1">
2749 <summary>
2750 Returns a constraint that tests whether the actual value
2751 is assignable from the type supplied as an argument.
2752 </summary>
2753 </member>
2754 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)">
2755 <summary>
2756 Returns a constraint that tests whether the actual value
2757 is assignable from the type supplied as an argument.
2758 </summary>
2759 </member>
2760 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1">
2761 <summary>
2762 Returns a constraint that tests whether the actual value
2763 is assignable from the type supplied as an argument.
2764 </summary>
2765 </member>
2766 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)">
2767 <summary>
2768 Returns a constraint that tests whether the actual value
2769 is a collection containing the same elements as the
2770 collection supplied as an argument.
2771 </summary>
2772 </member>
2773 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)">
2774 <summary>
2775 Returns a constraint that tests whether the actual value
2776 is a subset of the collection supplied as an argument.
2777 </summary>
2778 </member>
2779 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)">
2780 <summary>
2781 Returns a new CollectionContainsConstraint checking for the
2782 presence of a particular object in the collection.
2783 </summary>
2784 </member>
2785 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)">
2786 <summary>
2787 Returns a new CollectionContainsConstraint checking for the
2788 presence of a particular object in the collection.
2789 </summary>
2790 </member>
2791 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)">
2792 <summary>
2793 Returns a new ContainsConstraint. This constraint
2794 will, in turn, make use of the appropriate second-level
2795 constraint, depending on the type of the actual argument.
2796 This overload is only used if the item sought is a string,
2797 since any other type implies that we are looking for a
2798 collection member.
2799 </summary>
2800 </member>
2801 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)">
2802 <summary>
2803 Returns a constraint that succeeds if the actual
2804 value contains the substring supplied as an argument.
2805 </summary>
2806 </member>
2807 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)">
2808 <summary>
2809 Returns a constraint that succeeds if the actual
2810 value contains the substring supplied as an argument.
2811 </summary>
2812 </member>
2813 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)">
2814 <summary>
2815 Returns a constraint that fails if the actual
2816 value contains the substring supplied as an argument.
2817 </summary>
2818 </member>
2819 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)">
2820 <summary>
2821 Returns a constraint that succeeds if the actual
2822 value starts with the substring supplied as an argument.
2823 </summary>
2824 </member>
2825 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)">
2826 <summary>
2827 Returns a constraint that succeeds if the actual
2828 value starts with the substring supplied as an argument.
2829 </summary>
2830 </member>
2831 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)">
2832 <summary>
2833 Returns a constraint that fails if the actual
2834 value starts with the substring supplied as an argument.
2835 </summary>
2836 </member>
2837 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)">
2838 <summary>
2839 Returns a constraint that succeeds if the actual
2840 value ends with the substring supplied as an argument.
2841 </summary>
2842 </member>
2843 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)">
2844 <summary>
2845 Returns a constraint that succeeds if the actual
2846 value ends with the substring supplied as an argument.
2847 </summary>
2848 </member>
2849 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)">
2850 <summary>
2851 Returns a constraint that fails if the actual
2852 value ends with the substring supplied as an argument.
2853 </summary>
2854 </member>
2855 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)">
2856 <summary>
2857 Returns a constraint that succeeds if the actual
2858 value matches the regular expression supplied as an argument.
2859 </summary>
2860 </member>
2861 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)">
2862 <summary>
2863 Returns a constraint that succeeds if the actual
2864 value matches the regular expression supplied as an argument.
2865 </summary>
2866 </member>
2867 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)">
2868 <summary>
2869 Returns a constraint that fails if the actual
2870 value matches the pattern supplied as an argument.
2871 </summary>
2872 </member>
2873 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)">
2874 <summary>
2875 Returns a constraint that tests whether the path provided
2876 is the same as an expected path after canonicalization.
2877 </summary>
2878 </member>
2879 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubPath(System.String)">
2880 <summary>
2881 Returns a constraint that tests whether the path provided
2882 is the same path or under an expected path after canonicalization.
2883 </summary>
2884 </member>
2885 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)">
2886 <summary>
2887 Returns a constraint that tests whether the path provided
2888 is the same path or under an expected path after canonicalization.
2889 </summary>
2890 </member>
2891 <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InRange``1(``0,``0)">
2892 <summary>
2893 Returns a constraint that tests whether the actual value falls
2894 within a specified range.
2895 </summary>
2896 </member>
2897 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Not">
2898 <summary>
2899 Returns a ConstraintExpression that negates any
2900 following constraint.
2901 </summary>
2902 </member>
2903 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.No">
2904 <summary>
2905 Returns a ConstraintExpression that negates any
2906 following constraint.
2907 </summary>
2908 </member>
2909 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.All">
2910 <summary>
2911 Returns a ConstraintExpression, which will apply
2912 the following constraint to all members of a collection,
2913 succeeding if all of them succeed.
2914 </summary>
2915 </member>
2916 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Some">
2917 <summary>
2918 Returns a ConstraintExpression, which will apply
2919 the following constraint to all members of a collection,
2920 succeeding if at least one of them succeeds.
2921 </summary>
2922 </member>
2923 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.None">
2924 <summary>
2925 Returns a ConstraintExpression, which will apply
2926 the following constraint to all members of a collection,
2927 succeeding if all of them fail.
2928 </summary>
2929 </member>
2930 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Length">
2931 <summary>
2932 Returns a new ConstraintExpression, which will apply the following
2933 constraint to the Length property of the object being tested.
2934 </summary>
2935 </member>
2936 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Count">
2937 <summary>
2938 Returns a new ConstraintExpression, which will apply the following
2939 constraint to the Count property of the object being tested.
2940 </summary>
2941 </member>
2942 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Message">
2943 <summary>
2944 Returns a new ConstraintExpression, which will apply the following
2945 constraint to the Message property of the object being tested.
2946 </summary>
2947 </member>
2948 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.InnerException">
2949 <summary>
2950 Returns a new ConstraintExpression, which will apply the following
2951 constraint to the InnerException property of the object being tested.
2952 </summary>
2953 </member>
2954 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Null">
2955 <summary>
2956 Returns a constraint that tests for null
2957 </summary>
2958 </member>
2959 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.True">
2960 <summary>
2961 Returns a constraint that tests for True
2962 </summary>
2963 </member>
2964 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.False">
2965 <summary>
2966 Returns a constraint that tests for False
2967 </summary>
2968 </member>
2969 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Positive">
2970 <summary>
2971 Returns a constraint that tests for a positive value
2972 </summary>
2973 </member>
2974 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Negative">
2975 <summary>
2976 Returns a constraint that tests for a negative value
2977 </summary>
2978 </member>
2979 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.NaN">
2980 <summary>
2981 Returns a constraint that tests for NaN
2982 </summary>
2983 </member>
2984 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Empty">
2985 <summary>
2986 Returns a constraint that tests for empty
2987 </summary>
2988 </member>
2989 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Unique">
2990 <summary>
2991 Returns a constraint that tests whether a collection
2992 contains all unique items.
2993 </summary>
2994 </member>
2995 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable">
2996 <summary>
2997 Returns a constraint that tests whether an object graph is serializable in binary format.
2998 </summary>
2999 </member>
3000 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable">
3001 <summary>
3002 Returns a constraint that tests whether an object graph is serializable in xml format.
3003 </summary>
3004 </member>
3005 <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Ordered">
3006 <summary>
3007 Returns a constraint that tests whether a collection is ordered
3008 </summary>
3009 </member>
3010 <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
3011 <summary>
3012 Apply a constraint to an actual value, succeeding if the constraint
3013 is satisfied and throwing an assertion exception on failure. Works
3014 identically to Assert.That.
3015 </summary>
3016 <param name="actual">The actual value to test</param>
3017 <param name="expression">A Constraint to be applied</param>
3018 </member>
3019 <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
3020 <summary>
3021 Apply a constraint to an actual value, succeeding if the constraint
3022 is satisfied and throwing an assertion exception on failure. Works
3023 identically to Assert.That.
3024 </summary>
3025 <param name="actual">The actual value to test</param>
3026 <param name="expression">A Constraint to be applied</param>
3027 <param name="message">The message to be displayed in case of failure</param>
3028 </member>
3029 <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
3030 <summary>
3031 Apply a constraint to an actual value, succeeding if the constraint
3032 is satisfied and throwing an assertion exception on failure. Works
3033 identically to Assert.That.
3034 </summary>
3035 <param name="actual">The actual value to test</param>
3036 <param name="expression">A Constraint to be applied</param>
3037 <param name="message">The message to be displayed in case of failure</param>
3038 <param name="args">Arguments to use in formatting the message</param>
3039 </member>
3040 <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
3041 <summary>
3042 Asserts that a condition is true. If the condition is false the method throws
3043 an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
3044 <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
3045 </summary>
3046 <param name="condition">The evaluated condition</param>
3047 <param name="message">The message to display if the condition is false</param>
3048 <param name="args">Arguments to be used in formatting the message</param>
3049 </member>
3050 <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
3051 <summary>
3052 Asserts that a condition is true. If the condition is false the method throws
3053 an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
3054 <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
3055 </summary>
3056 <param name="condition">The evaluated condition</param>
3057 <param name="message">The message to display if the condition is false</param>
3058 </member>
3059 <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
3060 <summary>
3061 Asserts that a condition is true. If the condition is false the method throws
3062 an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
3063 </summary>
3064 <param name="condition">The evaluated condition</param>
3065 </member>
3066 <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
3067 <summary>
3068 Apply a constraint to an actual value, succeeding if the constraint
3069 is satisfied and throwing an assertion exception on failure.
3070 </summary>
3071 <param name="expr">A Constraint expression to be applied</param>
3072 <param name="del">An ActualValueDelegate returning the value to be tested</param>
3073 </member>
3074 <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
3075 <summary>
3076 Apply a constraint to an actual value, succeeding if the constraint
3077 is satisfied and throwing an assertion exception on failure.
3078 </summary>
3079 <param name="expr">A Constraint expression to be applied</param>
3080 <param name="del">An ActualValueDelegate returning the value to be tested</param>
3081 <param name="message">The message that will be displayed on failure</param>
3082 </member>
3083 <member name="M:NUnit.Framework.AssertionHelper.Expect``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
3084 <summary>
3085 Apply a constraint to an actual value, succeeding if the constraint
3086 is satisfied and throwing an assertion exception on failure.
3087 </summary>
3088 <param name="del">An ActualValueDelegate returning the value to be tested</param>
3089 <param name="expr">A Constraint expression to be applied</param>
3090 <param name="message">The message that will be displayed on failure</param>
3091 <param name="args">Arguments to be used in formatting the message</param>
3092 </member>
3093 <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
3094 <summary>
3095 Apply a constraint to a referenced value, succeeding if the constraint
3096 is satisfied and throwing an assertion exception on failure.
3097 </summary>
3098 <param name="actual">The actual value to test</param>
3099 <param name="expression">A Constraint to be applied</param>
3100 </member>
3101 <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
3102 <summary>
3103 Apply a constraint to a referenced value, succeeding if the constraint
3104 is satisfied and throwing an assertion exception on failure.
3105 </summary>
3106 <param name="actual">The actual value to test</param>
3107 <param name="expression">A Constraint to be applied</param>
3108 <param name="message">The message that will be displayed on failure</param>
3109 </member>
3110 <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
3111 <summary>
3112 Apply a constraint to a referenced value, succeeding if the constraint
3113 is satisfied and throwing an assertion exception on failure.
3114 </summary>
3115 <param name="actual">The actual value to test</param>
3116 <param name="expression">A Constraint to be applied</param>
3117 <param name="message">The message that will be displayed on failure</param>
3118 <param name="args">Arguments to be used in formatting the message</param>
3119 </member>
3120 <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
3121 <summary>
3122 Asserts that the code represented by a delegate throws an exception
3123 that satisfies the constraint provided.
3124 </summary>
3125 <param name="code">A TestDelegate to be executed</param>
3126 <param name="constraint">A ThrowsConstraint used in the test</param>
3127 </member>
3128 <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
3129 <summary>
3130 Returns a ListMapper based on a collection.
3131 </summary>
3132 <param name="original">The original collection</param>
3133 <returns></returns>
3134 </member>
3135 <member name="T:NUnit.Framework.Assume">
3136 <summary>
3137 Provides static methods to express the assumptions
3138 that must be met for a test to give a meaningful
3139 result. If an assumption is not met, the test
3140 should produce an inconclusive result.
3141 </summary>
3142 </member>
3143 <member name="M:NUnit.Framework.Assume.Equals(System.Object,System.Object)">
3144 <summary>
3145 The Equals method throws an AssertionException. This is done
3146 to make sure there is no mistake by calling this function.
3147 </summary>
3148 <param name="a"></param>
3149 <param name="b"></param>
3150 </member>
3151 <member name="M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)">
3152 <summary>
3153 override the default ReferenceEquals to throw an AssertionException. This
3154 implementation makes sure there is no mistake in calling this function
3155 as part of Assert.
3156 </summary>
3157 <param name="a"></param>
3158 <param name="b"></param>
3159 </member>
3160 <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
3161 <summary>
3162 Apply a constraint to an actual value, succeeding if the constraint
3163 is satisfied and throwing an InconclusiveException on failure.
3164 </summary>
3165 <param name="expression">A Constraint expression to be applied</param>
3166 <param name="actual">The actual value to test</param>
3167 </member>
3168 <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
3169 <summary>
3170 Apply a constraint to an actual value, succeeding if the constraint
3171 is satisfied and throwing an InconclusiveException on failure.
3172 </summary>
3173 <param name="expression">A Constraint expression to be applied</param>
3174 <param name="actual">The actual value to test</param>
3175 <param name="message">The message that will be displayed on failure</param>
3176 </member>
3177 <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
3178 <summary>
3179 Apply a constraint to an actual value, succeeding if the constraint
3180 is satisfied and throwing an InconclusiveException on failure.
3181 </summary>
3182 <param name="expression">A Constraint expression to be applied</param>
3183 <param name="actual">The actual value to test</param>
3184 <param name="message">The message that will be displayed on failure</param>
3185 <param name="args">Arguments to be used in formatting the message</param>
3186 </member>
3187 <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String,System.Object[])">
3188 <summary>
3189 Asserts that a condition is true. If the condition is false the method throws
3190 an <see cref="T:NUnit.Framework.InconclusiveException"/>.
3191 </summary>
3192 <param name="condition">The evaluated condition</param>
3193 <param name="message">The message to display if the condition is false</param>
3194 <param name="args">Arguments to be used in formatting the message</param>
3195 </member>
3196 <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String)">
3197 <summary>
3198 Asserts that a condition is true. If the condition is false the method throws
3199 an <see cref="T:NUnit.Framework.InconclusiveException"/>.
3200 </summary>
3201 <param name="condition">The evaluated condition</param>
3202 <param name="message">The message to display if the condition is false</param>
3203 </member>
3204 <member name="M:NUnit.Framework.Assume.That(System.Boolean)">
3205 <summary>
3206 Asserts that a condition is true. If the condition is false the
3207 method throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
3208 </summary>
3209 <param name="condition">The evaluated condition</param>
3210 </member>
3211 <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint)">
3212 <summary>
3213 Apply a constraint to an actual value, succeeding if the constraint
3214 is satisfied and throwing an InconclusiveException on failure.
3215 </summary>
3216 <param name="expr">A Constraint expression to be applied</param>
3217 <param name="del">An ActualValueDelegate returning the value to be tested</param>
3218 </member>
3219 <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String)">
3220 <summary>
3221 Apply a constraint to an actual value, succeeding if the constraint
3222 is satisfied and throwing an InconclusiveException on failure.
3223 </summary>
3224 <param name="expr">A Constraint expression to be applied</param>
3225 <param name="del">An ActualValueDelegate returning the value to be tested</param>
3226 <param name="message">The message that will be displayed on failure</param>
3227 </member>
3228 <member name="M:NUnit.Framework.Assume.That``1(NUnit.Framework.Constraints.ActualValueDelegate{``0},NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
3229 <summary>
3230 Apply a constraint to an actual value, succeeding if the constraint
3231 is satisfied and throwing an InconclusiveException on failure.
3232 </summary>
3233 <param name="del">An ActualValueDelegate returning the value to be tested</param>
3234 <param name="expr">A Constraint expression to be applied</param>
3235 <param name="message">The message that will be displayed on failure</param>
3236 <param name="args">Arguments to be used in formatting the message</param>
3237 </member>
3238 <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
3239 <summary>
3240 Apply a constraint to a referenced value, succeeding if the constraint
3241 is satisfied and throwing an InconclusiveException on failure.
3242 </summary>
3243 <param name="expression">A Constraint expression to be applied</param>
3244 <param name="actual">The actual value to test</param>
3245 </member>
3246 <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
3247 <summary>
3248 Apply a constraint to a referenced value, succeeding if the constraint
3249 is satisfied and throwing an InconclusiveException on failure.
3250 </summary>
3251 <param name="expression">A Constraint expression to be applied</param>
3252 <param name="actual">The actual value to test</param>
3253 <param name="message">The message that will be displayed on failure</param>
3254 </member>
3255 <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
3256 <summary>
3257 Apply a constraint to a referenced value, succeeding if the constraint
3258 is satisfied and throwing an InconclusiveException on failure.
3259 </summary>
3260 <param name="expression">A Constraint expression to be applied</param>
3261 <param name="actual">The actual value to test</param>
3262 <param name="message">The message that will be displayed on failure</param>
3263 <param name="args">Arguments to be used in formatting the message</param>
3264 </member>
3265 <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
3266 <summary>
3267 Asserts that the code represented by a delegate throws an exception
3268 that satisfies the constraint provided.
3269 </summary>
3270 <param name="code">A TestDelegate to be executed</param>
3271 <param name="constraint">A ThrowsConstraint used in the test</param>
3272 </member>
3273 <member name="M:NUnit.Framework.AsyncInvocationRegion.WaitForPendingOperationsToComplete(System.Object)">
3274 <summary>
3275 Waits for pending asynchronous operations to complete, if appropriate,
3276 and returns a proper result of the invocation by unwrapping task results
3277 </summary>
3278 <param name="invocationResult">The raw result of the method invocation</param>
3279 <returns>The unwrapped result, if necessary</returns>
3280 </member>
3281 <member name="T:NUnit.Framework.CollectionAssert">
3282 <summary>
3283 A set of Assert methods operationg on one or more collections
3284 </summary>
3285 </member>
3286 <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
3287 <summary>
3288 The Equals method throws an AssertionException. This is done
3289 to make sure there is no mistake by calling this function.
3290 </summary>
3291 <param name="a"></param>
3292 <param name="b"></param>
3293 </member>
3294 <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
3295 <summary>
3296 override the default ReferenceEquals to throw an AssertionException. This
3297 implementation makes sure there is no mistake in calling this function
3298 as part of Assert.
3299 </summary>
3300 <param name="a"></param>
3301 <param name="b"></param>
3302 </member>
3303 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
3304 <summary>
3305 Asserts that all items contained in collection are of the type specified by expectedType.
3306 </summary>
3307 <param name="collection">IEnumerable containing objects to be considered</param>
3308 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
3309 </member>
3310 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
3311 <summary>
3312 Asserts that all items contained in collection are of the type specified by expectedType.
3313 </summary>
3314 <param name="collection">IEnumerable containing objects to be considered</param>
3315 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
3316 <param name="message">The message that will be displayed on failure</param>
3317 </member>
3318 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
3319 <summary>
3320 Asserts that all items contained in collection are of the type specified by expectedType.
3321 </summary>
3322 <param name="collection">IEnumerable containing objects to be considered</param>
3323 <param name="expectedType">System.Type that all objects in collection must be instances of</param>
3324 <param name="message">The message that will be displayed on failure</param>
3325 <param name="args">Arguments to be used in formatting the message</param>
3326 </member>
3327 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)">
3328 <summary>
3329 Asserts that all items contained in collection are not equal to null.
3330 </summary>
3331 <param name="collection">IEnumerable containing objects to be considered</param>
3332 </member>
3333 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
3334 <summary>
3335 Asserts that all items contained in collection are not equal to null.
3336 </summary>
3337 <param name="collection">IEnumerable containing objects to be considered</param>
3338 <param name="message">The message that will be displayed on failure</param>
3339 </member>
3340 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
3341 <summary>
3342 Asserts that all items contained in collection are not equal to null.
3343 </summary>
3344 <param name="collection">IEnumerable of objects to be considered</param>
3345 <param name="message">The message that will be displayed on failure</param>
3346 <param name="args">Arguments to be used in formatting the message</param>
3347 </member>
3348 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)">
3349 <summary>
3350 Ensures that every object contained in collection exists within the collection
3351 once and only once.
3352 </summary>
3353 <param name="collection">IEnumerable of objects to be considered</param>
3354 </member>
3355 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
3356 <summary>
3357 Ensures that every object contained in collection exists within the collection
3358 once and only once.
3359 </summary>
3360 <param name="collection">IEnumerable of objects to be considered</param>
3361 <param name="message">The message that will be displayed on failure</param>
3362 </member>
3363 <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
3364 <summary>
3365 Ensures that every object contained in collection exists within the collection
3366 once and only once.
3367 </summary>
3368 <param name="collection">IEnumerable of objects to be considered</param>
3369 <param name="message">The message that will be displayed on failure</param>
3370 <param name="args">Arguments to be used in formatting the message</param>
3371 </member>
3372 <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3373 <summary>
3374 Asserts that expected and actual are exactly equal. The collections must have the same count,
3375 and contain the exact same objects in the same order.
3376 </summary>
3377 <param name="expected">The first IEnumerable of objects to be considered</param>
3378 <param name="actual">The second IEnumerable of objects to be considered</param>
3379 </member>
3380 <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
3381 <summary>
3382 Asserts that expected and actual are exactly equal. The collections must have the same count,
3383 and contain the exact same objects in the same order.
3384 If comparer is not null then it will be used to compare the objects.
3385 </summary>
3386 <param name="expected">The first IEnumerable of objects to be considered</param>
3387 <param name="actual">The second IEnumerable of objects to be considered</param>
3388 <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
3389 </member>
3390 <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
3391 <summary>
3392 Asserts that expected and actual are exactly equal. The collections must have the same count,
3393 and contain the exact same objects in the same order.
3394 </summary>
3395 <param name="expected">The first IEnumerable of objects to be considered</param>
3396 <param name="actual">The second IEnumerable of objects to be considered</param>
3397 <param name="message">The message that will be displayed on failure</param>
3398 </member>
3399 <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
3400 <summary>
3401 Asserts that expected and actual are exactly equal. The collections must have the same count,
3402 and contain the exact same objects in the same order.
3403 If comparer is not null then it will be used to compare the objects.
3404 </summary>
3405 <param name="expected">The first IEnumerable of objects to be considered</param>
3406 <param name="actual">The second IEnumerable of objects to be considered</param>
3407 <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
3408 <param name="message">The message that will be displayed on failure</param>
3409 </member>
3410 <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
3411 <summary>
3412 Asserts that expected and actual are exactly equal. The collections must have the same count,
3413 and contain the exact same objects in the same order.
3414 </summary>
3415 <param name="expected">The first IEnumerable of objects to be considered</param>
3416 <param name="actual">The second IEnumerable of objects to be considered</param>
3417 <param name="message">The message that will be displayed on failure</param>
3418 <param name="args">Arguments to be used in formatting the message</param>
3419 </member>
3420 <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
3421 <summary>
3422 Asserts that expected and actual are exactly equal. The collections must have the same count,
3423 and contain the exact same objects in the same order.
3424 If comparer is not null then it will be used to compare the objects.
3425 </summary>
3426 <param name="expected">The first IEnumerable of objects to be considered</param>
3427 <param name="actual">The second IEnumerable of objects to be considered</param>
3428 <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
3429 <param name="message">The message that will be displayed on failure</param>
3430 <param name="args">Arguments to be used in formatting the message</param>
3431 </member>
3432 <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3433 <summary>
3434 Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
3435 </summary>
3436 <param name="expected">The first IEnumerable of objects to be considered</param>
3437 <param name="actual">The second IEnumerable of objects to be considered</param>
3438 </member>
3439 <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
3440 <summary>
3441 Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
3442 </summary>
3443 <param name="expected">The first IEnumerable of objects to be considered</param>
3444 <param name="actual">The second IEnumerable of objects to be considered</param>
3445 <param name="message">The message that will be displayed on failure</param>
3446 </member>
3447 <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
3448 <summary>
3449 Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
3450 </summary>
3451 <param name="expected">The first IEnumerable of objects to be considered</param>
3452 <param name="actual">The second IEnumerable of objects to be considered</param>
3453 <param name="message">The message that will be displayed on failure</param>
3454 <param name="args">Arguments to be used in formatting the message</param>
3455 </member>
3456 <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3457 <summary>
3458 Asserts that expected and actual are not exactly equal.
3459 </summary>
3460 <param name="expected">The first IEnumerable of objects to be considered</param>
3461 <param name="actual">The second IEnumerable of objects to be considered</param>
3462 </member>
3463 <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
3464 <summary>
3465 Asserts that expected and actual are not exactly equal.
3466 If comparer is not null then it will be used to compare the objects.
3467 </summary>
3468 <param name="expected">The first IEnumerable of objects to be considered</param>
3469 <param name="actual">The second IEnumerable of objects to be considered</param>
3470 <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
3471 </member>
3472 <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
3473 <summary>
3474 Asserts that expected and actual are not exactly equal.
3475 </summary>
3476 <param name="expected">The first IEnumerable of objects to be considered</param>
3477 <param name="actual">The second IEnumerable of objects to be considered</param>
3478 <param name="message">The message that will be displayed on failure</param>
3479 </member>
3480 <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
3481 <summary>
3482 Asserts that expected and actual are not exactly equal.
3483 If comparer is not null then it will be used to compare the objects.
3484 </summary>
3485 <param name="expected">The first IEnumerable of objects to be considered</param>
3486 <param name="actual">The second IEnumerable of objects to be considered</param>
3487 <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
3488 <param name="message">The message that will be displayed on failure</param>
3489 </member>
3490 <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
3491 <summary>
3492 Asserts that expected and actual are not exactly equal.
3493 </summary>
3494 <param name="expected">The first IEnumerable of objects to be considered</param>
3495 <param name="actual">The second IEnumerable of objects to be considered</param>
3496 <param name="message">The message that will be displayed on failure</param>
3497 <param name="args">Arguments to be used in formatting the message</param>
3498 </member>
3499 <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
3500 <summary>
3501 Asserts that expected and actual are not exactly equal.
3502 If comparer is not null then it will be used to compare the objects.
3503 </summary>
3504 <param name="expected">The first IEnumerable of objects to be considered</param>
3505 <param name="actual">The second IEnumerable of objects to be considered</param>
3506 <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
3507 <param name="message">The message that will be displayed on failure</param>
3508 <param name="args">Arguments to be used in formatting the message</param>
3509 </member>
3510 <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3511 <summary>
3512 Asserts that expected and actual are not equivalent.
3513 </summary>
3514 <param name="expected">The first IEnumerable of objects to be considered</param>
3515 <param name="actual">The second IEnumerable of objects to be considered</param>
3516 </member>
3517 <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
3518 <summary>
3519 Asserts that expected and actual are not equivalent.
3520 </summary>
3521 <param name="expected">The first IEnumerable of objects to be considered</param>
3522 <param name="actual">The second IEnumerable of objects to be considered</param>
3523 <param name="message">The message that will be displayed on failure</param>
3524 </member>
3525 <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
3526 <summary>
3527 Asserts that expected and actual are not equivalent.
3528 </summary>
3529 <param name="expected">The first IEnumerable of objects to be considered</param>
3530 <param name="actual">The second IEnumerable of objects to be considered</param>
3531 <param name="message">The message that will be displayed on failure</param>
3532 <param name="args">Arguments to be used in formatting the message</param>
3533 </member>
3534 <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)">
3535 <summary>
3536 Asserts that collection contains actual as an item.
3537 </summary>
3538 <param name="collection">IEnumerable of objects to be considered</param>
3539 <param name="actual">Object to be found within collection</param>
3540 </member>
3541 <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
3542 <summary>
3543 Asserts that collection contains actual as an item.
3544 </summary>
3545 <param name="collection">IEnumerable of objects to be considered</param>
3546 <param name="actual">Object to be found within collection</param>
3547 <param name="message">The message that will be displayed on failure</param>
3548 </member>
3549 <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
3550 <summary>
3551 Asserts that collection contains actual as an item.
3552 </summary>
3553 <param name="collection">IEnumerable of objects to be considered</param>
3554 <param name="actual">Object to be found within collection</param>
3555 <param name="message">The message that will be displayed on failure</param>
3556 <param name="args">Arguments to be used in formatting the message</param>
3557 </member>
3558 <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)">
3559 <summary>
3560 Asserts that collection does not contain actual as an item.
3561 </summary>
3562 <param name="collection">IEnumerable of objects to be considered</param>
3563 <param name="actual">Object that cannot exist within collection</param>
3564 </member>
3565 <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
3566 <summary>
3567 Asserts that collection does not contain actual as an item.
3568 </summary>
3569 <param name="collection">IEnumerable of objects to be considered</param>
3570 <param name="actual">Object that cannot exist within collection</param>
3571 <param name="message">The message that will be displayed on failure</param>
3572 </member>
3573 <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
3574 <summary>
3575 Asserts that collection does not contain actual as an item.
3576 </summary>
3577 <param name="collection">IEnumerable of objects to be considered</param>
3578 <param name="actual">Object that cannot exist within collection</param>
3579 <param name="message">The message that will be displayed on failure</param>
3580 <param name="args">Arguments to be used in formatting the message</param>
3581 </member>
3582 <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3583 <summary>
3584 Asserts that superset is not a subject of subset.
3585 </summary>
3586 <param name="subset">The IEnumerable superset to be considered</param>
3587 <param name="superset">The IEnumerable subset to be considered</param>
3588 </member>
3589 <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
3590 <summary>
3591 Asserts that superset is not a subject of subset.
3592 </summary>
3593 <param name="subset">The IEnumerable superset to be considered</param>
3594 <param name="superset">The IEnumerable subset to be considered</param>
3595 <param name="message">The message that will be displayed on failure</param>
3596 </member>
3597 <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
3598 <summary>
3599 Asserts that superset is not a subject of subset.
3600 </summary>
3601 <param name="subset">The IEnumerable superset to be considered</param>
3602 <param name="superset">The IEnumerable subset to be considered</param>
3603 <param name="message">The message that will be displayed on failure</param>
3604 <param name="args">Arguments to be used in formatting the message</param>
3605 </member>
3606 <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
3607 <summary>
3608 Asserts that superset is a subset of subset.
3609 </summary>
3610 <param name="subset">The IEnumerable superset to be considered</param>
3611 <param name="superset">The IEnumerable subset to be considered</param>
3612 </member>
3613 <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
3614 <summary>
3615 Asserts that superset is a subset of subset.
3616 </summary>
3617 <param name="subset">The IEnumerable superset to be considered</param>
3618 <param name="superset">The IEnumerable subset to be considered</param>
3619 <param name="message">The message that will be displayed on failure</param>
3620 </member>
3621 <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
3622 <summary>
3623 Asserts that superset is a subset of subset.
3624 </summary>
3625 <param name="subset">The IEnumerable superset to be considered</param>
3626 <param name="superset">The IEnumerable subset to be considered</param>
3627 <param name="message">The message that will be displayed on failure</param>
3628 <param name="args">Arguments to be used in formatting the message</param>
3629 </member>
3630 <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
3631 <summary>
3632 Assert that an array, list or other collection is empty
3633 </summary>
3634 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3635 <param name="message">The message to be displayed on failure</param>
3636 <param name="args">Arguments to be used in formatting the message</param>
3637 </member>
3638 <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
3639 <summary>
3640 Assert that an array, list or other collection is empty
3641 </summary>
3642 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3643 <param name="message">The message to be displayed on failure</param>
3644 </member>
3645 <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
3646 <summary>
3647 Assert that an array,list or other collection is empty
3648 </summary>
3649 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3650 </member>
3651 <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
3652 <summary>
3653 Assert that an array, list or other collection is empty
3654 </summary>
3655 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3656 <param name="message">The message to be displayed on failure</param>
3657 <param name="args">Arguments to be used in formatting the message</param>
3658 </member>
3659 <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
3660 <summary>
3661 Assert that an array, list or other collection is empty
3662 </summary>
3663 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3664 <param name="message">The message to be displayed on failure</param>
3665 </member>
3666 <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
3667 <summary>
3668 Assert that an array,list or other collection is empty
3669 </summary>
3670 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3671 </member>
3672 <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])">
3673 <summary>
3674 Assert that an array, list or other collection is ordered
3675 </summary>
3676 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3677 <param name="message">The message to be displayed on failure</param>
3678 <param name="args">Arguments to be used in formatting the message</param>
3679 </member>
3680 <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)">
3681 <summary>
3682 Assert that an array, list or other collection is ordered
3683 </summary>
3684 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3685 <param name="message">The message to be displayed on failure</param>
3686 </member>
3687 <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)">
3688 <summary>
3689 Assert that an array, list or other collection is ordered
3690 </summary>
3691 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3692 </member>
3693 <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
3694 <summary>
3695 Assert that an array, list or other collection is ordered
3696 </summary>
3697 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3698 <param name="comparer">A custom comparer to perform the comparisons</param>
3699 <param name="message">The message to be displayed on failure</param>
3700 <param name="args">Arguments to be used in formatting the message</param>
3701 </member>
3702 <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
3703 <summary>
3704 Assert that an array, list or other collection is ordered
3705 </summary>
3706 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3707 <param name="comparer">A custom comparer to perform the comparisons</param>
3708 <param name="message">The message to be displayed on failure</param>
3709 </member>
3710 <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)">
3711 <summary>
3712 Assert that an array, list or other collection is ordered
3713 </summary>
3714 <param name="collection">An array, list or other collection implementing IEnumerable</param>
3715 <param name="comparer">A custom comparer to perform the comparisons</param>
3716 </member>
3717 <member name="T:NUnit.Framework.Contains">
3718 <summary>
3719 Helper class with properties and methods that supply
3720 a number of constraints used in Asserts.
3721 </summary>
3722 </member>
3723 <member name="M:NUnit.Framework.Contains.Item(System.Object)">
3724 <summary>
3725 Returns a new CollectionContainsConstraint checking for the
3726 presence of a particular object in the collection.
3727 </summary>
3728 </member>
3729 <member name="M:NUnit.Framework.Contains.Substring(System.String)">
3730 <summary>
3731 Returns a constraint that succeeds if the actual
3732 value contains the substring supplied as an argument.
3733 </summary>
3734 </member>
3735 <member name="T:NUnit.Framework.DirectoryAssert">
3736 <summary>
3737 Summary description for DirectoryAssert
3738 </summary>
3739 </member>
3740 <member name="M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)">
3741 <summary>
3742 The Equals method throws an AssertionException. This is done
3743 to make sure there is no mistake by calling this function.
3744 </summary>
3745 <param name="a"></param>
3746 <param name="b"></param>
3747 </member>
3748 <member name="M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)">
3749 <summary>
3750 override the default ReferenceEquals to throw an AssertionException. This
3751 implementation makes sure there is no mistake in calling this function
3752 as part of Assert.
3753 </summary>
3754 <param name="a"></param>
3755 <param name="b"></param>
3756 </member>
3757 <member name="M:NUnit.Framework.DirectoryAssert.#ctor">
3758 <summary>
3759 We don't actually want any instances of this object, but some people
3760 like to inherit from it to add other static methods. Hence, the
3761 protected constructor disallows any instances of this object.
3762 </summary>
3763 </member>
3764 <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
3765 <summary>
3766 Verifies that two directories are equal. Two directories are considered
3767 equal if both are null, or if both have the same value byte for byte.
3768 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3769 </summary>
3770 <param name="expected">A directory containing the value that is expected</param>
3771 <param name="actual">A directory containing the actual value</param>
3772 <param name="message">The message to display if directories are not equal</param>
3773 <param name="args">Arguments to be used in formatting the message</param>
3774 </member>
3775 <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
3776 <summary>
3777 Verifies that two directories are equal. Two directories are considered
3778 equal if both are null, or if both have the same value byte for byte.
3779 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3780 </summary>
3781 <param name="expected">A directory containing the value that is expected</param>
3782 <param name="actual">A directory containing the actual value</param>
3783 <param name="message">The message to display if directories are not equal</param>
3784 </member>
3785 <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
3786 <summary>
3787 Verifies that two directories are equal. Two directories are considered
3788 equal if both are null, or if both have the same value byte for byte.
3789 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3790 </summary>
3791 <param name="expected">A directory containing the value that is expected</param>
3792 <param name="actual">A directory containing the actual value</param>
3793 </member>
3794 <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
3795 <summary>
3796 Verifies that two directories are equal. Two directories are considered
3797 equal if both are null, or if both have the same value byte for byte.
3798 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3799 </summary>
3800 <param name="expected">A directory path string containing the value that is expected</param>
3801 <param name="actual">A directory path string containing the actual value</param>
3802 <param name="message">The message to display if directories are not equal</param>
3803 <param name="args">Arguments to be used in formatting the message</param>
3804 </member>
3805 <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)">
3806 <summary>
3807 Verifies that two directories are equal. Two directories are considered
3808 equal if both are null, or if both have the same value byte for byte.
3809 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3810 </summary>
3811 <param name="expected">A directory path string containing the value that is expected</param>
3812 <param name="actual">A directory path string containing the actual value</param>
3813 <param name="message">The message to display if directories are not equal</param>
3814 </member>
3815 <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)">
3816 <summary>
3817 Verifies that two directories are equal. Two directories are considered
3818 equal if both are null, or if both have the same value byte for byte.
3819 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3820 </summary>
3821 <param name="expected">A directory path string containing the value that is expected</param>
3822 <param name="actual">A directory path string containing the actual value</param>
3823 </member>
3824 <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
3825 <summary>
3826 Asserts that two directories are not equal. If they are equal
3827 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3828 </summary>
3829 <param name="expected">A directory containing the value that is expected</param>
3830 <param name="actual">A directory containing the actual value</param>
3831 <param name="message">The message to display if directories are not equal</param>
3832 <param name="args">Arguments to be used in formatting the message</param>
3833 </member>
3834 <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
3835 <summary>
3836 Asserts that two directories are not equal. If they are equal
3837 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3838 </summary>
3839 <param name="expected">A directory containing the value that is expected</param>
3840 <param name="actual">A directory containing the actual value</param>
3841 <param name="message">The message to display if directories are not equal</param>
3842 </member>
3843 <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
3844 <summary>
3845 Asserts that two directories are not equal. If they are equal
3846 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3847 </summary>
3848 <param name="expected">A directory containing the value that is expected</param>
3849 <param name="actual">A directory containing the actual value</param>
3850 </member>
3851 <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
3852 <summary>
3853 Asserts that two directories are not equal. If they are equal
3854 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3855 </summary>
3856 <param name="expected">A directory path string containing the value that is expected</param>
3857 <param name="actual">A directory path string containing the actual value</param>
3858 <param name="message">The message to display if directories are equal</param>
3859 <param name="args">Arguments to be used in formatting the message</param>
3860 </member>
3861 <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String)">
3862 <summary>
3863 Asserts that two directories are not equal. If they are equal
3864 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3865 </summary>
3866 <param name="expected">A directory path string containing the value that is expected</param>
3867 <param name="actual">A directory path string containing the actual value</param>
3868 <param name="message">The message to display if directories are equal</param>
3869 </member>
3870 <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String)">
3871 <summary>
3872 Asserts that two directories are not equal. If they are equal
3873 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3874 </summary>
3875 <param name="expected">A directory path string containing the value that is expected</param>
3876 <param name="actual">A directory path string containing the actual value</param>
3877 </member>
3878 <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
3879 <summary>
3880 Asserts that the directory is empty. If it is not empty
3881 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3882 </summary>
3883 <param name="directory">A directory to search</param>
3884 <param name="message">The message to display if directories are not equal</param>
3885 <param name="args">Arguments to be used in formatting the message</param>
3886 </member>
3887 <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String)">
3888 <summary>
3889 Asserts that the directory is empty. If it is not empty
3890 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3891 </summary>
3892 <param name="directory">A directory to search</param>
3893 <param name="message">The message to display if directories are not equal</param>
3894 </member>
3895 <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo)">
3896 <summary>
3897 Asserts that the directory is empty. If it is not empty
3898 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3899 </summary>
3900 <param name="directory">A directory to search</param>
3901 </member>
3902 <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String,System.Object[])">
3903 <summary>
3904 Asserts that the directory is empty. If it is not empty
3905 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3906 </summary>
3907 <param name="directory">A directory to search</param>
3908 <param name="message">The message to display if directories are not equal</param>
3909 <param name="args">Arguments to be used in formatting the message</param>
3910 </member>
3911 <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String)">
3912 <summary>
3913 Asserts that the directory is empty. If it is not empty
3914 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3915 </summary>
3916 <param name="directory">A directory to search</param>
3917 <param name="message">The message to display if directories are not equal</param>
3918 </member>
3919 <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String)">
3920 <summary>
3921 Asserts that the directory is empty. If it is not empty
3922 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3923 </summary>
3924 <param name="directory">A directory to search</param>
3925 </member>
3926 <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
3927 <summary>
3928 Asserts that the directory is not empty. If it is empty
3929 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3930 </summary>
3931 <param name="directory">A directory to search</param>
3932 <param name="message">The message to display if directories are not equal</param>
3933 <param name="args">Arguments to be used in formatting the message</param>
3934 </member>
3935 <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String)">
3936 <summary>
3937 Asserts that the directory is not empty. If it is empty
3938 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3939 </summary>
3940 <param name="directory">A directory to search</param>
3941 <param name="message">The message to display if directories are not equal</param>
3942 </member>
3943 <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo)">
3944 <summary>
3945 Asserts that the directory is not empty. If it is empty
3946 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3947 </summary>
3948 <param name="directory">A directory to search</param>
3949 </member>
3950 <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String,System.Object[])">
3951 <summary>
3952 Asserts that the directory is not empty. If it is empty
3953 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3954 </summary>
3955 <param name="directory">A directory to search</param>
3956 <param name="message">The message to display if directories are not equal</param>
3957 <param name="args">Arguments to be used in formatting the message</param>
3958 </member>
3959 <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String)">
3960 <summary>
3961 Asserts that the directory is not empty. If it is empty
3962 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3963 </summary>
3964 <param name="directory">A directory to search</param>
3965 <param name="message">The message to display if directories are not equal</param>
3966 </member>
3967 <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String)">
3968 <summary>
3969 Asserts that the directory is not empty. If it is empty
3970 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3971 </summary>
3972 <param name="directory">A directory to search</param>
3973 </member>
3974 <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
3975 <summary>
3976 Asserts that path contains actual as a subdirectory or
3977 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3978 </summary>
3979 <param name="directory">A directory to search</param>
3980 <param name="actual">sub-directory asserted to exist under directory</param>
3981 <param name="message">The message to display if directory is not within the path</param>
3982 <param name="args">Arguments to be used in formatting the message</param>
3983 </member>
3984 <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
3985 <summary>
3986 Asserts that path contains actual as a subdirectory or
3987 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3988 </summary>
3989 <param name="directory">A directory to search</param>
3990 <param name="actual">sub-directory asserted to exist under directory</param>
3991 <param name="message">The message to display if directory is not within the path</param>
3992 </member>
3993 <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
3994 <summary>
3995 Asserts that path contains actual as a subdirectory or
3996 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
3997 </summary>
3998 <param name="directory">A directory to search</param>
3999 <param name="actual">sub-directory asserted to exist under directory</param>
4000 </member>
4001 <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String,System.Object[])">
4002 <summary>
4003 Asserts that path contains actual as a subdirectory or
4004 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4005 </summary>
4006 <param name="directory">A directory to search</param>
4007 <param name="actual">sub-directory asserted to exist under directory</param>
4008 <param name="message">The message to display if directory is not within the path</param>
4009 <param name="args">Arguments to be used in formatting the message</param>
4010 </member>
4011 <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String)">
4012 <summary>
4013 Asserts that path contains actual as a subdirectory or
4014 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4015 </summary>
4016 <param name="directory">A directory to search</param>
4017 <param name="actual">sub-directory asserted to exist under directory</param>
4018 <param name="message">The message to display if directory is not within the path</param>
4019 </member>
4020 <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String)">
4021 <summary>
4022 Asserts that path contains actual as a subdirectory or
4023 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4024 </summary>
4025 <param name="directory">A directory to search</param>
4026 <param name="actual">sub-directory asserted to exist under directory</param>
4027 </member>
4028 <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
4029 <summary>
4030 Asserts that path does not contain actual as a subdirectory or
4031 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4032 </summary>
4033 <param name="directory">A directory to search</param>
4034 <param name="actual">sub-directory asserted to exist under directory</param>
4035 <param name="message">The message to display if directory is not within the path</param>
4036 <param name="args">Arguments to be used in formatting the message</param>
4037 </member>
4038 <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
4039 <summary>
4040 Asserts that path does not contain actual as a subdirectory or
4041 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4042 </summary>
4043 <param name="directory">A directory to search</param>
4044 <param name="actual">sub-directory asserted to exist under directory</param>
4045 <param name="message">The message to display if directory is not within the path</param>
4046 </member>
4047 <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
4048 <summary>
4049 Asserts that path does not contain actual as a subdirectory or
4050 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4051 </summary>
4052 <param name="directory">A directory to search</param>
4053 <param name="actual">sub-directory asserted to exist under directory</param>
4054 </member>
4055 <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String,System.Object[])">
4056 <summary>
4057 Asserts that path does not contain actual as a subdirectory or
4058 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4059 </summary>
4060 <param name="directory">A directory to search</param>
4061 <param name="actual">sub-directory asserted to exist under directory</param>
4062 <param name="message">The message to display if directory is not within the path</param>
4063 <param name="args">Arguments to be used in formatting the message</param>
4064 </member>
4065 <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String)">
4066 <summary>
4067 Asserts that path does not contain actual as a subdirectory or
4068 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4069 </summary>
4070 <param name="directory">A directory to search</param>
4071 <param name="actual">sub-directory asserted to exist under directory</param>
4072 <param name="message">The message to display if directory is not within the path</param>
4073 </member>
4074 <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String)">
4075 <summary>
4076 Asserts that path does not contain actual as a subdirectory or
4077 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4078 </summary>
4079 <param name="directory">A directory to search</param>
4080 <param name="actual">sub-directory asserted to exist under directory</param>
4081 </member>
4082 <member name="T:NUnit.Framework.FileAssert">
4083 <summary>
4084 Summary description for FileAssert.
4085 </summary>
4086 </member>
4087 <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
4088 <summary>
4089 The Equals method throws an AssertionException. This is done
4090 to make sure there is no mistake by calling this function.
4091 </summary>
4092 <param name="a"></param>
4093 <param name="b"></param>
4094 </member>
4095 <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
4096 <summary>
4097 override the default ReferenceEquals to throw an AssertionException. This
4098 implementation makes sure there is no mistake in calling this function
4099 as part of Assert.
4100 </summary>
4101 <param name="a"></param>
4102 <param name="b"></param>
4103 </member>
4104 <member name="M:NUnit.Framework.FileAssert.#ctor">
4105 <summary>
4106 We don't actually want any instances of this object, but some people
4107 like to inherit from it to add other static methods. Hence, the
4108 protected constructor disallows any instances of this object.
4109 </summary>
4110 </member>
4111 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
4112 <summary>
4113 Verifies that two Streams are equal. Two Streams are considered
4114 equal if both are null, or if both have the same value byte for byte.
4115 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4116 </summary>
4117 <param name="expected">The expected Stream</param>
4118 <param name="actual">The actual Stream</param>
4119 <param name="message">The message to display if Streams are not equal</param>
4120 <param name="args">Arguments to be used in formatting the message</param>
4121 </member>
4122 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
4123 <summary>
4124 Verifies that two Streams are equal. Two Streams are considered
4125 equal if both are null, or if both have the same value byte for byte.
4126 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4127 </summary>
4128 <param name="expected">The expected Stream</param>
4129 <param name="actual">The actual Stream</param>
4130 <param name="message">The message to display if objects are not equal</param>
4131 </member>
4132 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
4133 <summary>
4134 Verifies that two Streams are equal. Two Streams are considered
4135 equal if both are null, or if both have the same value byte for byte.
4136 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4137 </summary>
4138 <param name="expected">The expected Stream</param>
4139 <param name="actual">The actual Stream</param>
4140 </member>
4141 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
4142 <summary>
4143 Verifies that two files are equal. Two files are considered
4144 equal if both are null, or if both have the same value byte for byte.
4145 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4146 </summary>
4147 <param name="expected">A file containing the value that is expected</param>
4148 <param name="actual">A file containing the actual value</param>
4149 <param name="message">The message to display if Streams are not equal</param>
4150 <param name="args">Arguments to be used in formatting the message</param>
4151 </member>
4152 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
4153 <summary>
4154 Verifies that two files are equal. Two files are considered
4155 equal if both are null, or if both have the same value byte for byte.
4156 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4157 </summary>
4158 <param name="expected">A file containing the value that is expected</param>
4159 <param name="actual">A file containing the actual value</param>
4160 <param name="message">The message to display if objects are not equal</param>
4161 </member>
4162 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
4163 <summary>
4164 Verifies that two files are equal. Two files are considered
4165 equal if both are null, or if both have the same value byte for byte.
4166 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4167 </summary>
4168 <param name="expected">A file containing the value that is expected</param>
4169 <param name="actual">A file containing the actual value</param>
4170 </member>
4171 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
4172 <summary>
4173 Verifies that two files are equal. Two files are considered
4174 equal if both are null, or if both have the same value byte for byte.
4175 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4176 </summary>
4177 <param name="expected">The path to a file containing the value that is expected</param>
4178 <param name="actual">The path to a file containing the actual value</param>
4179 <param name="message">The message to display if Streams are not equal</param>
4180 <param name="args">Arguments to be used in formatting the message</param>
4181 </member>
4182 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
4183 <summary>
4184 Verifies that two files are equal. Two files are considered
4185 equal if both are null, or if both have the same value byte for byte.
4186 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4187 </summary>
4188 <param name="expected">The path to a file containing the value that is expected</param>
4189 <param name="actual">The path to a file containing the actual value</param>
4190 <param name="message">The message to display if objects are not equal</param>
4191 </member>
4192 <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
4193 <summary>
4194 Verifies that two files are equal. Two files are considered
4195 equal if both are null, or if both have the same value byte for byte.
4196 If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4197 </summary>
4198 <param name="expected">The path to a file containing the value that is expected</param>
4199 <param name="actual">The path to a file containing the actual value</param>
4200 </member>
4201 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
4202 <summary>
4203 Asserts that two Streams are not equal. If they are equal
4204 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4205 </summary>
4206 <param name="expected">The expected Stream</param>
4207 <param name="actual">The actual Stream</param>
4208 <param name="message">The message to be displayed when the two Stream are the same.</param>
4209 <param name="args">Arguments to be used in formatting the message</param>
4210 </member>
4211 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
4212 <summary>
4213 Asserts that two Streams are not equal. If they are equal
4214 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4215 </summary>
4216 <param name="expected">The expected Stream</param>
4217 <param name="actual">The actual Stream</param>
4218 <param name="message">The message to be displayed when the Streams are the same.</param>
4219 </member>
4220 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
4221 <summary>
4222 Asserts that two Streams are not equal. If they are equal
4223 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4224 </summary>
4225 <param name="expected">The expected Stream</param>
4226 <param name="actual">The actual Stream</param>
4227 </member>
4228 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
4229 <summary>
4230 Asserts that two files are not equal. If they are equal
4231 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4232 </summary>
4233 <param name="expected">A file containing the value that is expected</param>
4234 <param name="actual">A file containing the actual value</param>
4235 <param name="message">The message to display if Streams are not equal</param>
4236 <param name="args">Arguments to be used in formatting the message</param>
4237 </member>
4238 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
4239 <summary>
4240 Asserts that two files are not equal. If they are equal
4241 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4242 </summary>
4243 <param name="expected">A file containing the value that is expected</param>
4244 <param name="actual">A file containing the actual value</param>
4245 <param name="message">The message to display if objects are not equal</param>
4246 </member>
4247 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
4248 <summary>
4249 Asserts that two files are not equal. If they are equal
4250 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4251 </summary>
4252 <param name="expected">A file containing the value that is expected</param>
4253 <param name="actual">A file containing the actual value</param>
4254 </member>
4255 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
4256 <summary>
4257 Asserts that two files are not equal. If they are equal
4258 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4259 </summary>
4260 <param name="expected">The path to a file containing the value that is expected</param>
4261 <param name="actual">The path to a file containing the actual value</param>
4262 <param name="message">The message to display if Streams are not equal</param>
4263 <param name="args">Arguments to be used in formatting the message</param>
4264 </member>
4265 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
4266 <summary>
4267 Asserts that two files are not equal. If they are equal
4268 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4269 </summary>
4270 <param name="expected">The path to a file containing the value that is expected</param>
4271 <param name="actual">The path to a file containing the actual value</param>
4272 <param name="message">The message to display if objects are not equal</param>
4273 </member>
4274 <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
4275 <summary>
4276 Asserts that two files are not equal. If they are equal
4277 an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
4278 </summary>
4279 <param name="expected">The path to a file containing the value that is expected</param>
4280 <param name="actual">The path to a file containing the actual value</param>
4281 </member>
4282 <member name="T:NUnit.Framework.GlobalSettings">
4283 <summary>
4284 GlobalSettings is a place for setting default values used
4285 by the framework in performing asserts.
4286 </summary>
4287 </member>
4288 <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
4289 <summary>
4290 Default tolerance for floating point equality
4291 </summary>
4292 </member>
4293 <member name="T:NUnit.Framework.Guard">
4294 <summary>
4295 Class used to guard against unexpected argument values
4296 by throwing an appropriate exception.
4297 </summary>
4298 </member>
4299 <member name="M:NUnit.Framework.Guard.ArgumentNotNull(System.Object,System.String)">
4300 <summary>
4301 Throws an exception if an argument is null
4302 </summary>
4303 <param name="value">The value to be tested</param>
4304 <param name="name">The name of the argument</param>
4305 </member>
4306 <member name="M:NUnit.Framework.Guard.ArgumentNotNullOrEmpty(System.String,System.String)">
4307 <summary>
4308 Throws an exception if a string argument is null or empty
4309 </summary>
4310 <param name="value">The value to be tested</param>
4311 <param name="name">The name of the argument</param>
4312 </member>
4313 <member name="T:NUnit.Framework.Has">
4314 <summary>
4315 Helper class with properties and methods that supply
4316 a number of constraints used in Asserts.
4317 </summary>
4318 </member>
4319 <member name="M:NUnit.Framework.Has.Exactly(System.Int32)">
4320 <summary>
4321 Returns a ConstraintExpression, which will apply
4322 the following constraint to all members of a collection,
4323 succeeding only if a specified number of them succeed.
4324 </summary>
4325 </member>
4326 <member name="M:NUnit.Framework.Has.Property(System.String)">
4327 <summary>
4328 Returns a new PropertyConstraintExpression, which will either
4329 test for the existence of the named property on the object
4330 being tested or apply any following constraint to that property.
4331 </summary>
4332 </member>
4333 <member name="M:NUnit.Framework.Has.Attribute(System.Type)">
4334 <summary>
4335 Returns a new AttributeConstraint checking for the
4336 presence of a particular attribute on an object.
4337 </summary>
4338 </member>
4339 <member name="M:NUnit.Framework.Has.Attribute``1">
4340 <summary>
4341 Returns a new AttributeConstraint checking for the
4342 presence of a particular attribute on an object.
4343 </summary>
4344 </member>
4345 <member name="M:NUnit.Framework.Has.Member(System.Object)">
4346 <summary>
4347 Returns a new CollectionContainsConstraint checking for the
4348 presence of a particular object in the collection.
4349 </summary>
4350 </member>
4351 <member name="P:NUnit.Framework.Has.No">
4352 <summary>
4353 Returns a ConstraintExpression that negates any
4354 following constraint.
4355 </summary>
4356 </member>
4357 <member name="P:NUnit.Framework.Has.All">
4358 <summary>
4359 Returns a ConstraintExpression, which will apply
4360 the following constraint to all members of a collection,
4361 succeeding if all of them succeed.
4362 </summary>
4363 </member>
4364 <member name="P:NUnit.Framework.Has.Some">
4365 <summary>
4366 Returns a ConstraintExpression, which will apply
4367 the following constraint to all members of a collection,
4368 succeeding if at least one of them succeeds.
4369 </summary>
4370 </member>
4371 <member name="P:NUnit.Framework.Has.None">
4372 <summary>
4373 Returns a ConstraintExpression, which will apply
4374 the following constraint to all members of a collection,
4375 succeeding if all of them fail.
4376 </summary>
4377 </member>
4378 <member name="P:NUnit.Framework.Has.Length">
4379 <summary>
4380 Returns a new ConstraintExpression, which will apply the following
4381 constraint to the Length property of the object being tested.
4382 </summary>
4383 </member>
4384 <member name="P:NUnit.Framework.Has.Count">
4385 <summary>
4386 Returns a new ConstraintExpression, which will apply the following
4387 constraint to the Count property of the object being tested.
4388 </summary>
4389 </member>
4390 <member name="P:NUnit.Framework.Has.Message">
4391 <summary>
4392 Returns a new ConstraintExpression, which will apply the following
4393 constraint to the Message property of the object being tested.
4394 </summary>
4395 </member>
4396 <member name="P:NUnit.Framework.Has.InnerException">
4397 <summary>
4398 Returns a new ConstraintExpression, which will apply the following
4399 constraint to the InnerException property of the object being tested.
4400 </summary>
4401 </member>
4402 <member name="T:NUnit.Framework.IExpectException">
4403 <summary>
4404 Interface implemented by a user fixture in order to
4405 validate any expected exceptions. It is only called
4406 for test methods marked with the ExpectedException
4407 attribute.
4408 </summary>
4409 </member>
4410 <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
4411 <summary>
4412 Method to handle an expected exception
4413 </summary>
4414 <param name="ex">The exception to be handled</param>
4415 </member>
4416 <member name="T:NUnit.Framework.Is">
4417 <summary>
4418 Helper class with properties and methods that supply
4419 a number of constraints used in Asserts.
4420 </summary>
4421 </member>
4422 <member name="M:NUnit.Framework.Is.EqualTo(System.Object)">
4423 <summary>
4424 Returns a constraint that tests two items for equality
4425 </summary>
4426 </member>
4427 <member name="M:NUnit.Framework.Is.SameAs(System.Object)">
4428 <summary>
4429 Returns a constraint that tests that two references are the same object
4430 </summary>
4431 </member>
4432 <member name="M:NUnit.Framework.Is.GreaterThan(System.Object)">
4433 <summary>
4434 Returns a constraint that tests whether the
4435 actual value is greater than the suppled argument
4436 </summary>
4437 </member>
4438 <member name="M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)">
4439 <summary>
4440 Returns a constraint that tests whether the
4441 actual value is greater than or equal to the suppled argument
4442 </summary>
4443 </member>
4444 <member name="M:NUnit.Framework.Is.AtLeast(System.Object)">
4445 <summary>
4446 Returns a constraint that tests whether the
4447 actual value is greater than or equal to the suppled argument
4448 </summary>
4449 </member>
4450 <member name="M:NUnit.Framework.Is.LessThan(System.Object)">
4451 <summary>
4452 Returns a constraint that tests whether the
4453 actual value is less than the suppled argument
4454 </summary>
4455 </member>
4456 <member name="M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)">
4457 <summary>
4458 Returns a constraint that tests whether the
4459 actual value is less than or equal to the suppled argument
4460 </summary>
4461 </member>
4462 <member name="M:NUnit.Framework.Is.AtMost(System.Object)">
4463 <summary>
4464 Returns a constraint that tests whether the
4465 actual value is less than or equal to the suppled argument
4466 </summary>
4467 </member>
4468 <member name="M:NUnit.Framework.Is.TypeOf(System.Type)">
4469 <summary>
4470 Returns a constraint that tests whether the actual
4471 value is of the exact type supplied as an argument.
4472 </summary>
4473 </member>
4474 <member name="M:NUnit.Framework.Is.TypeOf``1">
4475 <summary>
4476 Returns a constraint that tests whether the actual
4477 value is of the exact type supplied as an argument.
4478 </summary>
4479 </member>
4480 <member name="M:NUnit.Framework.Is.InstanceOf(System.Type)">
4481 <summary>
4482 Returns a constraint that tests whether the actual value
4483 is of the type supplied as an argument or a derived type.
4484 </summary>
4485 </member>
4486 <member name="M:NUnit.Framework.Is.InstanceOf``1">
4487 <summary>
4488 Returns a constraint that tests whether the actual value
4489 is of the type supplied as an argument or a derived type.
4490 </summary>
4491 </member>
4492 <member name="M:NUnit.Framework.Is.InstanceOfType(System.Type)">
4493 <summary>
4494 Returns a constraint that tests whether the actual value
4495 is of the type supplied as an argument or a derived type.
4496 </summary>
4497 </member>
4498 <member name="M:NUnit.Framework.Is.InstanceOfType``1">
4499 <summary>
4500 Returns a constraint that tests whether the actual value
4501 is of the type supplied as an argument or a derived type.
4502 </summary>
4503 </member>
4504 <member name="M:NUnit.Framework.Is.AssignableFrom(System.Type)">
4505 <summary>
4506 Returns a constraint that tests whether the actual value
4507 is assignable from the type supplied as an argument.
4508 </summary>
4509 </member>
4510 <member name="M:NUnit.Framework.Is.AssignableFrom``1">
4511 <summary>
4512 Returns a constraint that tests whether the actual value
4513 is assignable from the type supplied as an argument.
4514 </summary>
4515 </member>
4516 <member name="M:NUnit.Framework.Is.AssignableTo(System.Type)">
4517 <summary>
4518 Returns a constraint that tests whether the actual value
4519 is assignable from the type supplied as an argument.
4520 </summary>
4521 </member>
4522 <member name="M:NUnit.Framework.Is.AssignableTo``1">
4523 <summary>
4524 Returns a constraint that tests whether the actual value
4525 is assignable from the type supplied as an argument.
4526 </summary>
4527 </member>
4528 <member name="M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)">
4529 <summary>
4530 Returns a constraint that tests whether the actual value
4531 is a collection containing the same elements as the
4532 collection supplied as an argument.
4533 </summary>
4534 </member>
4535 <member name="M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)">
4536 <summary>
4537 Returns a constraint that tests whether the actual value
4538 is a subset of the collection supplied as an argument.
4539 </summary>
4540 </member>
4541 <member name="M:NUnit.Framework.Is.StringContaining(System.String)">
4542 <summary>
4543 Returns a constraint that succeeds if the actual
4544 value contains the substring supplied as an argument.
4545 </summary>
4546 </member>
4547 <member name="M:NUnit.Framework.Is.StringStarting(System.String)">
4548 <summary>
4549 Returns a constraint that succeeds if the actual
4550 value starts with the substring supplied as an argument.
4551 </summary>
4552 </member>
4553 <member name="M:NUnit.Framework.Is.StringEnding(System.String)">
4554 <summary>
4555 Returns a constraint that succeeds if the actual
4556 value ends with the substring supplied as an argument.
4557 </summary>
4558 </member>
4559 <member name="M:NUnit.Framework.Is.StringMatching(System.String)">
4560 <summary>
4561 Returns a constraint that succeeds if the actual
4562 value matches the regular expression supplied as an argument.
4563 </summary>
4564 </member>
4565 <member name="M:NUnit.Framework.Is.SamePath(System.String)">
4566 <summary>
4567 Returns a constraint that tests whether the path provided
4568 is the same as an expected path after canonicalization.
4569 </summary>
4570 </member>
4571 <member name="M:NUnit.Framework.Is.SubPath(System.String)">
4572 <summary>
4573 Returns a constraint that tests whether the path provided
4574 is under an expected path after canonicalization.
4575 </summary>
4576 </member>
4577 <member name="M:NUnit.Framework.Is.SamePathOrUnder(System.String)">
4578 <summary>
4579 Returns a constraint that tests whether the path provided
4580 is the same path or under an expected path after canonicalization.
4581 </summary>
4582 </member>
4583 <member name="M:NUnit.Framework.Is.InRange``1(``0,``0)">
4584 <summary>
4585 Returns a constraint that tests whether the actual value falls
4586 within a specified range.
4587 </summary>
4588 </member>
4589 <member name="P:NUnit.Framework.Is.Not">
4590 <summary>
4591 Returns a ConstraintExpression that negates any
4592 following constraint.
4593 </summary>
4594 </member>
4595 <member name="P:NUnit.Framework.Is.All">
4596 <summary>
4597 Returns a ConstraintExpression, which will apply
4598 the following constraint to all members of a collection,
4599 succeeding if all of them succeed.
4600 </summary>
4601 </member>
4602 <member name="P:NUnit.Framework.Is.Null">
4603 <summary>
4604 Returns a constraint that tests for null
4605 </summary>
4606 </member>
4607 <member name="P:NUnit.Framework.Is.True">
4608 <summary>
4609 Returns a constraint that tests for True
4610 </summary>
4611 </member>
4612 <member name="P:NUnit.Framework.Is.False">
4613 <summary>
4614 Returns a constraint that tests for False
4615 </summary>
4616 </member>
4617 <member name="P:NUnit.Framework.Is.Positive">
4618 <summary>
4619 Returns a constraint that tests for a positive value
4620 </summary>
4621 </member>
4622 <member name="P:NUnit.Framework.Is.Negative">
4623 <summary>
4624 Returns a constraint that tests for a negative value
4625 </summary>
4626 </member>
4627 <member name="P:NUnit.Framework.Is.NaN">
4628 <summary>
4629 Returns a constraint that tests for NaN
4630 </summary>
4631 </member>
4632 <member name="P:NUnit.Framework.Is.Empty">
4633 <summary>
4634 Returns a constraint that tests for empty
4635 </summary>
4636 </member>
4637 <member name="P:NUnit.Framework.Is.Unique">
4638 <summary>
4639 Returns a constraint that tests whether a collection
4640 contains all unique items.
4641 </summary>
4642 </member>
4643 <member name="P:NUnit.Framework.Is.BinarySerializable">
4644 <summary>
4645 Returns a constraint that tests whether an object graph is serializable in binary format.
4646 </summary>
4647 </member>
4648 <member name="P:NUnit.Framework.Is.XmlSerializable">
4649 <summary>
4650 Returns a constraint that tests whether an object graph is serializable in xml format.
4651 </summary>
4652 </member>
4653 <member name="P:NUnit.Framework.Is.Ordered">
4654 <summary>
4655 Returns a constraint that tests whether a collection is ordered
4656 </summary>
4657 </member>
4658 <member name="T:NUnit.Framework.ITestCaseData">
4659 <summary>
4660 The ITestCaseData interface is implemented by a class
4661 that is able to return complete testcases for use by
4662 a parameterized test method.
4663
4664 NOTE: This interface is used in both the framework
4665 and the core, even though that results in two different
4666 types. However, sharing the source code guarantees that
4667 the various implementations will be compatible and that
4668 the core is able to reflect successfully over the
4669 framework implementations of ITestCaseData.
4670 </summary>
4671 </member>
4672 <member name="P:NUnit.Framework.ITestCaseData.Arguments">
4673 <summary>
4674 Gets the argument list to be provided to the test
4675 </summary>
4676 </member>
4677 <member name="P:NUnit.Framework.ITestCaseData.Result">
4678 <summary>
4679 Gets the expected result
4680 </summary>
4681 </member>
4682 <member name="P:NUnit.Framework.ITestCaseData.HasExpectedResult">
4683 <summary>
4684 Indicates whether a result has been specified.
4685 This is necessary because the result may be
4686 null, so it's value cannot be checked.
4687 </summary>
4688 </member>
4689 <member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
4690 <summary>
4691 Gets the expected exception Type
4692 </summary>
4693 </member>
4694 <member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
4695 <summary>
4696 Gets the FullName of the expected exception
4697 </summary>
4698 </member>
4699 <member name="P:NUnit.Framework.ITestCaseData.TestName">
4700 <summary>
4701 Gets the name to be used for the test
4702 </summary>
4703 </member>
4704 <member name="P:NUnit.Framework.ITestCaseData.Description">
4705 <summary>
4706 Gets the description of the test
4707 </summary>
4708 </member>
4709 <member name="P:NUnit.Framework.ITestCaseData.Ignored">
4710 <summary>
4711 Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
4712 </summary>
4713 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
4714 </member>
4715 <member name="P:NUnit.Framework.ITestCaseData.Explicit">
4716 <summary>
4717 Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is explicit.
4718 </summary>
4719 <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>
4720 </member>
4721 <member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
4722 <summary>
4723 Gets the ignore reason.
4724 </summary>
4725 <value>The ignore reason.</value>
4726 </member>
4727 <member name="T:NUnit.Framework.Iz">
4728 <summary>
4729 The Iz class is a synonym for Is intended for use in VB,
4730 which regards Is as a keyword.
4731 </summary>
4732 </member>
4733 <member name="T:NUnit.Framework.List">
4734 <summary>
4735 The List class is a helper class with properties and methods
4736 that supply a number of constraints used with lists and collections.
4737 </summary>
4738 </member>
4739 <member name="M:NUnit.Framework.List.Map(System.Collections.ICollection)">
4740 <summary>
4741 List.Map returns a ListMapper, which can be used to map
4742 the original collection to another collection.
4743 </summary>
4744 <param name="actual"></param>
4745 <returns></returns>
4746 </member>
4747 <member name="T:NUnit.Framework.ListMapper">
4748 <summary>
4749 ListMapper is used to transform a collection used as an actual argument
4750 producing another collection to be used in the assertion.
4751 </summary>
4752 </member>
4753 <member name="M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)">
4754 <summary>
4755 Construct a ListMapper based on a collection
4756 </summary>
4757 <param name="original">The collection to be transformed</param>
4758 </member>
4759 <member name="M:NUnit.Framework.ListMapper.Property(System.String)">
4760 <summary>
4761 Produces a collection containing all the values of a property
4762 </summary>
4763 <param name="name">The collection of property values</param>
4764 <returns></returns>
4765 </member>
4766 <member name="T:NUnit.Framework.Randomizer">
4767 <summary>
4768 Randomizer returns a set of random values in a repeatable
4769 way, to allow re-running of tests if necessary.
4770 </summary>
4771 </member>
4772 <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.MemberInfo)">
4773 <summary>
4774 Get a randomizer for a particular member, returning
4775 one that has already been created if it exists.
4776 This ensures that the same values are generated
4777 each time the tests are reloaded.
4778 </summary>
4779 </member>
4780 <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.ParameterInfo)">
4781 <summary>
4782 Get a randomizer for a particular parameter, returning
4783 one that has already been created if it exists.
4784 This ensures that the same values are generated
4785 each time the tests are reloaded.
4786 </summary>
4787 </member>
4788 <member name="M:NUnit.Framework.Randomizer.#ctor">
4789 <summary>
4790 Construct a randomizer using a random seed
4791 </summary>
4792 </member>
4793 <member name="M:NUnit.Framework.Randomizer.#ctor(System.Int32)">
4794 <summary>
4795 Construct a randomizer using a specified seed
4796 </summary>
4797 </member>
4798 <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Int32)">
4799 <summary>
4800 Return an array of random doubles between 0.0 and 1.0.
4801 </summary>
4802 <param name="count"></param>
4803 <returns></returns>
4804 </member>
4805 <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Double,System.Double,System.Int32)">
4806 <summary>
4807 Return an array of random doubles with values in a specified range.
4808 </summary>
4809 </member>
4810 <member name="M:NUnit.Framework.Randomizer.GetInts(System.Int32,System.Int32,System.Int32)">
4811 <summary>
4812 Return an array of random ints with values in a specified range.
4813 </summary>
4814 </member>
4815 <member name="P:NUnit.Framework.Randomizer.RandomSeed">
4816 <summary>
4817 Get a random seed for use in creating a randomizer.
4818 </summary>
4819 </member>
4820 <member name="T:NUnit.Framework.SpecialValue">
4821 <summary>
4822 The SpecialValue enum is used to represent TestCase arguments
4823 that cannot be used as arguments to an Attribute.
4824 </summary>
4825 </member>
4826 <member name="F:NUnit.Framework.SpecialValue.Null">
4827 <summary>
4828 Null represents a null value, which cannot be used as an
4829 argument to an attribute under .NET 1.x
4830 </summary>
4831 </member>
4832 <member name="T:NUnit.Framework.StringAssert">
4833 <summary>
4834 Basic Asserts on strings.
4835 </summary>
4836 </member>
4837 <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
4838 <summary>
4839 The Equals method throws an AssertionException. This is done
4840 to make sure there is no mistake by calling this function.
4841 </summary>
4842 <param name="a"></param>
4843 <param name="b"></param>
4844 </member>
4845 <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
4846 <summary>
4847 override the default ReferenceEquals to throw an AssertionException. This
4848 implementation makes sure there is no mistake in calling this function
4849 as part of Assert.
4850 </summary>
4851 <param name="a"></param>
4852 <param name="b"></param>
4853 </member>
4854 <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
4855 <summary>
4856 Asserts that a string is found within another string.
4857 </summary>
4858 <param name="expected">The expected string</param>
4859 <param name="actual">The string to be examined</param>
4860 <param name="message">The message to display in case of failure</param>
4861 <param name="args">Arguments used in formatting the message</param>
4862 </member>
4863 <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
4864 <summary>
4865 Asserts that a string is found within another string.
4866 </summary>
4867 <param name="expected">The expected string</param>
4868 <param name="actual">The string to be examined</param>
4869 <param name="message">The message to display in case of failure</param>
4870 </member>
4871 <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
4872 <summary>
4873 Asserts that a string is found within another string.
4874 </summary>
4875 <param name="expected">The expected string</param>
4876 <param name="actual">The string to be examined</param>
4877 </member>
4878 <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
4879 <summary>
4880 Asserts that a string is not found within another string.
4881 </summary>
4882 <param name="expected">The expected string</param>
4883 <param name="actual">The string to be examined</param>
4884 <param name="message">The message to display in case of failure</param>
4885 <param name="args">Arguments used in formatting the message</param>
4886 </member>
4887 <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)">
4888 <summary>
4889 Asserts that a string is found within another string.
4890 </summary>
4891 <param name="expected">The expected string</param>
4892 <param name="actual">The string to be examined</param>
4893 <param name="message">The message to display in case of failure</param>
4894 </member>
4895 <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)">
4896 <summary>
4897 Asserts that a string is found within another string.
4898 </summary>
4899 <param name="expected">The expected string</param>
4900 <param name="actual">The string to be examined</param>
4901 </member>
4902 <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
4903 <summary>
4904 Asserts that a string starts with another string.
4905 </summary>
4906 <param name="expected">The expected string</param>
4907 <param name="actual">The string to be examined</param>
4908 <param name="message">The message to display in case of failure</param>
4909 <param name="args">Arguments used in formatting the message</param>
4910 </member>
4911 <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
4912 <summary>
4913 Asserts that a string starts with another string.
4914 </summary>
4915 <param name="expected">The expected string</param>
4916 <param name="actual">The string to be examined</param>
4917 <param name="message">The message to display in case of failure</param>
4918 </member>
4919 <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
4920 <summary>
4921 Asserts that a string starts with another string.
4922 </summary>
4923 <param name="expected">The expected string</param>
4924 <param name="actual">The string to be examined</param>
4925 </member>
4926 <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])">
4927 <summary>
4928 Asserts that a string does not start with another string.
4929 </summary>
4930 <param name="expected">The expected string</param>
4931 <param name="actual">The string to be examined</param>
4932 <param name="message">The message to display in case of failure</param>
4933 <param name="args">Arguments used in formatting the message</param>
4934 </member>
4935 <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)">
4936 <summary>
4937 Asserts that a string does not start with another string.
4938 </summary>
4939 <param name="expected">The expected string</param>
4940 <param name="actual">The string to be examined</param>
4941 <param name="message">The message to display in case of failure</param>
4942 </member>
4943 <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)">
4944 <summary>
4945 Asserts that a string does not start with another string.
4946 </summary>
4947 <param name="expected">The expected string</param>
4948 <param name="actual">The string to be examined</param>
4949 </member>
4950 <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
4951 <summary>
4952 Asserts that a string ends with another string.
4953 </summary>
4954 <param name="expected">The expected string</param>
4955 <param name="actual">The string to be examined</param>
4956 <param name="message">The message to display in case of failure</param>
4957 <param name="args">Arguments used in formatting the message</param>
4958 </member>
4959 <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
4960 <summary>
4961 Asserts that a string ends with another string.
4962 </summary>
4963 <param name="expected">The expected string</param>
4964 <param name="actual">The string to be examined</param>
4965 <param name="message">The message to display in case of failure</param>
4966 </member>
4967 <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
4968 <summary>
4969 Asserts that a string ends with another string.
4970 </summary>
4971 <param name="expected">The expected string</param>
4972 <param name="actual">The string to be examined</param>
4973 </member>
4974 <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])">
4975 <summary>
4976 Asserts that a string does not end with another string.
4977 </summary>
4978 <param name="expected">The expected string</param>
4979 <param name="actual">The string to be examined</param>
4980 <param name="message">The message to display in case of failure</param>
4981 <param name="args">Arguments used in formatting the message</param>
4982 </member>
4983 <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)">
4984 <summary>
4985 Asserts that a string does not end with another string.
4986 </summary>
4987 <param name="expected">The expected string</param>
4988 <param name="actual">The string to be examined</param>
4989 <param name="message">The message to display in case of failure</param>
4990 </member>
4991 <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)">
4992 <summary>
4993 Asserts that a string does not end with another string.
4994 </summary>
4995 <param name="expected">The expected string</param>
4996 <param name="actual">The string to be examined</param>
4997 </member>
4998 <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
4999 <summary>
5000 Asserts that two strings are equal, without regard to case.
5001 </summary>
5002 <param name="expected">The expected string</param>
5003 <param name="actual">The actual string</param>
5004 <param name="message">The message to display in case of failure</param>
5005 <param name="args">Arguments used in formatting the message</param>
5006 </member>
5007 <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
5008 <summary>
5009 Asserts that two strings are equal, without regard to case.
5010 </summary>
5011 <param name="expected">The expected string</param>
5012 <param name="actual">The actual string</param>
5013 <param name="message">The message to display in case of failure</param>
5014 </member>
5015 <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
5016 <summary>
5017 Asserts that two strings are equal, without regard to case.
5018 </summary>
5019 <param name="expected">The expected string</param>
5020 <param name="actual">The actual string</param>
5021 </member>
5022 <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
5023 <summary>
5024 Asserts that two strings are not equal, without regard to case.
5025 </summary>
5026 <param name="expected">The expected string</param>
5027 <param name="actual">The actual string</param>
5028 <param name="message">The message to display in case of failure</param>
5029 <param name="args">Arguments used in formatting the message</param>
5030 </member>
5031 <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)">
5032 <summary>
5033 Asserts that two strings are Notequal, without regard to case.
5034 </summary>
5035 <param name="expected">The expected string</param>
5036 <param name="actual">The actual string</param>
5037 <param name="message">The message to display in case of failure</param>
5038 </member>
5039 <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)">
5040 <summary>
5041 Asserts that two strings are not equal, without regard to case.
5042 </summary>
5043 <param name="expected">The expected string</param>
5044 <param name="actual">The actual string</param>
5045 </member>
5046 <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
5047 <summary>
5048 Asserts that a string matches an expected regular expression pattern.
5049 </summary>
5050 <param name="pattern">The regex pattern to be matched</param>
5051 <param name="actual">The actual string</param>
5052 <param name="message">The message to display in case of failure</param>
5053 <param name="args">Arguments used in formatting the message</param>
5054 </member>
5055 <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
5056 <summary>
5057 Asserts that a string matches an expected regular expression pattern.
5058 </summary>
5059 <param name="pattern">The regex pattern to be matched</param>
5060 <param name="actual">The actual string</param>
5061 <param name="message">The message to display in case of failure</param>
5062 </member>
5063 <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
5064 <summary>
5065 Asserts that a string matches an expected regular expression pattern.
5066 </summary>
5067 <param name="pattern">The regex pattern to be matched</param>
5068 <param name="actual">The actual string</param>
5069 </member>
5070 <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])">
5071 <summary>
5072 Asserts that a string does not match an expected regular expression pattern.
5073 </summary>
5074 <param name="pattern">The regex pattern to be used</param>
5075 <param name="actual">The actual string</param>
5076 <param name="message">The message to display in case of failure</param>
5077 <param name="args">Arguments used in formatting the message</param>
5078 </member>
5079 <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)">
5080 <summary>
5081 Asserts that a string does not match an expected regular expression pattern.
5082 </summary>
5083 <param name="pattern">The regex pattern to be used</param>
5084 <param name="actual">The actual string</param>
5085 <param name="message">The message to display in case of failure</param>
5086 </member>
5087 <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)">
5088 <summary>
5089 Asserts that a string does not match an expected regular expression pattern.
5090 </summary>
5091 <param name="pattern">The regex pattern to be used</param>
5092 <param name="actual">The actual string</param>
5093 </member>
5094 <member name="T:NUnit.Framework.TestCaseData">
5095 <summary>
5096 The TestCaseData class represents a set of arguments
5097 and other parameter info to be used for a parameterized
5098 test case. It provides a number of instance modifiers
5099 for use in initializing the test case.
5100
5101 Note: Instance modifiers are getters that return
5102 the same instance after modifying it's state.
5103 </summary>
5104 </member>
5105 <member name="F:NUnit.Framework.TestCaseData.arguments">
5106 <summary>
5107 The argument list to be provided to the test
5108 </summary>
5109 </member>
5110 <member name="F:NUnit.Framework.TestCaseData.expectedResult">
5111 <summary>
5112 The expected result to be returned
5113 </summary>
5114 </member>
5115 <member name="F:NUnit.Framework.TestCaseData.hasExpectedResult">
5116 <summary>
5117 Set to true if this has an expected result
5118 </summary>
5119 </member>
5120 <member name="F:NUnit.Framework.TestCaseData.expectedExceptionType">
5121 <summary>
5122 The expected exception Type
5123 </summary>
5124 </member>
5125 <member name="F:NUnit.Framework.TestCaseData.expectedExceptionName">
5126 <summary>
5127 The FullName of the expected exception
5128 </summary>
5129 </member>
5130 <member name="F:NUnit.Framework.TestCaseData.testName">
5131 <summary>
5132 The name to be used for the test
5133 </summary>
5134 </member>
5135 <member name="F:NUnit.Framework.TestCaseData.description">
5136 <summary>
5137 The description of the test
5138 </summary>
5139 </member>
5140 <member name="F:NUnit.Framework.TestCaseData.properties">
5141 <summary>
5142 A dictionary of properties, used to add information
5143 to tests without requiring the class to change.
5144 </summary>
5145 </member>
5146 <member name="F:NUnit.Framework.TestCaseData.isIgnored">
5147 <summary>
5148 If true, indicates that the test case is to be ignored
5149 </summary>
5150 </member>
5151 <member name="F:NUnit.Framework.TestCaseData.isExplicit">
5152 <summary>
5153 If true, indicates that the test case is marked explicit
5154 </summary>
5155 </member>
5156 <member name="F:NUnit.Framework.TestCaseData.ignoreReason">
5157 <summary>
5158 The reason for ignoring a test case
5159 </summary>
5160 </member>
5161 <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object[])">
5162 <summary>
5163 Initializes a new instance of the <see cref="T:TestCaseData"/> class.
5164 </summary>
5165 <param name="args">The arguments.</param>
5166 </member>
5167 <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object)">
5168 <summary>
5169 Initializes a new instance of the <see cref="T:TestCaseData"/> class.
5170 </summary>
5171 <param name="arg">The argument.</param>
5172 </member>
5173 <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)">
5174 <summary>
5175 Initializes a new instance of the <see cref="T:TestCaseData"/> class.
5176 </summary>
5177 <param name="arg1">The first argument.</param>
5178 <param name="arg2">The second argument.</param>
5179 </member>
5180 <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)">
5181 <summary>
5182 Initializes a new instance of the <see cref="T:TestCaseData"/> class.
5183 </summary>
5184 <param name="arg1">The first argument.</param>
5185 <param name="arg2">The second argument.</param>
5186 <param name="arg3">The third argument.</param>
5187 </member>
5188 <member name="M:NUnit.Framework.TestCaseData.Returns(System.Object)">
5189 <summary>
5190 Sets the expected result for the test
5191 </summary>
5192 <param name="result">The expected result</param>
5193 <returns>A modified TestCaseData</returns>
5194 </member>
5195 <member name="M:NUnit.Framework.TestCaseData.Throws(System.Type)">
5196 <summary>
5197 Sets the expected exception type for the test
5198 </summary>
5199 <param name="exceptionType">Type of the expected exception.</param>
5200 <returns>The modified TestCaseData instance</returns>
5201 </member>
5202 <member name="M:NUnit.Framework.TestCaseData.Throws(System.String)">
5203 <summary>
5204 Sets the expected exception type for the test
5205 </summary>
5206 <param name="exceptionName">FullName of the expected exception.</param>
5207 <returns>The modified TestCaseData instance</returns>
5208 </member>
5209 <member name="M:NUnit.Framework.TestCaseData.SetName(System.String)">
5210 <summary>
5211 Sets the name of the test case
5212 </summary>
5213 <returns>The modified TestCaseData instance</returns>
5214 </member>
5215 <member name="M:NUnit.Framework.TestCaseData.SetDescription(System.String)">
5216 <summary>
5217 Sets the description for the test case
5218 being constructed.
5219 </summary>
5220 <param name="description">The description.</param>
5221 <returns>The modified TestCaseData instance.</returns>
5222 </member>
5223 <member name="M:NUnit.Framework.TestCaseData.SetCategory(System.String)">
5224 <summary>
5225 Applies a category to the test
5226 </summary>
5227 <param name="category"></param>
5228 <returns></returns>
5229 </member>
5230 <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)">
5231 <summary>
5232 Applies a named property to the test
5233 </summary>
5234 <param name="propName"></param>
5235 <param name="propValue"></param>
5236 <returns></returns>
5237 </member>
5238 <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)">
5239 <summary>
5240 Applies a named property to the test
5241 </summary>
5242 <param name="propName"></param>
5243 <param name="propValue"></param>
5244 <returns></returns>
5245 </member>
5246 <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)">
5247 <summary>
5248 Applies a named property to the test
5249 </summary>
5250 <param name="propName"></param>
5251 <param name="propValue"></param>
5252 <returns></returns>
5253 </member>
5254 <member name="M:NUnit.Framework.TestCaseData.Ignore">
5255 <summary>
5256 Ignores this TestCase.
5257 </summary>
5258 <returns></returns>
5259 </member>
5260 <member name="M:NUnit.Framework.TestCaseData.Ignore(System.String)">
5261 <summary>
5262 Ignores this TestCase, specifying the reason.
5263 </summary>
5264 <param name="reason">The reason.</param>
5265 <returns></returns>
5266 </member>
5267 <member name="M:NUnit.Framework.TestCaseData.MakeExplicit">
5268 <summary>
5269 Marks this TestCase as Explicit
5270 </summary>
5271 <returns></returns>
5272 </member>
5273 <member name="M:NUnit.Framework.TestCaseData.MakeExplicit(System.String)">
5274 <summary>
5275 Marks this TestCase as Explicit, specifying the reason.
5276 </summary>
5277 <param name="reason">The reason.</param>
5278 <returns></returns>
5279 </member>
5280 <member name="P:NUnit.Framework.TestCaseData.Arguments">
5281 <summary>
5282 Gets the argument list to be provided to the test
5283 </summary>
5284 </member>
5285 <member name="P:NUnit.Framework.TestCaseData.Result">
5286 <summary>
5287 Gets the expected result
5288 </summary>
5289 </member>
5290 <member name="P:NUnit.Framework.TestCaseData.HasExpectedResult">
5291 <summary>
5292 Returns true if the result has been set
5293 </summary>
5294 </member>
5295 <member name="P:NUnit.Framework.TestCaseData.ExpectedException">
5296 <summary>
5297 Gets the expected exception Type
5298 </summary>
5299 </member>
5300 <member name="P:NUnit.Framework.TestCaseData.ExpectedExceptionName">
5301 <summary>
5302 Gets the FullName of the expected exception
5303 </summary>
5304 </member>
5305 <member name="P:NUnit.Framework.TestCaseData.TestName">
5306 <summary>
5307 Gets the name to be used for the test
5308 </summary>
5309 </member>
5310 <member name="P:NUnit.Framework.TestCaseData.Description">
5311 <summary>
5312 Gets the description of the test
5313 </summary>
5314 </member>
5315 <member name="P:NUnit.Framework.TestCaseData.Ignored">
5316 <summary>
5317 Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
5318 </summary>
5319 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
5320 </member>
5321 <member name="P:NUnit.Framework.TestCaseData.Explicit">
5322 <summary>
5323 Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is explicit.
5324 </summary>
5325 <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>
5326 </member>
5327 <member name="P:NUnit.Framework.TestCaseData.IgnoreReason">
5328 <summary>
5329 Gets the ignore reason.
5330 </summary>
5331 <value>The ignore reason.</value>
5332 </member>
5333 <member name="P:NUnit.Framework.TestCaseData.Categories">
5334 <summary>
5335 Gets a list of categories associated with this test.
5336 </summary>
5337 </member>
5338 <member name="P:NUnit.Framework.TestCaseData.Properties">
5339 <summary>
5340 Gets the property dictionary for this test
5341 </summary>
5342 </member>
5343 <member name="T:NUnit.Framework.TestContext">
5344 <summary>
5345 Provide the context information of the current test
5346 </summary>
5347 </member>
5348 <member name="M:NUnit.Framework.TestContext.#ctor(System.Collections.IDictionary)">
5349 <summary>
5350 Constructs a TestContext using the provided context dictionary
5351 </summary>
5352 <param name="context">A context dictionary</param>
5353 </member>
5354 <member name="P:NUnit.Framework.TestContext.CurrentContext">
5355 <summary>
5356 Get the current test context. This is created
5357 as needed. The user may save the context for
5358 use within a test, but it should not be used
5359 outside the test for which it is created.
5360 </summary>
5361 </member>
5362 <member name="P:NUnit.Framework.TestContext.Test">
5363 <summary>
5364 Gets a TestAdapter representing the currently executing test in this context.
5365 </summary>
5366 </member>
5367 <member name="P:NUnit.Framework.TestContext.Result">
5368 <summary>
5369 Gets a ResultAdapter representing the current result for the test
5370 executing in this context.
5371 </summary>
5372 </member>
5373 <member name="P:NUnit.Framework.TestContext.TestDirectory">
5374 <summary>
5375 Gets the directory containing the current test assembly.
5376 </summary>
5377 </member>
5378 <member name="P:NUnit.Framework.TestContext.WorkDirectory">
5379 <summary>
5380 Gets the directory to be used for outputing files created
5381 by this test run.
5382 </summary>
5383 </member>
5384 <member name="T:NUnit.Framework.TestContext.TestAdapter">
5385 <summary>
5386 TestAdapter adapts a Test for consumption by
5387 the user test code.
5388 </summary>
5389 </member>
5390 <member name="M:NUnit.Framework.TestContext.TestAdapter.#ctor(System.Collections.IDictionary)">
5391 <summary>
5392 Constructs a TestAdapter for this context
5393 </summary>
5394 <param name="context">The context dictionary</param>
5395 </member>
5396 <member name="P:NUnit.Framework.TestContext.TestAdapter.Name">
5397 <summary>
5398 The name of the test.
5399 </summary>
5400 </member>
5401 <member name="P:NUnit.Framework.TestContext.TestAdapter.FullName">
5402 <summary>
5403 The FullName of the test
5404 </summary>
5405 </member>
5406 <member name="P:NUnit.Framework.TestContext.TestAdapter.Properties">
5407 <summary>
5408 The properties of the test.
5409 </summary>
5410 </member>
5411 <member name="T:NUnit.Framework.TestContext.ResultAdapter">
5412 <summary>
5413 ResultAdapter adapts a TestResult for consumption by
5414 the user test code.
5415 </summary>
5416 </member>
5417 <member name="M:NUnit.Framework.TestContext.ResultAdapter.#ctor(System.Collections.IDictionary)">
5418 <summary>
5419 Construct a ResultAdapter for a context
5420 </summary>
5421 <param name="context">The context holding the result</param>
5422 </member>
5423 <member name="P:NUnit.Framework.TestContext.ResultAdapter.State">
5424 <summary>
5425 The TestState of current test. This maps to the ResultState
5426 used in nunit.core and is subject to change in the future.
5427 </summary>
5428 </member>
5429 <member name="P:NUnit.Framework.TestContext.ResultAdapter.Status">
5430 <summary>
5431 The TestStatus of current test. This enum will be used
5432 in future versions of NUnit and so is to be preferred
5433 to the TestState value.
5434 </summary>
5435 </member>
5436 <member name="T:NUnit.Framework.TestDetails">
5437 <summary>
5438 Provides details about a test
5439 </summary>
5440 </member>
5441 <member name="M:NUnit.Framework.TestDetails.#ctor(System.Object,System.Reflection.MethodInfo,System.String,System.String,System.Boolean)">
5442 <summary>
5443 Creates an instance of TestDetails
5444 </summary>
5445 <param name="fixture">The fixture that the test is a member of, if available.</param>
5446 <param name="method">The method that implements the test, if available.</param>
5447 <param name="fullName">The full name of the test.</param>
5448 <param name="type">A string representing the type of test, e.g. "Test Case".</param>
5449 <param name="isSuite">Indicates if the test represents a suite of tests.</param>
5450 </member>
5451 <member name="P:NUnit.Framework.TestDetails.Fixture">
5452 <summary>
5453 The fixture that the test is a member of, if available.
5454 </summary>
5455 </member>
5456 <member name="P:NUnit.Framework.TestDetails.Method">
5457 <summary>
5458 The method that implements the test, if available.
5459 </summary>
5460 </member>
5461 <member name="P:NUnit.Framework.TestDetails.FullName">
5462 <summary>
5463 The full name of the test.
5464 </summary>
5465 </member>
5466 <member name="P:NUnit.Framework.TestDetails.Type">
5467 <summary>
5468 A string representing the type of test, e.g. "Test Case".
5469 </summary>
5470 </member>
5471 <member name="P:NUnit.Framework.TestDetails.IsSuite">
5472 <summary>
5473 Indicates if the test represents a suite of tests.
5474 </summary>
5475 </member>
5476 <member name="T:NUnit.Framework.TestState">
5477 <summary>
5478 The ResultState enum indicates the result of running a test
5479 </summary>
5480 </member>
5481 <member name="F:NUnit.Framework.TestState.Inconclusive">
5482 <summary>
5483 The result is inconclusive
5484 </summary>
5485 </member>
5486 <member name="F:NUnit.Framework.TestState.NotRunnable">
5487 <summary>
5488 The test was not runnable.
5489 </summary>
5490 </member>
5491 <member name="F:NUnit.Framework.TestState.Skipped">
5492 <summary>
5493 The test has been skipped.
5494 </summary>
5495 </member>
5496 <member name="F:NUnit.Framework.TestState.Ignored">
5497 <summary>
5498 The test has been ignored.
5499 </summary>
5500 </member>
5501 <member name="F:NUnit.Framework.TestState.Success">
5502 <summary>
5503 The test succeeded
5504 </summary>
5505 </member>
5506 <member name="F:NUnit.Framework.TestState.Failure">
5507 <summary>
5508 The test failed
5509 </summary>
5510 </member>
5511 <member name="F:NUnit.Framework.TestState.Error">
5512 <summary>
5513 The test encountered an unexpected exception
5514 </summary>
5515 </member>
5516 <member name="F:NUnit.Framework.TestState.Cancelled">
5517 <summary>
5518 The test was cancelled by the user
5519 </summary>
5520 </member>
5521 <member name="T:NUnit.Framework.TestStatus">
5522 <summary>
5523 The TestStatus enum indicates the result of running a test
5524 </summary>
5525 </member>
5526 <member name="F:NUnit.Framework.TestStatus.Inconclusive">
5527 <summary>
5528 The test was inconclusive
5529 </summary>
5530 </member>
5531 <member name="F:NUnit.Framework.TestStatus.Skipped">
5532 <summary>
5533 The test has skipped
5534 </summary>
5535 </member>
5536 <member name="F:NUnit.Framework.TestStatus.Passed">
5537 <summary>
5538 The test succeeded
5539 </summary>
5540 </member>
5541 <member name="F:NUnit.Framework.TestStatus.Failed">
5542 <summary>
5543 The test failed
5544 </summary>
5545 </member>
5546 <member name="T:NUnit.Framework.Text">
5547 <summary>
5548 Helper class with static methods used to supply constraints
5549 that operate on strings.
5550 </summary>
5551 </member>
5552 <member name="M:NUnit.Framework.Text.Contains(System.String)">
5553 <summary>
5554 Returns a constraint that succeeds if the actual
5555 value contains the substring supplied as an argument.
5556 </summary>
5557 </member>
5558 <member name="M:NUnit.Framework.Text.DoesNotContain(System.String)">
5559 <summary>
5560 Returns a constraint that fails if the actual
5561 value contains the substring supplied as an argument.
5562 </summary>
5563 </member>
5564 <member name="M:NUnit.Framework.Text.StartsWith(System.String)">
5565 <summary>
5566 Returns a constraint that succeeds if the actual
5567 value starts with the substring supplied as an argument.
5568 </summary>
5569 </member>
5570 <member name="M:NUnit.Framework.Text.DoesNotStartWith(System.String)">
5571 <summary>
5572 Returns a constraint that fails if the actual
5573 value starts with the substring supplied as an argument.
5574 </summary>
5575 </member>
5576 <member name="M:NUnit.Framework.Text.EndsWith(System.String)">
5577 <summary>
5578 Returns a constraint that succeeds if the actual
5579 value ends with the substring supplied as an argument.
5580 </summary>
5581 </member>
5582 <member name="M:NUnit.Framework.Text.DoesNotEndWith(System.String)">
5583 <summary>
5584 Returns a constraint that fails if the actual
5585 value ends with the substring supplied as an argument.
5586 </summary>
5587 </member>
5588 <member name="M:NUnit.Framework.Text.Matches(System.String)">
5589 <summary>
5590 Returns a constraint that succeeds if the actual
5591 value matches the Regex pattern supplied as an argument.
5592 </summary>
5593 </member>
5594 <member name="M:NUnit.Framework.Text.DoesNotMatch(System.String)">
5595 <summary>
5596 Returns a constraint that fails if the actual
5597 value matches the pattern supplied as an argument.
5598 </summary>
5599 </member>
5600 <member name="P:NUnit.Framework.Text.All">
5601 <summary>
5602 Returns a ConstraintExpression, which will apply
5603 the following constraint to all members of a collection,
5604 succeeding if all of them succeed.
5605 </summary>
5606 </member>
5607 <member name="T:NUnit.Framework.TextMessageWriter">
5608 <summary>
5609 TextMessageWriter writes constraint descriptions and messages
5610 in displayable form as a text stream. It tailors the display
5611 of individual message components to form the standard message
5612 format of NUnit assertion failure messages.
5613 </summary>
5614 </member>
5615 <member name="T:NUnit.Framework.Constraints.MessageWriter">
5616 <summary>
5617 MessageWriter is the abstract base for classes that write
5618 constraint descriptions and messages in some form. The
5619 class has separate methods for writing various components
5620 of a message, allowing implementations to tailor the
5621 presentation as needed.
5622 </summary>
5623 </member>
5624 <member name="M:NUnit.Framework.Constraints.MessageWriter.#ctor">
5625 <summary>
5626 Construct a MessageWriter given a culture
5627 </summary>
5628 </member>
5629 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])">
5630 <summary>
5631 Method to write single line message with optional args, usually
5632 written to precede the general failure message.
5633 </summary>
5634 <param name="message">The message to be written</param>
5635 <param name="args">Any arguments used in formatting the message</param>
5636 </member>
5637 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
5638 <summary>
5639 Method to write single line message with optional args, usually
5640 written to precede the general failure message, at a givel
5641 indentation level.
5642 </summary>
5643 <param name="level">The indentation level of the message</param>
5644 <param name="message">The message to be written</param>
5645 <param name="args">Any arguments used in formatting the message</param>
5646 </member>
5647 <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
5648 <summary>
5649 Display Expected and Actual lines for a constraint. This
5650 is called by MessageWriter's default implementation of
5651 WriteMessageTo and provides the generic two-line display.
5652 </summary>
5653 <param name="constraint">The constraint that failed</param>
5654 </member>
5655 <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)">
5656 <summary>
5657 Display Expected and Actual lines for given values. This
5658 method may be called by constraints that need more control over
5659 the display of actual and expected values than is provided
5660 by the default implementation.
5661 </summary>
5662 <param name="expected">The expected value</param>
5663 <param name="actual">The actual value causing the failure</param>
5664 </member>
5665 <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
5666 <summary>
5667 Display Expected and Actual lines for given values, including
5668 a tolerance value on the Expected line.
5669 </summary>
5670 <param name="expected">The expected value</param>
5671 <param name="actual">The actual value causing the failure</param>
5672 <param name="tolerance">The tolerance within which the test was made</param>
5673 </member>
5674 <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
5675 <summary>
5676 Display the expected and actual string values on separate lines.
5677 If the mismatch parameter is >=0, an additional line is displayed
5678 line containing a caret that points to the mismatch point.
5679 </summary>
5680 <param name="expected">The expected string value</param>
5681 <param name="actual">The actual string value</param>
5682 <param name="mismatch">The point at which the strings don't match or -1</param>
5683 <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
5684 <param name="clipping">If true, the strings should be clipped to fit the line</param>
5685 </member>
5686 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)">
5687 <summary>
5688 Writes the text for a connector.
5689 </summary>
5690 <param name="connector">The connector.</param>
5691 </member>
5692 <member name="M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)">
5693 <summary>
5694 Writes the text for a predicate.
5695 </summary>
5696 <param name="predicate">The predicate.</param>
5697 </member>
5698 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)">
5699 <summary>
5700 Writes the text for an expected value.
5701 </summary>
5702 <param name="expected">The expected value.</param>
5703 </member>
5704 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)">
5705 <summary>
5706 Writes the text for a modifier
5707 </summary>
5708 <param name="modifier">The modifier.</param>
5709 </member>
5710 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)">
5711 <summary>
5712 Writes the text for an actual value.
5713 </summary>
5714 <param name="actual">The actual value.</param>
5715 </member>
5716 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)">
5717 <summary>
5718 Writes the text for a generalized value.
5719 </summary>
5720 <param name="val">The value.</param>
5721 </member>
5722 <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)">
5723 <summary>
5724 Writes the text for a collection value,
5725 starting at a particular point, to a max length
5726 </summary>
5727 <param name="collection">The collection containing elements to write.</param>
5728 <param name="start">The starting point of the elements to write</param>
5729 <param name="max">The maximum number of elements to write</param>
5730 </member>
5731 <member name="P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength">
5732 <summary>
5733 Abstract method to get the max line length
5734 </summary>
5735 </member>
5736 <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
5737 <summary>
5738 Prefix used for the expected value line of a message
5739 </summary>
5740 </member>
5741 <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
5742 <summary>
5743 Prefix used for the actual value line of a message
5744 </summary>
5745 </member>
5746 <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
5747 <summary>
5748 Length of a message prefix
5749 </summary>
5750 </member>
5751 <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
5752 <summary>
5753 Construct a TextMessageWriter
5754 </summary>
5755 </member>
5756 <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
5757 <summary>
5758 Construct a TextMessageWriter, specifying a user message
5759 and optional formatting arguments.
5760 </summary>
5761 <param name="userMessage"></param>
5762 <param name="args"></param>
5763 </member>
5764 <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
5765 <summary>
5766 Method to write single line message with optional args, usually
5767 written to precede the general failure message, at a givel
5768 indentation level.
5769 </summary>
5770 <param name="level">The indentation level of the message</param>
5771 <param name="message">The message to be written</param>
5772 <param name="args">Any arguments used in formatting the message</param>
5773 </member>
5774 <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
5775 <summary>
5776 Display Expected and Actual lines for a constraint. This
5777 is called by MessageWriter's default implementation of
5778 WriteMessageTo and provides the generic two-line display.
5779 </summary>
5780 <param name="constraint">The constraint that failed</param>
5781 </member>
5782 <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
5783 <summary>
5784 Display Expected and Actual lines for given values. This
5785 method may be called by constraints that need more control over
5786 the display of actual and expected values than is provided
5787 by the default implementation.
5788 </summary>
5789 <param name="expected">The expected value</param>
5790 <param name="actual">The actual value causing the failure</param>
5791 </member>
5792 <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
5793 <summary>
5794 Display Expected and Actual lines for given values, including
5795 a tolerance value on the expected line.
5796 </summary>
5797 <param name="expected">The expected value</param>
5798 <param name="actual">The actual value causing the failure</param>
5799 <param name="tolerance">The tolerance within which the test was made</param>
5800 </member>
5801 <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
5802 <summary>
5803 Display the expected and actual string values on separate lines.
5804 If the mismatch parameter is >=0, an additional line is displayed
5805 line containing a caret that points to the mismatch point.
5806 </summary>
5807 <param name="expected">The expected string value</param>
5808 <param name="actual">The actual string value</param>
5809 <param name="mismatch">The point at which the strings don't match or -1</param>
5810 <param name="ignoreCase">If true, case is ignored in string comparisons</param>
5811 <param name="clipping">If true, clip the strings to fit the max line length</param>
5812 </member>
5813 <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
5814 <summary>
5815 Writes the text for a connector.
5816 </summary>
5817 <param name="connector">The connector.</param>
5818 </member>
5819 <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
5820 <summary>
5821 Writes the text for a predicate.
5822 </summary>
5823 <param name="predicate">The predicate.</param>
5824 </member>
5825 <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
5826 <summary>
5827 Write the text for a modifier.
5828 </summary>
5829 <param name="modifier">The modifier.</param>
5830 </member>
5831 <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
5832 <summary>
5833 Writes the text for an expected value.
5834 </summary>
5835 <param name="expected">The expected value.</param>
5836 </member>
5837 <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
5838 <summary>
5839 Writes the text for an actual value.
5840 </summary>
5841 <param name="actual">The actual value.</param>
5842 </member>
5843 <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
5844 <summary>
5845 Writes the text for a generalized value.
5846 </summary>
5847 <param name="val">The value.</param>
5848 </member>
5849 <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)">
5850 <summary>
5851 Writes the text for a collection value,
5852 starting at a particular point, to a max length
5853 </summary>
5854 <param name="collection">The collection containing elements to write.</param>
5855 <param name="start">The starting point of the elements to write</param>
5856 <param name="max">The maximum number of elements to write</param>
5857 </member>
5858 <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
5859 <summary>
5860 Write the generic 'Expected' line for a constraint
5861 </summary>
5862 <param name="constraint">The constraint that failed</param>
5863 </member>
5864 <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
5865 <summary>
5866 Write the generic 'Expected' line for a given value
5867 </summary>
5868 <param name="expected">The expected value</param>
5869 </member>
5870 <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)">
5871 <summary>
5872 Write the generic 'Expected' line for a given value
5873 and tolerance.
5874 </summary>
5875 <param name="expected">The expected value</param>
5876 <param name="tolerance">The tolerance within which the test was made</param>
5877 </member>
5878 <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
5879 <summary>
5880 Write the generic 'Actual' line for a constraint
5881 </summary>
5882 <param name="constraint">The constraint for which the actual value is to be written</param>
5883 </member>
5884 <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
5885 <summary>
5886 Write the generic 'Actual' line for a given value
5887 </summary>
5888 <param name="actual">The actual value causing a failure</param>
5889 </member>
5890 <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
5891 <summary>
5892 Gets or sets the maximum line length for this writer
5893 </summary>
5894 </member>
5895 <member name="T:NUnit.Framework.Throws">
5896 <summary>
5897 Helper class with properties and methods that supply
5898 constraints that operate on exceptions.
5899 </summary>
5900 </member>
5901 <member name="M:NUnit.Framework.Throws.TypeOf(System.Type)">
5902 <summary>
5903 Creates a constraint specifying the exact type of exception expected
5904 </summary>
5905 </member>
5906 <member name="M:NUnit.Framework.Throws.TypeOf``1">
5907 <summary>
5908 Creates a constraint specifying the exact type of exception expected
5909 </summary>
5910 </member>
5911 <member name="M:NUnit.Framework.Throws.InstanceOf(System.Type)">
5912 <summary>
5913 Creates a constraint specifying the type of exception expected
5914 </summary>
5915 </member>
5916 <member name="M:NUnit.Framework.Throws.InstanceOf``1">
5917 <summary>
5918 Creates a constraint specifying the type of exception expected
5919 </summary>
5920 </member>
5921 <member name="P:NUnit.Framework.Throws.Exception">
5922 <summary>
5923 Creates a constraint specifying an expected exception
5924 </summary>
5925 </member>
5926 <member name="P:NUnit.Framework.Throws.InnerException">
5927 <summary>
5928 Creates a constraint specifying an exception with a given InnerException
5929 </summary>
5930 </member>
5931 <member name="P:NUnit.Framework.Throws.TargetInvocationException">
5932 <summary>
5933 Creates a constraint specifying an expected TargetInvocationException
5934 </summary>
5935 </member>
5936 <member name="P:NUnit.Framework.Throws.ArgumentException">
5937 <summary>
5938 Creates a constraint specifying an expected TargetInvocationException
5939 </summary>
5940 </member>
5941 <member name="P:NUnit.Framework.Throws.InvalidOperationException">
5942 <summary>
5943 Creates a constraint specifying an expected TargetInvocationException
5944 </summary>
5945 </member>
5946 <member name="P:NUnit.Framework.Throws.Nothing">
5947 <summary>
5948 Creates a constraint specifying that no exception is thrown
5949 </summary>
5950 </member>
5951 <member name="T:NUnit.Framework.CategoryAttribute">
5952 <summary>
5953 Attribute used to apply a category to a test
5954 </summary>
5955 </member>
5956 <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
5957 <summary>
5958 The name of the category
5959 </summary>
5960 </member>
5961 <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
5962 <summary>
5963 Construct attribute for a given category based on
5964 a name. The name may not contain the characters ',',
5965 '+', '-' or '!'. However, this is not checked in the
5966 constructor since it would cause an error to arise at
5967 as the test was loaded without giving a clear indication
5968 of where the problem is located. The error is handled
5969 in NUnitFramework.cs by marking the test as not
5970 runnable.
5971 </summary>
5972 <param name="name">The name of the category</param>
5973 </member>
5974 <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
5975 <summary>
5976 Protected constructor uses the Type name as the name
5977 of the category.
5978 </summary>
5979 </member>
5980 <member name="P:NUnit.Framework.CategoryAttribute.Name">
5981 <summary>
5982 The name of the category
5983 </summary>
5984 </member>
5985 <member name="T:NUnit.Framework.DatapointAttribute">
5986 <summary>
5987 Used to mark a field for use as a datapoint when executing a theory
5988 within the same fixture that requires an argument of the field's Type.
5989 </summary>
5990 </member>
5991 <member name="T:NUnit.Framework.DatapointsAttribute">
5992 <summary>
5993 Used to mark an array as containing a set of datapoints to be used
5994 executing a theory within the same fixture that requires an argument
5995 of the Type of the array elements.
5996 </summary>
5997 </member>
5998 <member name="T:NUnit.Framework.DescriptionAttribute">
5999 <summary>
6000 Attribute used to provide descriptive text about a
6001 test case or fixture.
6002 </summary>
6003 </member>
6004 <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
6005 <summary>
6006 Construct the attribute
6007 </summary>
6008 <param name="description">Text describing the test</param>
6009 </member>
6010 <member name="P:NUnit.Framework.DescriptionAttribute.Description">
6011 <summary>
6012 Gets the test description
6013 </summary>
6014 </member>
6015 <member name="T:NUnit.Framework.MessageMatch">
6016 <summary>
6017 Enumeration indicating how the expected message parameter is to be used
6018 </summary>
6019 </member>
6020 <member name="F:NUnit.Framework.MessageMatch.Exact">
6021 Expect an exact match
6022 </member>
6023 <member name="F:NUnit.Framework.MessageMatch.Contains">
6024 Expect a message containing the parameter string
6025 </member>
6026 <member name="F:NUnit.Framework.MessageMatch.Regex">
6027 Match the regular expression provided as a parameter
6028 </member>
6029 <member name="F:NUnit.Framework.MessageMatch.StartsWith">
6030 Expect a message that starts with the parameter string
6031 </member>
6032 <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
6033 <summary>
6034 ExpectedExceptionAttribute
6035 </summary>
6036
6037 </member>
6038 <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
6039 <summary>
6040 Constructor for a non-specific exception
6041 </summary>
6042 </member>
6043 <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
6044 <summary>
6045 Constructor for a given type of exception
6046 </summary>
6047 <param name="exceptionType">The type of the expected exception</param>
6048 </member>
6049 <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
6050 <summary>
6051 Constructor for a given exception name
6052 </summary>
6053 <param name="exceptionName">The full name of the expected exception</param>
6054 </member>
6055 <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
6056 <summary>
6057 Gets or sets the expected exception type
6058 </summary>
6059 </member>
6060 <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
6061 <summary>
6062 Gets or sets the full Type name of the expected exception
6063 </summary>
6064 </member>
6065 <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
6066 <summary>
6067 Gets or sets the expected message text
6068 </summary>
6069 </member>
6070 <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
6071 <summary>
6072 Gets or sets the user message displayed in case of failure
6073 </summary>
6074 </member>
6075 <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
6076 <summary>
6077 Gets or sets the type of match to be performed on the expected message
6078 </summary>
6079 </member>
6080 <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
6081 <summary>
6082 Gets the name of a method to be used as an exception handler
6083 </summary>
6084 </member>
6085 <member name="T:NUnit.Framework.ExplicitAttribute">
6086 <summary>
6087 ExplicitAttribute marks a test or test fixture so that it will
6088 only be run if explicitly executed from the gui or command line
6089 or if it is included by use of a filter. The test will not be
6090 run simply because an enclosing suite is run.
6091 </summary>
6092 </member>
6093 <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
6094 <summary>
6095 Default constructor
6096 </summary>
6097 </member>
6098 <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
6099 <summary>
6100 Constructor with a reason
6101 </summary>
6102 <param name="reason">The reason test is marked explicit</param>
6103 </member>
6104 <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
6105 <summary>
6106 The reason test is marked explicit
6107 </summary>
6108 </member>
6109 <member name="T:NUnit.Framework.IgnoreAttribute">
6110 <summary>
6111 Attribute used to mark a test that is to be ignored.
6112 Ignored tests result in a warning message when the
6113 tests are run.
6114 </summary>
6115 </member>
6116 <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
6117 <summary>
6118 Constructs the attribute without giving a reason
6119 for ignoring the test.
6120 </summary>
6121 </member>
6122 <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
6123 <summary>
6124 Constructs the attribute giving a reason for ignoring the test
6125 </summary>
6126 <param name="reason">The reason for ignoring the test</param>
6127 </member>
6128 <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
6129 <summary>
6130 The reason for ignoring a test
6131 </summary>
6132 </member>
6133 <member name="T:NUnit.Framework.IncludeExcludeAttribute">
6134 <summary>
6135 Abstract base for Attributes that are used to include tests
6136 in the test run based on environmental settings.
6137 </summary>
6138 </member>
6139 <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
6140 <summary>
6141 Constructor with no included items specified, for use
6142 with named property syntax.
6143 </summary>
6144 </member>
6145 <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
6146 <summary>
6147 Constructor taking one or more included items
6148 </summary>
6149 <param name="include">Comma-delimited list of included items</param>
6150 </member>
6151 <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
6152 <summary>
6153 Name of the item that is needed in order for
6154 a test to run. Multiple itemss may be given,
6155 separated by a comma.
6156 </summary>
6157 </member>
6158 <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
6159 <summary>
6160 Name of the item to be excluded. Multiple items
6161 may be given, separated by a comma.
6162 </summary>
6163 </member>
6164 <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
6165 <summary>
6166 The reason for including or excluding the test
6167 </summary>
6168 </member>
6169 <member name="T:NUnit.Framework.PlatformAttribute">
6170 <summary>
6171 PlatformAttribute is used to mark a test fixture or an
6172 individual method as applying to a particular platform only.
6173 </summary>
6174 </member>
6175 <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
6176 <summary>
6177 Constructor with no platforms specified, for use
6178 with named property syntax.
6179 </summary>
6180 </member>
6181 <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
6182 <summary>
6183 Constructor taking one or more platforms
6184 </summary>
6185 <param name="platforms">Comma-deliminted list of platforms</param>
6186 </member>
6187 <member name="T:NUnit.Framework.CultureAttribute">
6188 <summary>
6189 CultureAttribute is used to mark a test fixture or an
6190 individual method as applying to a particular Culture only.
6191 </summary>
6192 </member>
6193 <member name="M:NUnit.Framework.CultureAttribute.#ctor">
6194 <summary>
6195 Constructor with no cultures specified, for use
6196 with named property syntax.
6197 </summary>
6198 </member>
6199 <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
6200 <summary>
6201 Constructor taking one or more cultures
6202 </summary>
6203 <param name="cultures">Comma-deliminted list of cultures</param>
6204 </member>
6205 <member name="T:NUnit.Framework.CombinatorialAttribute">
6206 <summary>
6207 Marks a test to use a combinatorial join of any argument data
6208 provided. NUnit will create a test case for every combination of
6209 the arguments provided. This can result in a large number of test
6210 cases and so should be used judiciously. This is the default join
6211 type, so the attribute need not be used except as documentation.
6212 </summary>
6213 </member>
6214 <member name="T:NUnit.Framework.PropertyAttribute">
6215 <summary>
6216 PropertyAttribute is used to attach information to a test as a name/value pair..
6217 </summary>
6218 </member>
6219 <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
6220 <summary>
6221 Construct a PropertyAttribute with a name and string value
6222 </summary>
6223 <param name="propertyName">The name of the property</param>
6224 <param name="propertyValue">The property value</param>
6225 </member>
6226 <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
6227 <summary>
6228 Construct a PropertyAttribute with a name and int value
6229 </summary>
6230 <param name="propertyName">The name of the property</param>
6231 <param name="propertyValue">The property value</param>
6232 </member>
6233 <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
6234 <summary>
6235 Construct a PropertyAttribute with a name and double value
6236 </summary>
6237 <param name="propertyName">The name of the property</param>
6238 <param name="propertyValue">The property value</param>
6239 </member>
6240 <member name="M:NUnit.Framework.PropertyAttribute.#ctor">
6241 <summary>
6242 Constructor for derived classes that set the
6243 property dictionary directly.
6244 </summary>
6245 </member>
6246 <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
6247 <summary>
6248 Constructor for use by derived classes that use the
6249 name of the type as the property name. Derived classes
6250 must ensure that the Type of the property value is
6251 a standard type supported by the BCL. Any custom
6252 types will cause a serialization Exception when
6253 in the client.
6254 </summary>
6255 </member>
6256 <member name="P:NUnit.Framework.PropertyAttribute.Properties">
6257 <summary>
6258 Gets the property dictionary for this attribute
6259 </summary>
6260 </member>
6261 <member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
6262 <summary>
6263 Default constructor
6264 </summary>
6265 </member>
6266 <member name="T:NUnit.Framework.PairwiseAttribute">
6267 <summary>
6268 Marks a test to use pairwise join of any argument data provided.
6269 NUnit will attempt too excercise every pair of argument values at
6270 least once, using as small a number of test cases as it can. With
6271 only two arguments, this is the same as a combinatorial join.
6272 </summary>
6273 </member>
6274 <member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
6275 <summary>
6276 Default constructor
6277 </summary>
6278 </member>
6279 <member name="T:NUnit.Framework.SequentialAttribute">
6280 <summary>
6281 Marks a test to use a sequential join of any argument data
6282 provided. NUnit will use arguements for each parameter in
6283 sequence, generating test cases up to the largest number
6284 of argument values provided and using null for any arguments
6285 for which it runs out of values. Normally, this should be
6286 used with the same number of arguments for each parameter.
6287 </summary>
6288 </member>
6289 <member name="M:NUnit.Framework.SequentialAttribute.#ctor">
6290 <summary>
6291 Default constructor
6292 </summary>
6293 </member>
6294 <member name="T:NUnit.Framework.MaxTimeAttribute">
6295 <summary>
6296 Summary description for MaxTimeAttribute.
6297 </summary>
6298 </member>
6299 <member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
6300 <summary>
6301 Construct a MaxTimeAttribute, given a time in milliseconds.
6302 </summary>
6303 <param name="milliseconds">The maximum elapsed time in milliseconds</param>
6304 </member>
6305 <member name="T:NUnit.Framework.RandomAttribute">
6306 <summary>
6307 RandomAttribute is used to supply a set of random values
6308 to a single parameter of a parameterized test.
6309 </summary>
6310 </member>
6311 <member name="T:NUnit.Framework.ValuesAttribute">
6312 <summary>
6313 ValuesAttribute is used to provide literal arguments for
6314 an individual parameter of a test.
6315 </summary>
6316 </member>
6317 <member name="T:NUnit.Framework.ParameterDataAttribute">
6318 <summary>
6319 Abstract base class for attributes that apply to parameters
6320 and supply data for the parameter.
6321 </summary>
6322 </member>
6323 <member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
6324 <summary>
6325 Gets the data to be provided to the specified parameter
6326 </summary>
6327 </member>
6328 <member name="F:NUnit.Framework.ValuesAttribute.data">
6329 <summary>
6330 The collection of data to be returned. Must
6331 be set by any derived attribute classes.
6332 We use an object[] so that the individual
6333 elements may have their type changed in GetData
6334 if necessary.
6335 </summary>
6336 </member>
6337 <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
6338 <summary>
6339 Construct with one argument
6340 </summary>
6341 <param name="arg1"></param>
6342 </member>
6343 <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
6344 <summary>
6345 Construct with two arguments
6346 </summary>
6347 <param name="arg1"></param>
6348 <param name="arg2"></param>
6349 </member>
6350 <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
6351 <summary>
6352 Construct with three arguments
6353 </summary>
6354 <param name="arg1"></param>
6355 <param name="arg2"></param>
6356 <param name="arg3"></param>
6357 </member>
6358 <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
6359 <summary>
6360 Construct with an array of arguments
6361 </summary>
6362 <param name="args"></param>
6363 </member>
6364 <member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
6365 <summary>
6366 Get the collection of values to be used as arguments
6367 </summary>
6368 </member>
6369 <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
6370 <summary>
6371 Construct a set of doubles from 0.0 to 1.0,
6372 specifying only the count.
6373 </summary>
6374 <param name="count"></param>
6375 </member>
6376 <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
6377 <summary>
6378 Construct a set of doubles from min to max
6379 </summary>
6380 <param name="min"></param>
6381 <param name="max"></param>
6382 <param name="count"></param>
6383 </member>
6384 <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
6385 <summary>
6386 Construct a set of ints from min to max
6387 </summary>
6388 <param name="min"></param>
6389 <param name="max"></param>
6390 <param name="count"></param>
6391 </member>
6392 <member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
6393 <summary>
6394 Get the collection of values to be used as arguments
6395 </summary>
6396 </member>
6397 <member name="T:NUnit.Framework.RangeAttribute">
6398 <summary>
6399 RangeAttribute is used to supply a range of values to an
6400 individual parameter of a parameterized test.
6401 </summary>
6402 </member>
6403 <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
6404 <summary>
6405 Construct a range of ints using default step of 1
6406 </summary>
6407 <param name="from"></param>
6408 <param name="to"></param>
6409 </member>
6410 <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
6411 <summary>
6412 Construct a range of ints specifying the step size
6413 </summary>
6414 <param name="from"></param>
6415 <param name="to"></param>
6416 <param name="step"></param>
6417 </member>
6418 <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
6419 <summary>
6420 Construct a range of longs
6421 </summary>
6422 <param name="from"></param>
6423 <param name="to"></param>
6424 <param name="step"></param>
6425 </member>
6426 <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
6427 <summary>
6428 Construct a range of doubles
6429 </summary>
6430 <param name="from"></param>
6431 <param name="to"></param>
6432 <param name="step"></param>
6433 </member>
6434 <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
6435 <summary>
6436 Construct a range of floats
6437 </summary>
6438 <param name="from"></param>
6439 <param name="to"></param>
6440 <param name="step"></param>
6441 </member>
6442 <member name="T:NUnit.Framework.RepeatAttribute">
6443 <summary>
6444 RepeatAttribute may be applied to test case in order
6445 to run it multiple times.
6446 </summary>
6447 </member>
6448 <member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
6449 <summary>
6450 Construct a RepeatAttribute
6451 </summary>
6452 <param name="count">The number of times to run the test</param>
6453 </member>
6454 <member name="T:NUnit.Framework.RequiredAddinAttribute">
6455 <summary>
6456 RequiredAddinAttribute may be used to indicate the names of any addins
6457 that must be present in order to run some or all of the tests in an
6458 assembly. If the addin is not loaded, the entire assembly is marked
6459 as NotRunnable.
6460 </summary>
6461 </member>
6462 <member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
6463 <summary>
6464 Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
6465 </summary>
6466 <param name="requiredAddin">The required addin.</param>
6467 </member>
6468 <member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
6469 <summary>
6470 Gets the name of required addin.
6471 </summary>
6472 <value>The required addin name.</value>
6473 </member>
6474 <member name="T:NUnit.Framework.SetCultureAttribute">
6475 <summary>
6476 Summary description for SetCultureAttribute.
6477 </summary>
6478 </member>
6479 <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
6480 <summary>
6481 Construct given the name of a culture
6482 </summary>
6483 <param name="culture"></param>
6484 </member>
6485 <member name="T:NUnit.Framework.SetUICultureAttribute">
6486 <summary>
6487 Summary description for SetUICultureAttribute.
6488 </summary>
6489 </member>
6490 <member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
6491 <summary>
6492 Construct given the name of a culture
6493 </summary>
6494 <param name="culture"></param>
6495 </member>
6496 <member name="T:NUnit.Framework.SetUpAttribute">
6497 <summary>
6498 SetUpAttribute is used in a TestFixture to identify a method
6499 that is called immediately before each test is run. It is
6500 also used in a SetUpFixture to identify the method that is
6501 called once, before any of the subordinate tests are run.
6502 </summary>
6503 </member>
6504 <member name="T:NUnit.Framework.SetUpFixtureAttribute">
6505 <summary>
6506 Attribute used to mark a class that contains one-time SetUp
6507 and/or TearDown methods that apply to all the tests in a
6508 namespace or an assembly.
6509 </summary>
6510 </member>
6511 <member name="T:NUnit.Framework.SuiteAttribute">
6512 <summary>
6513 Attribute used to mark a static (shared in VB) property
6514 that returns a list of tests.
6515 </summary>
6516 </member>
6517 <member name="T:NUnit.Framework.TearDownAttribute">
6518 <summary>
6519 Attribute used in a TestFixture to identify a method that is
6520 called immediately after each test is run. It is also used
6521 in a SetUpFixture to identify the method that is called once,
6522 after all subordinate tests have run. In either case, the method
6523 is guaranteed to be called, even if an exception is thrown.
6524 </summary>
6525 </member>
6526 <member name="T:NUnit.Framework.TestActionAttribute">
6527 <summary>
6528 Provide actions to execute before and after tests.
6529 </summary>
6530 </member>
6531 <member name="T:NUnit.Framework.ITestAction">
6532 <summary>
6533 When implemented by an attribute, this interface implemented to provide actions to execute before and after tests.
6534 </summary>
6535 </member>
6536 <member name="M:NUnit.Framework.ITestAction.BeforeTest(NUnit.Framework.TestDetails)">
6537 <summary>
6538 Executed before each test is run
6539 </summary>
6540 <param name="testDetails">Provides details about the test that is going to be run.</param>
6541 </member>
6542 <member name="M:NUnit.Framework.ITestAction.AfterTest(NUnit.Framework.TestDetails)">
6543 <summary>
6544 Executed after each test is run
6545 </summary>
6546 <param name="testDetails">Provides details about the test that has just been run.</param>
6547 </member>
6548 <member name="P:NUnit.Framework.ITestAction.Targets">
6549 <summary>
6550 Provides the target for the action attribute
6551 </summary>
6552 <returns>The target for the action attribute</returns>
6553 </member>
6554 <member name="T:NUnit.Framework.TestAttribute">
6555 <summary>
6556 Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
6557 class makes the method callable from the NUnit test runner. There is a property
6558 called Description which is optional which you can provide a more detailed test
6559 description. This class cannot be inherited.
6560 </summary>
6561
6562 <example>
6563 [TestFixture]
6564 public class Fixture
6565 {
6566 [Test]
6567 public void MethodToTest()
6568 {}
6569
6570 [Test(Description = "more detailed description")]
6571 publc void TestDescriptionMethod()
6572 {}
6573 }
6574 </example>
6575
6576 </member>
6577 <member name="P:NUnit.Framework.TestAttribute.Description">
6578 <summary>
6579 Descriptive text for this test
6580 </summary>
6581 </member>
6582 <member name="T:NUnit.Framework.TestCaseAttribute">
6583 <summary>
6584 TestCaseAttribute is used to mark parameterized test cases
6585 and provide them with their arguments.
6586 </summary>
6587 </member>
6588 <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
6589 <summary>
6590 Construct a TestCaseAttribute with a list of arguments.
6591 This constructor is not CLS-Compliant
6592 </summary>
6593 <param name="arguments"></param>
6594 </member>
6595 <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
6596 <summary>
6597 Construct a TestCaseAttribute with a single argument
6598 </summary>
6599 <param name="arg"></param>
6600 </member>
6601 <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
6602 <summary>
6603 Construct a TestCaseAttribute with a two arguments
6604 </summary>
6605 <param name="arg1"></param>
6606 <param name="arg2"></param>
6607 </member>
6608 <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
6609 <summary>
6610 Construct a TestCaseAttribute with a three arguments
6611 </summary>
6612 <param name="arg1"></param>
6613 <param name="arg2"></param>
6614 <param name="arg3"></param>
6615 </member>
6616 <member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
6617 <summary>
6618 Gets the list of arguments to a test case
6619 </summary>
6620 </member>
6621 <member name="P:NUnit.Framework.TestCaseAttribute.Result">
6622 <summary>
6623 Gets or sets the expected result. Use
6624 ExpectedResult by preference.
6625 </summary>
6626 <value>The result.</value>
6627 </member>
6628 <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedResult">
6629 <summary>
6630 Gets or sets the expected result.
6631 </summary>
6632 <value>The result.</value>
6633 </member>
6634 <member name="P:NUnit.Framework.TestCaseAttribute.HasExpectedResult">
6635 <summary>
6636 Gets a flag indicating whether an expected
6637 result has been set.
6638 </summary>
6639 </member>
6640 <member name="P:NUnit.Framework.TestCaseAttribute.Categories">
6641 <summary>
6642 Gets a list of categories associated with this test;
6643 </summary>
6644 </member>
6645 <member name="P:NUnit.Framework.TestCaseAttribute.Category">
6646 <summary>
6647 Gets or sets the category associated with this test.
6648 May be a single category or a comma-separated list.
6649 </summary>
6650 </member>
6651 <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
6652 <summary>
6653 Gets or sets the expected exception.
6654 </summary>
6655 <value>The expected exception.</value>
6656 </member>
6657 <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
6658 <summary>
6659 Gets or sets the name the expected exception.
6660 </summary>
6661 <value>The expected name of the exception.</value>
6662 </member>
6663 <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
6664 <summary>
6665 Gets or sets the expected message of the expected exception
6666 </summary>
6667 <value>The expected message of the exception.</value>
6668 </member>
6669 <member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
6670 <summary>
6671 Gets or sets the type of match to be performed on the expected message
6672 </summary>
6673 </member>
6674 <member name="P:NUnit.Framework.TestCaseAttribute.Description">
6675 <summary>
6676 Gets or sets the description.
6677 </summary>
6678 <value>The description.</value>
6679 </member>
6680 <member name="P:NUnit.Framework.TestCaseAttribute.TestName">
6681 <summary>
6682 Gets or sets the name of the test.
6683 </summary>
6684 <value>The name of the test.</value>
6685 </member>
6686 <member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
6687 <summary>
6688 Gets or sets the ignored status of the test
6689 </summary>
6690 </member>
6691 <member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
6692 <summary>
6693 Gets or sets the ignored status of the test
6694 </summary>
6695 </member>
6696 <member name="P:NUnit.Framework.TestCaseAttribute.Explicit">
6697 <summary>
6698 Gets or sets the explicit status of the test
6699 </summary>
6700 </member>
6701 <member name="P:NUnit.Framework.TestCaseAttribute.Reason">
6702 <summary>
6703 Gets or sets the reason for not running the test
6704 </summary>
6705 </member>
6706 <member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
6707 <summary>
6708 Gets or sets the reason for not running the test.
6709 Set has the side effect of marking the test as ignored.
6710 </summary>
6711 <value>The ignore reason.</value>
6712 </member>
6713 <member name="T:NUnit.Framework.TestCaseSourceAttribute">
6714 <summary>
6715 FactoryAttribute indicates the source to be used to
6716 provide test cases for a test method.
6717 </summary>
6718 </member>
6719 <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
6720 <summary>
6721 Construct with the name of the data source, which must
6722 be a property, field or method of the test class itself.
6723 </summary>
6724 <param name="sourceName">An array of the names of the factories that will provide data</param>
6725 </member>
6726 <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type)">
6727 <summary>
6728 Construct with a Type, which must implement IEnumerable
6729 </summary>
6730 <param name="sourceType">The Type that will provide data</param>
6731 </member>
6732 <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
6733 <summary>
6734 Construct with a Type and name.
6735 that don't support params arrays.
6736 </summary>
6737 <param name="sourceType">The Type that will provide data</param>
6738 <param name="sourceName">The name of the method, property or field that will provide data</param>
6739 </member>
6740 <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
6741 <summary>
6742 The name of a the method, property or fiend to be used as a source
6743 </summary>
6744 </member>
6745 <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
6746 <summary>
6747 A Type to be used as a source
6748 </summary>
6749 </member>
6750 <member name="P:NUnit.Framework.TestCaseSourceAttribute.Category">
6751 <summary>
6752 Gets or sets the category associated with this test.
6753 May be a single category or a comma-separated list.
6754 </summary>
6755 </member>
6756 <member name="T:NUnit.Framework.TestFixtureAttribute">
6757 <example>
6758 [TestFixture]
6759 public class ExampleClass
6760 {}
6761 </example>
6762 </member>
6763 <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
6764 <summary>
6765 Default constructor
6766 </summary>
6767 </member>
6768 <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
6769 <summary>
6770 Construct with a object[] representing a set of arguments.
6771 In .NET 2.0, the arguments may later be separated into
6772 type arguments and constructor arguments.
6773 </summary>
6774 <param name="arguments"></param>
6775 </member>
6776 <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
6777 <summary>
6778 Descriptive text for this fixture
6779 </summary>
6780 </member>
6781 <member name="P:NUnit.Framework.TestFixtureAttribute.Category">
6782 <summary>
6783 Gets and sets the category for this fixture.
6784 May be a comma-separated list of categories.
6785 </summary>
6786 </member>
6787 <member name="P:NUnit.Framework.TestFixtureAttribute.Categories">
6788 <summary>
6789 Gets a list of categories for this fixture
6790 </summary>
6791 </member>
6792 <member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
6793 <summary>
6794 The arguments originally provided to the attribute
6795 </summary>
6796 </member>
6797 <member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
6798 <summary>
6799 Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
6800 </summary>
6801 <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
6802 </member>
6803 <member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
6804 <summary>
6805 Gets or sets the ignore reason. May set Ignored as a side effect.
6806 </summary>
6807 <value>The ignore reason.</value>
6808 </member>
6809 <member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
6810 <summary>
6811 Get or set the type arguments. If not set
6812 explicitly, any leading arguments that are
6813 Types are taken as type arguments.
6814 </summary>
6815 </member>
6816 <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
6817 <summary>
6818 Attribute used to identify a method that is
6819 called before any tests in a fixture are run.
6820 </summary>
6821 </member>
6822 <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
6823 <summary>
6824 Attribute used to identify a method that is called after
6825 all the tests in a fixture have run. The method is
6826 guaranteed to be called, even if an exception is thrown.
6827 </summary>
6828 </member>
6829 <member name="T:NUnit.Framework.TheoryAttribute">
6830 <summary>
6831 Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
6832 class makes the method callable from the NUnit test runner. There is a property
6833 called Description which is optional which you can provide a more detailed test
6834 description. This class cannot be inherited.
6835 </summary>
6836
6837 <example>
6838 [TestFixture]
6839 public class Fixture
6840 {
6841 [Test]
6842 public void MethodToTest()
6843 {}
6844
6845 [Test(Description = "more detailed description")]
6846 publc void TestDescriptionMethod()
6847 {}
6848 }
6849 </example>
6850
6851 </member>
6852 <member name="T:NUnit.Framework.TimeoutAttribute">
6853 <summary>
6854 Used on a method, marks the test with a timeout value in milliseconds.
6855 The test will be run in a separate thread and is cancelled if the timeout
6856 is exceeded. Used on a method or assembly, sets the default timeout
6857 for all contained test methods.
6858 </summary>
6859 </member>
6860 <member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
6861 <summary>
6862 Construct a TimeoutAttribute given a time in milliseconds
6863 </summary>
6864 <param name="timeout">The timeout value in milliseconds</param>
6865 </member>
6866 <member name="T:NUnit.Framework.RequiresSTAAttribute">
6867 <summary>
6868 Marks a test that must run in the STA, causing it
6869 to run in a separate thread if necessary.
6870
6871 On methods, you may also use STAThreadAttribute
6872 to serve the same purpose.
6873 </summary>
6874 </member>
6875 <member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
6876 <summary>
6877 Construct a RequiresSTAAttribute
6878 </summary>
6879 </member>
6880 <member name="T:NUnit.Framework.RequiresMTAAttribute">
6881 <summary>
6882 Marks a test that must run in the MTA, causing it
6883 to run in a separate thread if necessary.
6884
6885 On methods, you may also use MTAThreadAttribute
6886 to serve the same purpose.
6887 </summary>
6888 </member>
6889 <member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
6890 <summary>
6891 Construct a RequiresMTAAttribute
6892 </summary>
6893 </member>
6894 <member name="T:NUnit.Framework.RequiresThreadAttribute">
6895 <summary>
6896 Marks a test that must run on a separate thread.
6897 </summary>
6898 </member>
6899 <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
6900 <summary>
6901 Construct a RequiresThreadAttribute
6902 </summary>
6903 </member>
6904 <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
6905 <summary>
6906 Construct a RequiresThreadAttribute, specifying the apartment
6907 </summary>
6908 </member>
6909 <member name="T:NUnit.Framework.ValueSourceAttribute">
6910 <summary>
6911 ValueSourceAttribute indicates the source to be used to
6912 provide data for one parameter of a test method.
6913 </summary>
6914 </member>
6915 <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
6916 <summary>
6917 Construct with the name of the factory - for use with languages
6918 that don't support params arrays.
6919 </summary>
6920 <param name="sourceName">The name of the data source to be used</param>
6921 </member>
6922 <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
6923 <summary>
6924 Construct with a Type and name - for use with languages
6925 that don't support params arrays.
6926 </summary>
6927 <param name="sourceType">The Type that will provide data</param>
6928 <param name="sourceName">The name of the method, property or field that will provide data</param>
6929 </member>
6930 <member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
6931 <summary>
6932 The name of a the method, property or fiend to be used as a source
6933 </summary>
6934 </member>
6935 <member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
6936 <summary>
6937 A Type to be used as a source
6938 </summary>
6939 </member>
6940 <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
6941 <summary>
6942 AllItemsConstraint applies another constraint to each
6943 item in a collection, succeeding if they all succeed.
6944 </summary>
6945 </member>
6946 <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
6947 <summary>
6948 Abstract base class used for prefixes
6949 </summary>
6950 </member>
6951 <member name="T:NUnit.Framework.Constraints.Constraint">
6952 <summary>
6953 The Constraint class is the base of all built-in constraints
6954 within NUnit. It provides the operator overloads used to combine
6955 constraints.
6956 </summary>
6957 </member>
6958 <member name="T:NUnit.Framework.Constraints.IResolveConstraint">
6959 <summary>
6960 The IConstraintExpression interface is implemented by all
6961 complete and resolvable constraints and expressions.
6962 </summary>
6963 </member>
6964 <member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
6965 <summary>
6966 Return the top-level constraint for this expression
6967 </summary>
6968 <returns></returns>
6969 </member>
6970 <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
6971 <summary>
6972 Static UnsetObject used to detect derived constraints
6973 failing to set the actual value.
6974 </summary>
6975 </member>
6976 <member name="F:NUnit.Framework.Constraints.Constraint.actual">
6977 <summary>
6978 The actual value being tested against a constraint
6979 </summary>
6980 </member>
6981 <member name="F:NUnit.Framework.Constraints.Constraint.displayName">
6982 <summary>
6983 The display name of this Constraint for use by ToString()
6984 </summary>
6985 </member>
6986 <member name="F:NUnit.Framework.Constraints.Constraint.argcnt">
6987 <summary>
6988 Argument fields used by ToString();
6989 </summary>
6990 </member>
6991 <member name="F:NUnit.Framework.Constraints.Constraint.builder">
6992 <summary>
6993 The builder holding this constraint
6994 </summary>
6995 </member>
6996 <member name="M:NUnit.Framework.Constraints.Constraint.#ctor">
6997 <summary>
6998 Construct a constraint with no arguments
6999 </summary>
7000 </member>
7001 <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)">
7002 <summary>
7003 Construct a constraint with one argument
7004 </summary>
7005 </member>
7006 <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)">
7007 <summary>
7008 Construct a constraint with two arguments
7009 </summary>
7010 </member>
7011 <member name="M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)">
7012 <summary>
7013 Sets the ConstraintBuilder holding this constraint
7014 </summary>
7015 </member>
7016 <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
7017 <summary>
7018 Write the failure message to the MessageWriter provided
7019 as an argument. The default implementation simply passes
7020 the constraint and the actual value to the writer, which
7021 then displays the constraint description and the value.
7022
7023 Constraints that need to provide additional details,
7024 such as where the error occured can override this.
7025 </summary>
7026 <param name="writer">The MessageWriter on which to display the message</param>
7027 </member>
7028 <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
7029 <summary>
7030 Test whether the constraint is satisfied by a given value
7031 </summary>
7032 <param name="actual">The value to be tested</param>
7033 <returns>True for success, false for failure</returns>
7034 </member>
7035 <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
7036 <summary>
7037 Test whether the constraint is satisfied by an
7038 ActualValueDelegate that returns the value to be tested.
7039 The default implementation simply evaluates the delegate
7040 but derived classes may override it to provide for delayed
7041 processing.
7042 </summary>
7043 <param name="del">An <see cref="T:NUnit.Framework.Constraints.ActualValueDelegate`1"/></param>
7044 <returns>True for success, false for failure</returns>
7045 </member>
7046 <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)">
7047 <summary>
7048 Test whether the constraint is satisfied by a given reference.
7049 The default implementation simply dereferences the value but
7050 derived classes may override it to provide for delayed processing.
7051 </summary>
7052 <param name="actual">A reference to the value to be tested</param>
7053 <returns>True for success, false for failure</returns>
7054 </member>
7055 <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7056 <summary>
7057 Write the constraint description to a MessageWriter
7058 </summary>
7059 <param name="writer">The writer on which the description is displayed</param>
7060 </member>
7061 <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
7062 <summary>
7063 Write the actual value for a failing constraint test to a
7064 MessageWriter. The default implementation simply writes
7065 the raw value of actual, leaving it to the writer to
7066 perform any formatting.
7067 </summary>
7068 <param name="writer">The writer on which the actual value is displayed</param>
7069 </member>
7070 <member name="M:NUnit.Framework.Constraints.Constraint.ToString">
7071 <summary>
7072 Default override of ToString returns the constraint DisplayName
7073 followed by any arguments within angle brackets.
7074 </summary>
7075 <returns></returns>
7076 </member>
7077 <member name="M:NUnit.Framework.Constraints.Constraint.GetStringRepresentation">
7078 <summary>
7079 Returns the string representation of this constraint
7080 </summary>
7081 </member>
7082 <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
7083 <summary>
7084 This operator creates a constraint that is satisfied only if both
7085 argument constraints are satisfied.
7086 </summary>
7087 </member>
7088 <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
7089 <summary>
7090 This operator creates a constraint that is satisfied if either
7091 of the argument constraints is satisfied.
7092 </summary>
7093 </member>
7094 <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
7095 <summary>
7096 This operator creates a constraint that is satisfied if the
7097 argument constraint is not satisfied.
7098 </summary>
7099 </member>
7100 <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32)">
7101 <summary>
7102 Returns a DelayedConstraint with the specified delay time.
7103 </summary>
7104 <param name="delayInMilliseconds">The delay in milliseconds.</param>
7105 <returns></returns>
7106 </member>
7107 <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)">
7108 <summary>
7109 Returns a DelayedConstraint with the specified delay time
7110 and polling interval.
7111 </summary>
7112 <param name="delayInMilliseconds">The delay in milliseconds.</param>
7113 <param name="pollingInterval">The interval at which to test the constraint.</param>
7114 <returns></returns>
7115 </member>
7116 <member name="P:NUnit.Framework.Constraints.Constraint.DisplayName">
7117 <summary>
7118 The display name of this Constraint for use by ToString().
7119 The default value is the name of the constraint with
7120 trailing "Constraint" removed. Derived classes may set
7121 this to another name in their constructors.
7122 </summary>
7123 </member>
7124 <member name="P:NUnit.Framework.Constraints.Constraint.And">
7125 <summary>
7126 Returns a ConstraintExpression by appending And
7127 to the current constraint.
7128 </summary>
7129 </member>
7130 <member name="P:NUnit.Framework.Constraints.Constraint.With">
7131 <summary>
7132 Returns a ConstraintExpression by appending And
7133 to the current constraint.
7134 </summary>
7135 </member>
7136 <member name="P:NUnit.Framework.Constraints.Constraint.Or">
7137 <summary>
7138 Returns a ConstraintExpression by appending Or
7139 to the current constraint.
7140 </summary>
7141 </member>
7142 <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
7143 <summary>
7144 Class used to detect any derived constraints
7145 that fail to set the actual value in their
7146 Matches override.
7147 </summary>
7148 </member>
7149 <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
7150 <summary>
7151 The base constraint
7152 </summary>
7153 </member>
7154 <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
7155 <summary>
7156 Construct given a base constraint
7157 </summary>
7158 <param name="resolvable"></param>
7159 </member>
7160 <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
7161 <summary>
7162 Construct an AllItemsConstraint on top of an existing constraint
7163 </summary>
7164 <param name="itemConstraint"></param>
7165 </member>
7166 <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
7167 <summary>
7168 Apply the item constraint to each item in the collection,
7169 failing if any item fails.
7170 </summary>
7171 <param name="actual"></param>
7172 <returns></returns>
7173 </member>
7174 <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7175 <summary>
7176 Write a description of this constraint to a MessageWriter
7177 </summary>
7178 <param name="writer"></param>
7179 </member>
7180 <member name="T:NUnit.Framework.Constraints.AndConstraint">
7181 <summary>
7182 AndConstraint succeeds only if both members succeed.
7183 </summary>
7184 </member>
7185 <member name="T:NUnit.Framework.Constraints.BinaryConstraint">
7186 <summary>
7187 BinaryConstraint is the abstract base of all constraints
7188 that combine two other constraints in some fashion.
7189 </summary>
7190 </member>
7191 <member name="F:NUnit.Framework.Constraints.BinaryConstraint.left">
7192 <summary>
7193 The first constraint being combined
7194 </summary>
7195 </member>
7196 <member name="F:NUnit.Framework.Constraints.BinaryConstraint.right">
7197 <summary>
7198 The second constraint being combined
7199 </summary>
7200 </member>
7201 <member name="M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
7202 <summary>
7203 Construct a BinaryConstraint from two other constraints
7204 </summary>
7205 <param name="left">The first constraint</param>
7206 <param name="right">The second constraint</param>
7207 </member>
7208 <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
7209 <summary>
7210 Create an AndConstraint from two other constraints
7211 </summary>
7212 <param name="left">The first constraint</param>
7213 <param name="right">The second constraint</param>
7214 </member>
7215 <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
7216 <summary>
7217 Apply both member constraints to an actual value, succeeding
7218 succeeding only if both of them succeed.
7219 </summary>
7220 <param name="actual">The actual value</param>
7221 <returns>True if the constraints both succeeded</returns>
7222 </member>
7223 <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7224 <summary>
7225 Write a description for this contraint to a MessageWriter
7226 </summary>
7227 <param name="writer">The MessageWriter to receive the description</param>
7228 </member>
7229 <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
7230 <summary>
7231 Write the actual value for a failing constraint test to a
7232 MessageWriter. The default implementation simply writes
7233 the raw value of actual, leaving it to the writer to
7234 perform any formatting.
7235 </summary>
7236 <param name="writer">The writer on which the actual value is displayed</param>
7237 </member>
7238 <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
7239 <summary>
7240 AssignableFromConstraint is used to test that an object
7241 can be assigned from a given Type.
7242 </summary>
7243 </member>
7244 <member name="T:NUnit.Framework.Constraints.TypeConstraint">
7245 <summary>
7246 TypeConstraint is the abstract base for constraints
7247 that take a Type as their expected value.
7248 </summary>
7249 </member>
7250 <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
7251 <summary>
7252 The expected Type used by the constraint
7253 </summary>
7254 </member>
7255 <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
7256 <summary>
7257 Construct a TypeConstraint for a given Type
7258 </summary>
7259 <param name="type"></param>
7260 </member>
7261 <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
7262 <summary>
7263 Write the actual value for a failing constraint test to a
7264 MessageWriter. TypeConstraints override this method to write
7265 the name of the type.
7266 </summary>
7267 <param name="writer">The writer on which the actual value is displayed</param>
7268 </member>
7269 <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
7270 <summary>
7271 Construct an AssignableFromConstraint for the type provided
7272 </summary>
7273 <param name="type"></param>
7274 </member>
7275 <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
7276 <summary>
7277 Test whether an object can be assigned from the specified type
7278 </summary>
7279 <param name="actual">The object to be tested</param>
7280 <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
7281 </member>
7282 <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7283 <summary>
7284 Write a description of this constraint to a MessageWriter
7285 </summary>
7286 <param name="writer">The MessageWriter to use</param>
7287 </member>
7288 <member name="T:NUnit.Framework.Constraints.AssignableToConstraint">
7289 <summary>
7290 AssignableToConstraint is used to test that an object
7291 can be assigned to a given Type.
7292 </summary>
7293 </member>
7294 <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)">
7295 <summary>
7296 Construct an AssignableToConstraint for the type provided
7297 </summary>
7298 <param name="type"></param>
7299 </member>
7300 <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)">
7301 <summary>
7302 Test whether an object can be assigned to the specified type
7303 </summary>
7304 <param name="actual">The object to be tested</param>
7305 <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
7306 </member>
7307 <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7308 <summary>
7309 Write a description of this constraint to a MessageWriter
7310 </summary>
7311 <param name="writer">The MessageWriter to use</param>
7312 </member>
7313 <member name="T:NUnit.Framework.Constraints.AttributeConstraint">
7314 <summary>
7315 AttributeConstraint tests that a specified attribute is present
7316 on a Type or other provider and that the value of the attribute
7317 satisfies some other constraint.
7318 </summary>
7319 </member>
7320 <member name="M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)">
7321 <summary>
7322 Constructs an AttributeConstraint for a specified attriute
7323 Type and base constraint.
7324 </summary>
7325 <param name="type"></param>
7326 <param name="baseConstraint"></param>
7327 </member>
7328 <member name="M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)">
7329 <summary>
7330 Determines whether the Type or other provider has the
7331 expected attribute and if its value matches the
7332 additional constraint specified.
7333 </summary>
7334 </member>
7335 <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7336 <summary>
7337 Writes a description of the attribute to the specified writer.
7338 </summary>
7339 </member>
7340 <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
7341 <summary>
7342 Writes the actual value supplied to the specified writer.
7343 </summary>
7344 </member>
7345 <member name="M:NUnit.Framework.Constraints.AttributeConstraint.GetStringRepresentation">
7346 <summary>
7347 Returns a string representation of the constraint.
7348 </summary>
7349 </member>
7350 <member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
7351 <summary>
7352 AttributeExistsConstraint tests for the presence of a
7353 specified attribute on a Type.
7354 </summary>
7355 </member>
7356 <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)">
7357 <summary>
7358 Constructs an AttributeExistsConstraint for a specific attribute Type
7359 </summary>
7360 <param name="type"></param>
7361 </member>
7362 <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)">
7363 <summary>
7364 Tests whether the object provides the expected attribute.
7365 </summary>
7366 <param name="actual">A Type, MethodInfo, or other ICustomAttributeProvider</param>
7367 <returns>True if the expected attribute is present, otherwise false</returns>
7368 </member>
7369 <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7370 <summary>
7371 Writes the description of the constraint to the specified writer
7372 </summary>
7373 </member>
7374 <member name="T:NUnit.Framework.Constraints.BasicConstraint">
7375 <summary>
7376 BasicConstraint is the abstract base for constraints that
7377 perform a simple comparison to a constant value.
7378 </summary>
7379 </member>
7380 <member name="M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)">
7381 <summary>
7382 Initializes a new instance of the <see cref="T:BasicConstraint"/> class.
7383 </summary>
7384 <param name="expected">The expected.</param>
7385 <param name="description">The description.</param>
7386 </member>
7387 <member name="M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)">
7388 <summary>
7389 Test whether the constraint is satisfied by a given value
7390 </summary>
7391 <param name="actual">The value to be tested</param>
7392 <returns>True for success, false for failure</returns>
7393 </member>
7394 <member name="M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7395 <summary>
7396 Write the constraint description to a MessageWriter
7397 </summary>
7398 <param name="writer">The writer on which the description is displayed</param>
7399 </member>
7400 <member name="T:NUnit.Framework.Constraints.BinarySerializableConstraint">
7401 <summary>
7402 BinarySerializableConstraint tests whether
7403 an object is serializable in binary format.
7404 </summary>
7405 </member>
7406 <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)">
7407 <summary>
7408 Test whether the constraint is satisfied by a given value
7409 </summary>
7410 <param name="actual">The value to be tested</param>
7411 <returns>True for success, false for failure</returns>
7412 </member>
7413 <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7414 <summary>
7415 Write the constraint description to a MessageWriter
7416 </summary>
7417 <param name="writer">The writer on which the description is displayed</param>
7418 </member>
7419 <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
7420 <summary>
7421 Write the actual value for a failing constraint test to a
7422 MessageWriter. The default implementation simply writes
7423 the raw value of actual, leaving it to the writer to
7424 perform any formatting.
7425 </summary>
7426 <param name="writer">The writer on which the actual value is displayed</param>
7427 </member>
7428 <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.GetStringRepresentation">
7429 <summary>
7430 Returns the string representation
7431 </summary>
7432 </member>
7433 <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
7434 <summary>
7435 CollectionConstraint is the abstract base class for
7436 constraints that operate on collections.
7437 </summary>
7438 </member>
7439 <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor">
7440 <summary>
7441 Construct an empty CollectionConstraint
7442 </summary>
7443 </member>
7444 <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)">
7445 <summary>
7446 Construct a CollectionConstraint
7447 </summary>
7448 <param name="arg"></param>
7449 </member>
7450 <member name="M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)">
7451 <summary>
7452 Determines whether the specified enumerable is empty.
7453 </summary>
7454 <param name="enumerable">The enumerable.</param>
7455 <returns>
7456 <c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.
7457 </returns>
7458 </member>
7459 <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
7460 <summary>
7461 Test whether the constraint is satisfied by a given value
7462 </summary>
7463 <param name="actual">The value to be tested</param>
7464 <returns>True for success, false for failure</returns>
7465 </member>
7466 <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
7467 <summary>
7468 Protected method to be implemented by derived classes
7469 </summary>
7470 <param name="collection"></param>
7471 <returns></returns>
7472 </member>
7473 <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
7474 <summary>
7475 CollectionContainsConstraint is used to test whether a collection
7476 contains an expected object as a member.
7477 </summary>
7478 </member>
7479 <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint">
7480 <summary>
7481 CollectionItemsEqualConstraint is the abstract base class for all
7482 collection constraints that apply some notion of item equality
7483 as a part of their operation.
7484 </summary>
7485 </member>
7486 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor">
7487 <summary>
7488 Construct an empty CollectionConstraint
7489 </summary>
7490 </member>
7491 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)">
7492 <summary>
7493 Construct a CollectionConstraint
7494 </summary>
7495 <param name="arg"></param>
7496 </member>
7497 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(NUnit.Framework.Constraints.EqualityAdapter)">
7498 <summary>
7499 Flag the constraint to use the supplied EqualityAdapter.
7500 NOTE: For internal use only.
7501 </summary>
7502 <param name="adapter">The EqualityAdapter to use.</param>
7503 <returns>Self.</returns>
7504 </member>
7505 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)">
7506 <summary>
7507 Flag the constraint to use the supplied IComparer object.
7508 </summary>
7509 <param name="comparer">The IComparer object to use.</param>
7510 <returns>Self.</returns>
7511 </member>
7512 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
7513 <summary>
7514 Flag the constraint to use the supplied IComparer object.
7515 </summary>
7516 <param name="comparer">The IComparer object to use.</param>
7517 <returns>Self.</returns>
7518 </member>
7519 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})">
7520 <summary>
7521 Flag the constraint to use the supplied Comparison object.
7522 </summary>
7523 <param name="comparer">The IComparer object to use.</param>
7524 <returns>Self.</returns>
7525 </member>
7526 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)">
7527 <summary>
7528 Flag the constraint to use the supplied IEqualityComparer object.
7529 </summary>
7530 <param name="comparer">The IComparer object to use.</param>
7531 <returns>Self.</returns>
7532 </member>
7533 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
7534 <summary>
7535 Flag the constraint to use the supplied IEqualityComparer object.
7536 </summary>
7537 <param name="comparer">The IComparer object to use.</param>
7538 <returns>Self.</returns>
7539 </member>
7540 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)">
7541 <summary>
7542 Compares two collection members for equality
7543 </summary>
7544 </member>
7545 <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)">
7546 <summary>
7547 Return a new CollectionTally for use in making tests
7548 </summary>
7549 <param name="c">The collection to be included in the tally</param>
7550 </member>
7551 <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase">
7552 <summary>
7553 Flag the constraint to ignore case and return self.
7554 </summary>
7555 </member>
7556 <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
7557 <summary>
7558 Construct a CollectionContainsConstraint
7559 </summary>
7560 <param name="expected"></param>
7561 </member>
7562 <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
7563 <summary>
7564 Test whether the expected item is contained in the collection
7565 </summary>
7566 <param name="actual"></param>
7567 <returns></returns>
7568 </member>
7569 <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7570 <summary>
7571 Write a descripton of the constraint to a MessageWriter
7572 </summary>
7573 <param name="writer"></param>
7574 </member>
7575 <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
7576 <summary>
7577 CollectionEquivalentCOnstraint is used to determine whether two
7578 collections are equivalent.
7579 </summary>
7580 </member>
7581 <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
7582 <summary>
7583 Construct a CollectionEquivalentConstraint
7584 </summary>
7585 <param name="expected"></param>
7586 </member>
7587 <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
7588 <summary>
7589 Test whether two collections are equivalent
7590 </summary>
7591 <param name="actual"></param>
7592 <returns></returns>
7593 </member>
7594 <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7595 <summary>
7596 Write a description of this constraint to a MessageWriter
7597 </summary>
7598 <param name="writer"></param>
7599 </member>
7600 <member name="T:NUnit.Framework.Constraints.CollectionOrderedConstraint">
7601 <summary>
7602 CollectionOrderedConstraint is used to test whether a collection is ordered.
7603 </summary>
7604 </member>
7605 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor">
7606 <summary>
7607 Construct a CollectionOrderedConstraint
7608 </summary>
7609 </member>
7610 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)">
7611 <summary>
7612 Modifies the constraint to use an IComparer and returns self.
7613 </summary>
7614 </member>
7615 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
7616 <summary>
7617 Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
7618 </summary>
7619 </member>
7620 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})">
7621 <summary>
7622 Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
7623 </summary>
7624 </member>
7625 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)">
7626 <summary>
7627 Modifies the constraint to test ordering by the value of
7628 a specified property and returns self.
7629 </summary>
7630 </member>
7631 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)">
7632 <summary>
7633 Test whether the collection is ordered
7634 </summary>
7635 <param name="actual"></param>
7636 <returns></returns>
7637 </member>
7638 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7639 <summary>
7640 Write a description of the constraint to a MessageWriter
7641 </summary>
7642 <param name="writer"></param>
7643 </member>
7644 <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.GetStringRepresentation">
7645 <summary>
7646 Returns the string representation of the constraint.
7647 </summary>
7648 <returns></returns>
7649 </member>
7650 <member name="P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending">
7651 <summary>
7652 If used performs a reverse comparison
7653 </summary>
7654 </member>
7655 <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
7656 <summary>
7657 CollectionSubsetConstraint is used to determine whether
7658 one collection is a subset of another
7659 </summary>
7660 </member>
7661 <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
7662 <summary>
7663 Construct a CollectionSubsetConstraint
7664 </summary>
7665 <param name="expected">The collection that the actual value is expected to be a subset of</param>
7666 </member>
7667 <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
7668 <summary>
7669 Test whether the actual collection is a subset of
7670 the expected collection provided.
7671 </summary>
7672 <param name="actual"></param>
7673 <returns></returns>
7674 </member>
7675 <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
7676 <summary>
7677 Write a description of this constraint to a MessageWriter
7678 </summary>
7679 <param name="writer"></param>
7680 </member>
7681 <member name="T:NUnit.Framework.Constraints.CollectionTally">
7682 <summary>
7683 CollectionTally counts (tallies) the number of
7684 occurences of each object in one or more enumerations.
7685 </summary>
7686 </member>
7687 <member name="M:NUnit.Framework.Constraints.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)">
7688 <summary>
7689 Construct a CollectionTally object from a comparer and a collection
7690 </summary>
7691 </member>
7692 <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Object)">
7693 <summary>
7694 Try to remove an object from the tally
7695 </summary>
7696 <param name="o">The object to remove</param>
7697 <returns>True if successful, false if the object was not found</returns>
7698 </member>
7699 <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Collections.IEnumerable)">
7700 <summary>
7701 Try to remove a set of objects from the tally
7702 </summary>
7703 <param name="c">The objects to remove</param>
7704 <returns>True if successful, false if any object was not found</returns>
7705 </member>
7706 <member name="P:NUnit.Framework.Constraints.CollectionTally.Count">
7707 <summary>
7708 The number of objects remaining in the tally
7709 </summary>
7710 </member>
7711 <member name="T:NUnit.Framework.Constraints.ComparisonAdapter">
7712 <summary>
7713 ComparisonAdapter class centralizes all comparisons of
7714 values in NUnit, adapting to the use of any provided
7715 IComparer, IComparer&lt;T&gt; or Comparison&lt;T&gt;
7716 </summary>
7717 </member>
7718 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)">
7719 <summary>
7720 Returns a ComparisonAdapter that wraps an IComparer
7721 </summary>
7722 </member>
7723 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})">
7724 <summary>
7725 Returns a ComparisonAdapter that wraps an IComparer&lt;T&gt;
7726 </summary>
7727 </member>
7728 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})">
7729 <summary>
7730 Returns a ComparisonAdapter that wraps a Comparison&lt;T&gt;
7731 </summary>
7732 </member>
7733 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)">
7734 <summary>
7735 Compares two objects
7736 </summary>
7737 </member>
7738 <member name="P:NUnit.Framework.Constraints.ComparisonAdapter.Default">
7739 <summary>
7740 Gets the default ComparisonAdapter, which wraps an
7741 NUnitComparer object.
7742 </summary>
7743 </member>
7744 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)">
7745 <summary>
7746 Construct a ComparisonAdapter for an IComparer
7747 </summary>
7748 </member>
7749 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)">
7750 <summary>
7751 Compares two objects
7752 </summary>
7753 <param name="expected"></param>
7754 <param name="actual"></param>
7755 <returns></returns>
7756 </member>
7757 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor">
7758 <summary>
7759 Construct a default ComparisonAdapter
7760 </summary>
7761 </member>
7762 <member name="T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1">
7763 <summary>
7764 ComparisonAdapter&lt;T&gt; extends ComparisonAdapter and
7765 allows use of an IComparer&lt;T&gt; or Comparison&lt;T&gt;
7766 to actually perform the comparison.
7767 </summary>
7768 </member>
7769 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})">
7770 <summary>
7771 Construct a ComparisonAdapter for an IComparer&lt;T&gt;
7772 </summary>
7773 </member>
7774 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)">
7775 <summary>
7776 Compare a Type T to an object
7777 </summary>
7778 </member>
7779 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})">
7780 <summary>
7781 Construct a ComparisonAdapter for a Comparison&lt;T&gt;
7782 </summary>
7783 </member>
7784 <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)">
7785 <summary>
7786 Compare a Type T to an object
7787 </summary>
7788 </member>
7789 <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
7790 <summary>
7791 Abstract base class for constraints that compare values to
7792 determine if one is greater than, equal to or less than
7793 the other. This class supplies the Using modifiers.
7794 </summary>
7795 </member>
7796 <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.comparer">
7797 <summary>
7798 ComparisonAdapter to be used in making the comparison
7799 </summary>
7800 </member>
7801 <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object)">
7802 <summary>
7803 Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
7804 </summary>
7805 </member>
7806 <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Object)">
7807 <summary>
7808 Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
7809 </summary>
7810 </member>
7811 <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)">
7812 <summary>
7813 Modifies the constraint to use an IComparer and returns self
7814 </summary>
7815 </member>
7816 <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
7817 <summary>
7818 Modifies the constraint to use an IComparer&lt;T&gt; and returns self
7819 </summary>
7820 </member>
7821 <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})">
7822 <summary>
7823 Modifies the constraint to use a Comparison&lt;T&gt; and returns self
7824 </summary>
7825 </member>
7826 <member name="T:NUnit.Framework.Constraints.ActualValueDelegate`1">
7827 <summary>
7828 Delegate used to delay evaluation of the actual value
7829 to be used in evaluating a constraint
7830 </summary>
7831 </member>
7832 <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
7833 <summary>
7834 ConstraintBuilder maintains the stacks that are used in
7835 processing a ConstraintExpression. An OperatorStack
7836 is used to hold operators that are waiting for their
7837 operands to be reognized. a ConstraintStack holds
7838 input constraints as well as the results of each
7839 operator applied.
7840 </summary>
7841 </member>
7842 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor">
7843 <summary>
7844 Initializes a new instance of the <see cref="T:ConstraintBuilder"/> class.
7845 </summary>
7846 </member>
7847 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)">
7848 <summary>
7849 Appends the specified operator to the expression by first
7850 reducing the operator stack and then pushing the new
7851 operator on the stack.
7852 </summary>
7853 <param name="op">The operator to push.</param>
7854 </member>
7855 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)">
7856 <summary>
7857 Appends the specified constraint to the expresson by pushing
7858 it on the constraint stack.
7859 </summary>
7860 <param name="constraint">The constraint to push.</param>
7861 </member>
7862 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)">
7863 <summary>
7864 Sets the top operator right context.
7865 </summary>
7866 <param name="rightContext">The right context.</param>
7867 </member>
7868 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)">
7869 <summary>
7870 Reduces the operator stack until the topmost item
7871 precedence is greater than or equal to the target precedence.
7872 </summary>
7873 <param name="targetPrecedence">The target precedence.</param>
7874 </member>
7875 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve">
7876 <summary>
7877 Resolves this instance, returning a Constraint. If the builder
7878 is not currently in a resolvable state, an exception is thrown.
7879 </summary>
7880 <returns>The resolved constraint</returns>
7881 </member>
7882 <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable">
7883 <summary>
7884 Gets a value indicating whether this instance is resolvable.
7885 </summary>
7886 <value>
7887 <c>true</c> if this instance is resolvable; otherwise, <c>false</c>.
7888 </value>
7889 </member>
7890 <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack">
7891 <summary>
7892 OperatorStack is a type-safe stack for holding ConstraintOperators
7893 </summary>
7894 </member>
7895 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
7896 <summary>
7897 Initializes a new instance of the <see cref="T:OperatorStack"/> class.
7898 </summary>
7899 <param name="builder">The builder.</param>
7900 </member>
7901 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)">
7902 <summary>
7903 Pushes the specified operator onto the stack.
7904 </summary>
7905 <param name="op">The op.</param>
7906 </member>
7907 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop">
7908 <summary>
7909 Pops the topmost operator from the stack.
7910 </summary>
7911 <returns></returns>
7912 </member>
7913 <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty">
7914 <summary>
7915 Gets a value indicating whether this <see cref="T:OpStack"/> is empty.
7916 </summary>
7917 <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
7918 </member>
7919 <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top">
7920 <summary>
7921 Gets the topmost operator without modifying the stack.
7922 </summary>
7923 <value>The top.</value>
7924 </member>
7925 <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack">
7926 <summary>
7927 ConstraintStack is a type-safe stack for holding Constraints
7928 </summary>
7929 </member>
7930 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
7931 <summary>
7932 Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
7933 </summary>
7934 <param name="builder">The builder.</param>
7935 </member>
7936 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)">
7937 <summary>
7938 Pushes the specified constraint. As a side effect,
7939 the constraint's builder field is set to the
7940 ConstraintBuilder owning this stack.
7941 </summary>
7942 <param name="constraint">The constraint.</param>
7943 </member>
7944 <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop">
7945 <summary>
7946 Pops this topmost constrait from the stack.
7947 As a side effect, the constraint's builder
7948 field is set to null.
7949 </summary>
7950 <returns></returns>
7951 </member>
7952 <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty">
7953 <summary>
7954 Gets a value indicating whether this <see cref="T:ConstraintStack"/> is empty.
7955 </summary>
7956 <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
7957 </member>
7958 <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top">
7959 <summary>
7960 Gets the topmost constraint without modifying the stack.
7961 </summary>
7962 <value>The topmost constraint</value>
7963 </member>
7964 <member name="T:NUnit.Framework.Constraints.ConstraintExpression">
7965 <summary>
7966 ConstraintExpression represents a compound constraint in the
7967 process of being constructed from a series of syntactic elements.
7968
7969 Individual elements are appended to the expression as they are
7970 reognized. Once an actual Constraint is appended, the expression
7971 returns a resolvable Constraint.
7972 </summary>
7973 </member>
7974 <member name="T:NUnit.Framework.Constraints.ConstraintExpressionBase">
7975 <summary>
7976 ConstraintExpressionBase is the abstract base class for the
7977 ConstraintExpression class, which represents a
7978 compound constraint in the process of being constructed
7979 from a series of syntactic elements.
7980
7981 NOTE: ConstraintExpressionBase is separate because the
7982 ConstraintExpression class was generated in earlier
7983 versions of NUnit. The two classes may be combined
7984 in a future version.
7985 </summary>
7986 </member>
7987 <member name="F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder">
7988 <summary>
7989 The ConstraintBuilder holding the elements recognized so far
7990 </summary>
7991 </member>
7992 <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor">
7993 <summary>
7994 Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> class.
7995 </summary>
7996 </member>
7997 <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
7998 <summary>
7999 Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/>
8000 class passing in a ConstraintBuilder, which may be pre-populated.
8001 </summary>
8002 <param name="builder">The builder.</param>
8003 </member>
8004 <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString">
8005 <summary>
8006 Returns a string representation of the expression as it
8007 currently stands. This should only be used for testing,
8008 since it has the side-effect of resolving the expression.
8009 </summary>
8010 <returns></returns>
8011 </member>
8012 <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)">
8013 <summary>
8014 Appends an operator to the expression and returns the
8015 resulting expression itself.
8016 </summary>
8017 </member>
8018 <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)">
8019 <summary>
8020 Appends a self-resolving operator to the expression and
8021 returns a new ResolvableConstraintExpression.
8022 </summary>
8023 </member>
8024 <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)">
8025 <summary>
8026 Appends a constraint to the expression and returns that
8027 constraint, which is associated with the current state
8028 of the expression being built.
8029 </summary>
8030 </member>
8031 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor">
8032 <summary>
8033 Initializes a new instance of the <see cref="T:ConstraintExpression"/> class.
8034 </summary>
8035 </member>
8036 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
8037 <summary>
8038 Initializes a new instance of the <see cref="T:ConstraintExpression"/>
8039 class passing in a ConstraintBuilder, which may be pre-populated.
8040 </summary>
8041 <param name="builder">The builder.</param>
8042 </member>
8043 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Exactly(System.Int32)">
8044 <summary>
8045 Returns a ConstraintExpression, which will apply
8046 the following constraint to all members of a collection,
8047 succeeding only if a specified number of them succeed.
8048 </summary>
8049 </member>
8050 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)">
8051 <summary>
8052 Returns a new PropertyConstraintExpression, which will either
8053 test for the existence of the named property on the object
8054 being tested or apply any following constraint to that property.
8055 </summary>
8056 </member>
8057 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)">
8058 <summary>
8059 Returns a new AttributeConstraint checking for the
8060 presence of a particular attribute on an object.
8061 </summary>
8062 </member>
8063 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1">
8064 <summary>
8065 Returns a new AttributeConstraint checking for the
8066 presence of a particular attribute on an object.
8067 </summary>
8068 </member>
8069 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.Constraint)">
8070 <summary>
8071 Returns the constraint provided as an argument - used to allow custom
8072 custom constraints to easily participate in the syntax.
8073 </summary>
8074 </member>
8075 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})">
8076 <summary>
8077 Returns the constraint provided as an argument - used to allow custom
8078 custom constraints to easily participate in the syntax.
8079 </summary>
8080 </member>
8081 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)">
8082 <summary>
8083 Returns a constraint that tests two items for equality
8084 </summary>
8085 </member>
8086 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)">
8087 <summary>
8088 Returns a constraint that tests that two references are the same object
8089 </summary>
8090 </member>
8091 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)">
8092 <summary>
8093 Returns a constraint that tests whether the
8094 actual value is greater than the suppled argument
8095 </summary>
8096 </member>
8097 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)">
8098 <summary>
8099 Returns a constraint that tests whether the
8100 actual value is greater than or equal to the suppled argument
8101 </summary>
8102 </member>
8103 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)">
8104 <summary>
8105 Returns a constraint that tests whether the
8106 actual value is greater than or equal to the suppled argument
8107 </summary>
8108 </member>
8109 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)">
8110 <summary>
8111 Returns a constraint that tests whether the
8112 actual value is less than the suppled argument
8113 </summary>
8114 </member>
8115 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)">
8116 <summary>
8117 Returns a constraint that tests whether the
8118 actual value is less than or equal to the suppled argument
8119 </summary>
8120 </member>
8121 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)">
8122 <summary>
8123 Returns a constraint that tests whether the
8124 actual value is less than or equal to the suppled argument
8125 </summary>
8126 </member>
8127 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)">
8128 <summary>
8129 Returns a constraint that tests whether the actual
8130 value is of the exact type supplied as an argument.
8131 </summary>
8132 </member>
8133 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1">
8134 <summary>
8135 Returns a constraint that tests whether the actual
8136 value is of the exact type supplied as an argument.
8137 </summary>
8138 </member>
8139 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)">
8140 <summary>
8141 Returns a constraint that tests whether the actual value
8142 is of the type supplied as an argument or a derived type.
8143 </summary>
8144 </member>
8145 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1">
8146 <summary>
8147 Returns a constraint that tests whether the actual value
8148 is of the type supplied as an argument or a derived type.
8149 </summary>
8150 </member>
8151 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)">
8152 <summary>
8153 Returns a constraint that tests whether the actual value
8154 is of the type supplied as an argument or a derived type.
8155 </summary>
8156 </member>
8157 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1">
8158 <summary>
8159 Returns a constraint that tests whether the actual value
8160 is of the type supplied as an argument or a derived type.
8161 </summary>
8162 </member>
8163 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)">
8164 <summary>
8165 Returns a constraint that tests whether the actual value
8166 is assignable from the type supplied as an argument.
8167 </summary>
8168 </member>
8169 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1">
8170 <summary>
8171 Returns a constraint that tests whether the actual value
8172 is assignable from the type supplied as an argument.
8173 </summary>
8174 </member>
8175 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)">
8176 <summary>
8177 Returns a constraint that tests whether the actual value
8178 is assignable from the type supplied as an argument.
8179 </summary>
8180 </member>
8181 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1">
8182 <summary>
8183 Returns a constraint that tests whether the actual value
8184 is assignable from the type supplied as an argument.
8185 </summary>
8186 </member>
8187 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)">
8188 <summary>
8189 Returns a constraint that tests whether the actual value
8190 is a collection containing the same elements as the
8191 collection supplied as an argument.
8192 </summary>
8193 </member>
8194 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)">
8195 <summary>
8196 Returns a constraint that tests whether the actual value
8197 is a subset of the collection supplied as an argument.
8198 </summary>
8199 </member>
8200 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)">
8201 <summary>
8202 Returns a new CollectionContainsConstraint checking for the
8203 presence of a particular object in the collection.
8204 </summary>
8205 </member>
8206 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)">
8207 <summary>
8208 Returns a new CollectionContainsConstraint checking for the
8209 presence of a particular object in the collection.
8210 </summary>
8211 </member>
8212 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)">
8213 <summary>
8214 Returns a new ContainsConstraint. This constraint
8215 will, in turn, make use of the appropriate second-level
8216 constraint, depending on the type of the actual argument.
8217 This overload is only used if the item sought is a string,
8218 since any other type implies that we are looking for a
8219 collection member.
8220 </summary>
8221 </member>
8222 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)">
8223 <summary>
8224 Returns a constraint that succeeds if the actual
8225 value contains the substring supplied as an argument.
8226 </summary>
8227 </member>
8228 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)">
8229 <summary>
8230 Returns a constraint that succeeds if the actual
8231 value contains the substring supplied as an argument.
8232 </summary>
8233 </member>
8234 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)">
8235 <summary>
8236 Returns a constraint that succeeds if the actual
8237 value starts with the substring supplied as an argument.
8238 </summary>
8239 </member>
8240 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)">
8241 <summary>
8242 Returns a constraint that succeeds if the actual
8243 value starts with the substring supplied as an argument.
8244 </summary>
8245 </member>
8246 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)">
8247 <summary>
8248 Returns a constraint that succeeds if the actual
8249 value ends with the substring supplied as an argument.
8250 </summary>
8251 </member>
8252 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)">
8253 <summary>
8254 Returns a constraint that succeeds if the actual
8255 value ends with the substring supplied as an argument.
8256 </summary>
8257 </member>
8258 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)">
8259 <summary>
8260 Returns a constraint that succeeds if the actual
8261 value matches the regular expression supplied as an argument.
8262 </summary>
8263 </member>
8264 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)">
8265 <summary>
8266 Returns a constraint that succeeds if the actual
8267 value matches the regular expression supplied as an argument.
8268 </summary>
8269 </member>
8270 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)">
8271 <summary>
8272 Returns a constraint that tests whether the path provided
8273 is the same as an expected path after canonicalization.
8274 </summary>
8275 </member>
8276 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubPath(System.String)">
8277 <summary>
8278 Returns a constraint that tests whether the path provided
8279 is the same path or under an expected path after canonicalization.
8280 </summary>
8281 </member>
8282 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)">
8283 <summary>
8284 Returns a constraint that tests whether the path provided
8285 is the same path or under an expected path after canonicalization.
8286 </summary>
8287 </member>
8288 <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InRange``1(``0,``0)">
8289 <summary>
8290 Returns a constraint that tests whether the actual value falls
8291 within a specified range.
8292 </summary>
8293 </member>
8294 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Not">
8295 <summary>
8296 Returns a ConstraintExpression that negates any
8297 following constraint.
8298 </summary>
8299 </member>
8300 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.No">
8301 <summary>
8302 Returns a ConstraintExpression that negates any
8303 following constraint.
8304 </summary>
8305 </member>
8306 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.All">
8307 <summary>
8308 Returns a ConstraintExpression, which will apply
8309 the following constraint to all members of a collection,
8310 succeeding if all of them succeed.
8311 </summary>
8312 </member>
8313 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Some">
8314 <summary>
8315 Returns a ConstraintExpression, which will apply
8316 the following constraint to all members of a collection,
8317 succeeding if at least one of them succeeds.
8318 </summary>
8319 </member>
8320 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.None">
8321 <summary>
8322 Returns a ConstraintExpression, which will apply
8323 the following constraint to all members of a collection,
8324 succeeding if all of them fail.
8325 </summary>
8326 </member>
8327 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Length">
8328 <summary>
8329 Returns a new ConstraintExpression, which will apply the following
8330 constraint to the Length property of the object being tested.
8331 </summary>
8332 </member>
8333 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Count">
8334 <summary>
8335 Returns a new ConstraintExpression, which will apply the following
8336 constraint to the Count property of the object being tested.
8337 </summary>
8338 </member>
8339 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Message">
8340 <summary>
8341 Returns a new ConstraintExpression, which will apply the following
8342 constraint to the Message property of the object being tested.
8343 </summary>
8344 </member>
8345 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.InnerException">
8346 <summary>
8347 Returns a new ConstraintExpression, which will apply the following
8348 constraint to the InnerException property of the object being tested.
8349 </summary>
8350 </member>
8351 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.With">
8352 <summary>
8353 With is currently a NOP - reserved for future use.
8354 </summary>
8355 </member>
8356 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Null">
8357 <summary>
8358 Returns a constraint that tests for null
8359 </summary>
8360 </member>
8361 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.True">
8362 <summary>
8363 Returns a constraint that tests for True
8364 </summary>
8365 </member>
8366 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.False">
8367 <summary>
8368 Returns a constraint that tests for False
8369 </summary>
8370 </member>
8371 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Positive">
8372 <summary>
8373 Returns a constraint that tests for a positive value
8374 </summary>
8375 </member>
8376 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Negative">
8377 <summary>
8378 Returns a constraint that tests for a negative value
8379 </summary>
8380 </member>
8381 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.NaN">
8382 <summary>
8383 Returns a constraint that tests for NaN
8384 </summary>
8385 </member>
8386 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Empty">
8387 <summary>
8388 Returns a constraint that tests for empty
8389 </summary>
8390 </member>
8391 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Unique">
8392 <summary>
8393 Returns a constraint that tests whether a collection
8394 contains all unique items.
8395 </summary>
8396 </member>
8397 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable">
8398 <summary>
8399 Returns a constraint that tests whether an object graph is serializable in binary format.
8400 </summary>
8401 </member>
8402 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable">
8403 <summary>
8404 Returns a constraint that tests whether an object graph is serializable in xml format.
8405 </summary>
8406 </member>
8407 <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Ordered">
8408 <summary>
8409 Returns a constraint that tests whether a collection is ordered
8410 </summary>
8411 </member>
8412 <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
8413 <summary>
8414 ContainsConstraint tests a whether a string contains a substring
8415 or a collection contains an object. It postpones the decision of
8416 which test to use until the type of the actual argument is known.
8417 This allows testing whether a string is contained in a collection
8418 or as a substring of another string using the same syntax.
8419 </summary>
8420 </member>
8421 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
8422 <summary>
8423 Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.ContainsConstraint"/> class.
8424 </summary>
8425 <param name="expected">The expected.</param>
8426 </member>
8427 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
8428 <summary>
8429 Test whether the constraint is satisfied by a given value
8430 </summary>
8431 <param name="actual">The value to be tested</param>
8432 <returns>True for success, false for failure</returns>
8433 </member>
8434 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8435 <summary>
8436 Write the constraint description to a MessageWriter
8437 </summary>
8438 <param name="writer">The writer on which the description is displayed</param>
8439 </member>
8440 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IComparer)">
8441 <summary>
8442 Flag the constraint to use the supplied IComparer object.
8443 </summary>
8444 <param name="comparer">The IComparer object to use.</param>
8445 <returns>Self.</returns>
8446 </member>
8447 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
8448 <summary>
8449 Flag the constraint to use the supplied IComparer object.
8450 </summary>
8451 <param name="comparer">The IComparer object to use.</param>
8452 <returns>Self.</returns>
8453 </member>
8454 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Comparison{``0})">
8455 <summary>
8456 Flag the constraint to use the supplied Comparison object.
8457 </summary>
8458 <param name="comparer">The IComparer object to use.</param>
8459 <returns>Self.</returns>
8460 </member>
8461 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IEqualityComparer)">
8462 <summary>
8463 Flag the constraint to use the supplied IEqualityComparer object.
8464 </summary>
8465 <param name="comparer">The IComparer object to use.</param>
8466 <returns>Self.</returns>
8467 </member>
8468 <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
8469 <summary>
8470 Flag the constraint to use the supplied IEqualityComparer object.
8471 </summary>
8472 <param name="comparer">The IComparer object to use.</param>
8473 <returns>Self.</returns>
8474 </member>
8475 <member name="P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase">
8476 <summary>
8477 Flag the constraint to ignore case and return self.
8478 </summary>
8479 </member>
8480 <member name="T:NUnit.Framework.Constraints.DelayedConstraint">
8481 <summary>
8482 Applies a delay to the match so that a match can be evaluated in the future.
8483 </summary>
8484 </member>
8485 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)">
8486 <summary>
8487 Creates a new DelayedConstraint
8488 </summary>
8489 <param name="baseConstraint">The inner constraint two decorate</param>
8490 <param name="delayInMilliseconds">The time interval after which the match is performed</param>
8491 <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
8492 </member>
8493 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)">
8494 <summary>
8495 Creates a new DelayedConstraint
8496 </summary>
8497 <param name="baseConstraint">The inner constraint two decorate</param>
8498 <param name="delayInMilliseconds">The time interval after which the match is performed</param>
8499 <param name="pollingInterval">The time interval used for polling</param>
8500 <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
8501 </member>
8502 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)">
8503 <summary>
8504 Test whether the constraint is satisfied by a given value
8505 </summary>
8506 <param name="actual">The value to be tested</param>
8507 <returns>True for if the base constraint fails, false if it succeeds</returns>
8508 </member>
8509 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
8510 <summary>
8511 Test whether the constraint is satisfied by a delegate
8512 </summary>
8513 <param name="del">The delegate whose value is to be tested</param>
8514 <returns>True for if the base constraint fails, false if it succeeds</returns>
8515 </member>
8516 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)">
8517 <summary>
8518 Test whether the constraint is satisfied by a given reference.
8519 Overridden to wait for the specified delay period before
8520 calling the base constraint with the dereferenced value.
8521 </summary>
8522 <param name="actual">A reference to the value to be tested</param>
8523 <returns>True for success, false for failure</returns>
8524 </member>
8525 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8526 <summary>
8527 Write the constraint description to a MessageWriter
8528 </summary>
8529 <param name="writer">The writer on which the description is displayed</param>
8530 </member>
8531 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
8532 <summary>
8533 Write the actual value for a failing constraint test to a MessageWriter.
8534 </summary>
8535 <param name="writer">The writer on which the actual value is displayed</param>
8536 </member>
8537 <member name="M:NUnit.Framework.Constraints.DelayedConstraint.GetStringRepresentation">
8538 <summary>
8539 Returns the string representation of the constraint.
8540 </summary>
8541 </member>
8542 <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
8543 <summary>
8544 EmptyCollectionConstraint tests whether a collection is empty.
8545 </summary>
8546 </member>
8547 <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
8548 <summary>
8549 Check that the collection is empty
8550 </summary>
8551 <param name="collection"></param>
8552 <returns></returns>
8553 </member>
8554 <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8555 <summary>
8556 Write the constraint description to a MessageWriter
8557 </summary>
8558 <param name="writer"></param>
8559 </member>
8560 <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
8561 <summary>
8562 EmptyConstraint tests a whether a string or collection is empty,
8563 postponing the decision about which test is applied until the
8564 type of the actual argument is known.
8565 </summary>
8566 </member>
8567 <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
8568 <summary>
8569 Test whether the constraint is satisfied by a given value
8570 </summary>
8571 <param name="actual">The value to be tested</param>
8572 <returns>True for success, false for failure</returns>
8573 </member>
8574 <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8575 <summary>
8576 Write the constraint description to a MessageWriter
8577 </summary>
8578 <param name="writer">The writer on which the description is displayed</param>
8579 </member>
8580 <member name="T:NUnit.Framework.Constraints.EmptyDirectoryConstraint">
8581 <summary>
8582 EmptyDirectoryConstraint is used to test that a directory is empty
8583 </summary>
8584 </member>
8585 <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.Matches(System.Object)">
8586 <summary>
8587 Test whether the constraint is satisfied by a given value
8588 </summary>
8589 <param name="actual">The value to be tested</param>
8590 <returns>True for success, false for failure</returns>
8591 </member>
8592 <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8593 <summary>
8594 Write the constraint description to a MessageWriter
8595 </summary>
8596 <param name="writer">The writer on which the description is displayed</param>
8597 </member>
8598 <member name="M:NUnit.Framework.Constraints.EmptyDirectoryConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
8599 <summary>
8600 Write the actual value for a failing constraint test to a
8601 MessageWriter. The default implementation simply writes
8602 the raw value of actual, leaving it to the writer to
8603 perform any formatting.
8604 </summary>
8605 <param name="writer">The writer on which the actual value is displayed</param>
8606 </member>
8607 <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
8608 <summary>
8609 EmptyStringConstraint tests whether a string is empty.
8610 </summary>
8611 </member>
8612 <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
8613 <summary>
8614 Test whether the constraint is satisfied by a given value
8615 </summary>
8616 <param name="actual">The value to be tested</param>
8617 <returns>True for success, false for failure</returns>
8618 </member>
8619 <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8620 <summary>
8621 Write the constraint description to a MessageWriter
8622 </summary>
8623 <param name="writer">The writer on which the description is displayed</param>
8624 </member>
8625 <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
8626 <summary>
8627 EndsWithConstraint can test whether a string ends
8628 with an expected substring.
8629 </summary>
8630 </member>
8631 <member name="T:NUnit.Framework.Constraints.StringConstraint">
8632 <summary>
8633 StringConstraint is the abstract base for constraints
8634 that operate on strings. It supports the IgnoreCase
8635 modifier for string operations.
8636 </summary>
8637 </member>
8638 <member name="F:NUnit.Framework.Constraints.StringConstraint.expected">
8639 <summary>
8640 The expected value
8641 </summary>
8642 </member>
8643 <member name="F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive">
8644 <summary>
8645 Indicates whether tests should be case-insensitive
8646 </summary>
8647 </member>
8648 <member name="M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)">
8649 <summary>
8650 Constructs a StringConstraint given an expected value
8651 </summary>
8652 <param name="expected">The expected value</param>
8653 </member>
8654 <member name="M:NUnit.Framework.Constraints.StringConstraint.Matches(System.Object)">
8655 <summary>
8656 Test whether the constraint is satisfied by a given value
8657 </summary>
8658 <param name="actual">The value to be tested</param>
8659 <returns>True for success, false for failure</returns>
8660 </member>
8661 <member name="M:NUnit.Framework.Constraints.StringConstraint.Matches(System.String)">
8662 <summary>
8663 Test whether the constraint is satisfied by a given string
8664 </summary>
8665 <param name="actual">The string to be tested</param>
8666 <returns>True for success, false for failure</returns>
8667 </member>
8668 <member name="P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase">
8669 <summary>
8670 Modify the constraint to ignore case in matching.
8671 </summary>
8672 </member>
8673 <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
8674 <summary>
8675 Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
8676 </summary>
8677 <param name="expected">The expected string</param>
8678 </member>
8679 <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.String)">
8680 <summary>
8681 Test whether the constraint is matched by the actual value.
8682 This is a template method, which calls the IsMatch method
8683 of the derived class.
8684 </summary>
8685 <param name="actual"></param>
8686 <returns></returns>
8687 </member>
8688 <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8689 <summary>
8690 Write the constraint description to a MessageWriter
8691 </summary>
8692 <param name="writer">The writer on which the description is displayed</param>
8693 </member>
8694 <member name="T:NUnit.Framework.Constraints.EqualConstraint">
8695 <summary>
8696 EqualConstraint is able to compare an actual value with the
8697 expected value provided in its constructor. Two objects are
8698 considered equal if both are null, or if both have the same
8699 value. NUnit has special semantics for some object types.
8700 </summary>
8701 </member>
8702 <member name="F:NUnit.Framework.Constraints.EqualConstraint.clipStrings">
8703 <summary>
8704 If true, strings in error messages will be clipped
8705 </summary>
8706 </member>
8707 <member name="F:NUnit.Framework.Constraints.EqualConstraint.comparer">
8708 <summary>
8709 NUnitEqualityComparer used to test equality.
8710 </summary>
8711 </member>
8712 <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
8713 <summary>
8714 Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
8715 </summary>
8716 <param name="expected">The expected value.</param>
8717 </member>
8718 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)">
8719 <summary>
8720 Flag the constraint to use a tolerance when determining equality.
8721 </summary>
8722 <param name="amount">Tolerance value to be used</param>
8723 <returns>Self.</returns>
8724 </member>
8725 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)">
8726 <summary>
8727 Flag the constraint to use the supplied IComparer object.
8728 </summary>
8729 <param name="comparer">The IComparer object to use.</param>
8730 <returns>Self.</returns>
8731 </member>
8732 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)">
8733 <summary>
8734 Flag the constraint to use the supplied IComparer object.
8735 </summary>
8736 <param name="comparer">The IComparer object to use.</param>
8737 <returns>Self.</returns>
8738 </member>
8739 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
8740 <summary>
8741 Flag the constraint to use the supplied IComparer object.
8742 </summary>
8743 <param name="comparer">The IComparer object to use.</param>
8744 <returns>Self.</returns>
8745 </member>
8746 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})">
8747 <summary>
8748 Flag the constraint to use the supplied Comparison object.
8749 </summary>
8750 <param name="comparer">The IComparer object to use.</param>
8751 <returns>Self.</returns>
8752 </member>
8753 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)">
8754 <summary>
8755 Flag the constraint to use the supplied IEqualityComparer object.
8756 </summary>
8757 <param name="comparer">The IComparer object to use.</param>
8758 <returns>Self.</returns>
8759 </member>
8760 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
8761 <summary>
8762 Flag the constraint to use the supplied IEqualityComparer object.
8763 </summary>
8764 <param name="comparer">The IComparer object to use.</param>
8765 <returns>Self.</returns>
8766 </member>
8767 <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
8768 <summary>
8769 Test whether the constraint is satisfied by a given value
8770 </summary>
8771 <param name="actual">The value to be tested</param>
8772 <returns>True for success, false for failure</returns>
8773 </member>
8774 <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
8775 <summary>
8776 Write a failure message. Overridden to provide custom
8777 failure messages for EqualConstraint.
8778 </summary>
8779 <param name="writer">The MessageWriter to write to</param>
8780 </member>
8781 <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8782 <summary>
8783 Write description of this constraint
8784 </summary>
8785 <param name="writer">The MessageWriter to write to</param>
8786 </member>
8787 <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
8788 <summary>
8789 Display the failure information for two collections that did not match.
8790 </summary>
8791 <param name="writer">The MessageWriter on which to display</param>
8792 <param name="expected">The expected collection.</param>
8793 <param name="actual">The actual collection</param>
8794 <param name="depth">The depth of this failure in a set of nested collections</param>
8795 </member>
8796 <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)">
8797 <summary>
8798 Displays a single line showing the types and sizes of the expected
8799 and actual enumerations, collections or arrays. If both are identical,
8800 the value is only shown once.
8801 </summary>
8802 <param name="writer">The MessageWriter on which to display</param>
8803 <param name="expected">The expected collection or array</param>
8804 <param name="actual">The actual collection or array</param>
8805 <param name="indent">The indentation level for the message line</param>
8806 </member>
8807 <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.FailurePoint,System.Int32)">
8808 <summary>
8809 Displays a single line showing the point in the expected and actual
8810 arrays at which the comparison failed. If the arrays have different
8811 structures or dimensions, both values are shown.
8812 </summary>
8813 <param name="writer">The MessageWriter on which to display</param>
8814 <param name="expected">The expected array</param>
8815 <param name="actual">The actual array</param>
8816 <param name="failurePoint">Index of the failure point in the underlying collections</param>
8817 <param name="indent">The indentation level for the message line</param>
8818 </member>
8819 <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayEnumerableDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)">
8820 <summary>
8821 Display the failure information for two IEnumerables that did not match.
8822 </summary>
8823 <param name="writer">The MessageWriter on which to display</param>
8824 <param name="expected">The expected enumeration.</param>
8825 <param name="actual">The actual enumeration</param>
8826 <param name="depth">The depth of this failure in a set of nested collections</param>
8827 </member>
8828 <member name="P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase">
8829 <summary>
8830 Flag the constraint to ignore case and return self.
8831 </summary>
8832 </member>
8833 <member name="P:NUnit.Framework.Constraints.EqualConstraint.NoClip">
8834 <summary>
8835 Flag the constraint to suppress string clipping
8836 and return self.
8837 </summary>
8838 </member>
8839 <member name="P:NUnit.Framework.Constraints.EqualConstraint.AsCollection">
8840 <summary>
8841 Flag the constraint to compare arrays as collections
8842 and return self.
8843 </summary>
8844 </member>
8845 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ulps">
8846 <summary>
8847 Switches the .Within() modifier to interpret its tolerance as
8848 a distance in representable values (see remarks).
8849 </summary>
8850 <returns>Self.</returns>
8851 <remarks>
8852 Ulp stands for "unit in the last place" and describes the minimum
8853 amount a given value can change. For any integers, an ulp is 1 whole
8854 digit. For floating point values, the accuracy of which is better
8855 for smaller numbers and worse for larger numbers, an ulp depends
8856 on the size of the number. Using ulps for comparison of floating
8857 point results instead of fixed tolerances is safer because it will
8858 automatically compensate for the added inaccuracy of larger numbers.
8859 </remarks>
8860 </member>
8861 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Percent">
8862 <summary>
8863 Switches the .Within() modifier to interpret its tolerance as
8864 a percentage that the actual values is allowed to deviate from
8865 the expected value.
8866 </summary>
8867 <returns>Self</returns>
8868 </member>
8869 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Days">
8870 <summary>
8871 Causes the tolerance to be interpreted as a TimeSpan in days.
8872 </summary>
8873 <returns>Self</returns>
8874 </member>
8875 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Hours">
8876 <summary>
8877 Causes the tolerance to be interpreted as a TimeSpan in hours.
8878 </summary>
8879 <returns>Self</returns>
8880 </member>
8881 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Minutes">
8882 <summary>
8883 Causes the tolerance to be interpreted as a TimeSpan in minutes.
8884 </summary>
8885 <returns>Self</returns>
8886 </member>
8887 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Seconds">
8888 <summary>
8889 Causes the tolerance to be interpreted as a TimeSpan in seconds.
8890 </summary>
8891 <returns>Self</returns>
8892 </member>
8893 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds">
8894 <summary>
8895 Causes the tolerance to be interpreted as a TimeSpan in milliseconds.
8896 </summary>
8897 <returns>Self</returns>
8898 </member>
8899 <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ticks">
8900 <summary>
8901 Causes the tolerance to be interpreted as a TimeSpan in clock ticks.
8902 </summary>
8903 <returns>Self</returns>
8904 </member>
8905 <member name="T:NUnit.Framework.Constraints.EqualityAdapter">
8906 <summary>
8907 EqualityAdapter class handles all equality comparisons
8908 that use an IEqualityComparer, IEqualityComparer&lt;T&gt;
8909 or a ComparisonAdapter.
8910 </summary>
8911 </member>
8912 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.AreEqual(System.Object,System.Object)">
8913 <summary>
8914 Compares two objects, returning true if they are equal
8915 </summary>
8916 </member>
8917 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.CanCompare(System.Object,System.Object)">
8918 <summary>
8919 Returns true if the two objects can be compared by this adapter.
8920 The base adapter cannot handle IEnumerables except for strings.
8921 </summary>
8922 </member>
8923 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)">
8924 <summary>
8925 Returns an EqualityAdapter that wraps an IComparer.
8926 </summary>
8927 </member>
8928 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)">
8929 <summary>
8930 Returns an EqualityAdapter that wraps an IEqualityComparer.
8931 </summary>
8932 </member>
8933 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})">
8934 <summary>
8935 Returns an EqualityAdapter that wraps an IEqualityComparer&lt;T&gt;.
8936 </summary>
8937 </member>
8938 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})">
8939 <summary>
8940 Returns an EqualityAdapter that wraps an IComparer&lt;T&gt;.
8941 </summary>
8942 </member>
8943 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})">
8944 <summary>
8945 Returns an EqualityAdapter that wraps a Comparison&lt;T&gt;.
8946 </summary>
8947 </member>
8948 <member name="T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter">
8949 <summary>
8950 EqualityAdapter that wraps an IComparer.
8951 </summary>
8952 </member>
8953 <member name="M:NUnit.Framework.Constraints.EqualityAdapter.GenericEqualityAdapter`1.CanCompare(System.Object,System.Object)">
8954 <summary>
8955 Returns true if the two objects can be compared by this adapter.
8956 Generic adapter requires objects of the specified type.
8957 </summary>
8958 </member>
8959 <member name="T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter`1">
8960 <summary>
8961 EqualityAdapter that wraps an IComparer.
8962 </summary>
8963 </member>
8964 <member name="T:NUnit.Framework.Constraints.EqualityAdapterList">
8965 <summary>
8966 EqualityAdapterList represents a list of EqualityAdapters
8967 in a common class across platforms.
8968 </summary>
8969 </member>
8970 <member name="T:NUnit.Framework.Constraints.ExactCountConstraint">
8971 <summary>
8972 ExactCountConstraint applies another constraint to each
8973 item in a collection, succeeding only if a specified
8974 number of items succeed.
8975 </summary>
8976 </member>
8977 <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.#ctor(System.Int32,NUnit.Framework.Constraints.Constraint)">
8978 <summary>
8979 Construct an ExactCountConstraint on top of an existing constraint
8980 </summary>
8981 <param name="expectedCount"></param>
8982 <param name="itemConstraint"></param>
8983 </member>
8984 <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.Matches(System.Object)">
8985 <summary>
8986 Apply the item constraint to each item in the collection,
8987 succeeding only if the expected number of items pass.
8988 </summary>
8989 <param name="actual"></param>
8990 <returns></returns>
8991 </member>
8992 <member name="M:NUnit.Framework.Constraints.ExactCountConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
8993 <summary>
8994 Write a description of this constraint to a MessageWriter
8995 </summary>
8996 <param name="writer"></param>
8997 </member>
8998 <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
8999 <summary>
9000 ExactTypeConstraint is used to test that an object
9001 is of the exact type provided in the constructor
9002 </summary>
9003 </member>
9004 <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
9005 <summary>
9006 Construct an ExactTypeConstraint for a given Type
9007 </summary>
9008 <param name="type">The expected Type.</param>
9009 </member>
9010 <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
9011 <summary>
9012 Test that an object is of the exact type specified
9013 </summary>
9014 <param name="actual">The actual value.</param>
9015 <returns>True if the tested object is of the exact type provided, otherwise false.</returns>
9016 </member>
9017 <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9018 <summary>
9019 Write the description of this constraint to a MessageWriter
9020 </summary>
9021 <param name="writer">The MessageWriter to use</param>
9022 </member>
9023 <member name="T:NUnit.Framework.Constraints.ExceptionTypeConstraint">
9024 <summary>
9025 ExceptionTypeConstraint is a special version of ExactTypeConstraint
9026 used to provided detailed info about the exception thrown in
9027 an error message.
9028 </summary>
9029 </member>
9030 <member name="M:NUnit.Framework.Constraints.ExceptionTypeConstraint.#ctor(System.Type)">
9031 <summary>
9032 Constructs an ExceptionTypeConstraint
9033 </summary>
9034 </member>
9035 <member name="M:NUnit.Framework.Constraints.ExceptionTypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
9036 <summary>
9037 Write the actual value for a failing constraint test to a
9038 MessageWriter. Overriden to write additional information
9039 in the case of an Exception.
9040 </summary>
9041 <param name="writer">The MessageWriter to use</param>
9042 </member>
9043 <member name="T:NUnit.Framework.Constraints.FailurePoint">
9044 <summary>
9045 FailurePoint class represents one point of failure
9046 in an equality test.
9047 </summary>
9048 </member>
9049 <member name="F:NUnit.Framework.Constraints.FailurePoint.Position">
9050 <summary>
9051 The location of the failure
9052 </summary>
9053 </member>
9054 <member name="F:NUnit.Framework.Constraints.FailurePoint.ExpectedValue">
9055 <summary>
9056 The expected value
9057 </summary>
9058 </member>
9059 <member name="F:NUnit.Framework.Constraints.FailurePoint.ActualValue">
9060 <summary>
9061 The actual value
9062 </summary>
9063 </member>
9064 <member name="F:NUnit.Framework.Constraints.FailurePoint.ExpectedHasData">
9065 <summary>
9066 Indicates whether the expected value is valid
9067 </summary>
9068 </member>
9069 <member name="F:NUnit.Framework.Constraints.FailurePoint.ActualHasData">
9070 <summary>
9071 Indicates whether the actual value is valid
9072 </summary>
9073 </member>
9074 <member name="T:NUnit.Framework.Constraints.FailurePointList">
9075 <summary>
9076 FailurePointList represents a set of FailurePoints
9077 in a cross-platform way.
9078 </summary>
9079 </member>
9080 <member name="T:NUnit.Framework.Constraints.FalseConstraint">
9081 <summary>
9082 FalseConstraint tests that the actual value is false
9083 </summary>
9084 </member>
9085 <member name="M:NUnit.Framework.Constraints.FalseConstraint.#ctor">
9086 <summary>
9087 Initializes a new instance of the <see cref="T:FalseConstraint"/> class.
9088 </summary>
9089 </member>
9090 <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics">
9091 <summary>Helper routines for working with floating point numbers</summary>
9092 <remarks>
9093 <para>
9094 The floating point comparison code is based on this excellent article:
9095 http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
9096 </para>
9097 <para>
9098 "ULP" means Unit in the Last Place and in the context of this library refers to
9099 the distance between two adjacent floating point numbers. IEEE floating point
9100 numbers can only represent a finite subset of natural numbers, with greater
9101 accuracy for smaller numbers and lower accuracy for very large numbers.
9102 </para>
9103 <para>
9104 If a comparison is allowed "2 ulps" of deviation, that means the values are
9105 allowed to deviate by up to 2 adjacent floating point values, which might be
9106 as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.
9107 </para>
9108 </remarks>
9109 </member>
9110 <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)">
9111 <summary>Compares two floating point values for equality</summary>
9112 <param name="left">First floating point value to be compared</param>
9113 <param name="right">Second floating point value t be compared</param>
9114 <param name="maxUlps">
9115 Maximum number of representable floating point values that are allowed to
9116 be between the left and the right floating point values
9117 </param>
9118 <returns>True if both numbers are equal or close to being equal</returns>
9119 <remarks>
9120 <para>
9121 Floating point values can only represent a finite subset of natural numbers.
9122 For example, the values 2.00000000 and 2.00000024 can be stored in a float,
9123 but nothing inbetween them.
9124 </para>
9125 <para>
9126 This comparison will count how many possible floating point values are between
9127 the left and the right number. If the number of possible values between both
9128 numbers is less than or equal to maxUlps, then the numbers are considered as
9129 being equal.
9130 </para>
9131 <para>
9132 Implementation partially follows the code outlined here:
9133 http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
9134 </para>
9135 </remarks>
9136 </member>
9137 <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)">
9138 <summary>Compares two double precision floating point values for equality</summary>
9139 <param name="left">First double precision floating point value to be compared</param>
9140 <param name="right">Second double precision floating point value t be compared</param>
9141 <param name="maxUlps">
9142 Maximum number of representable double precision floating point values that are
9143 allowed to be between the left and the right double precision floating point values
9144 </param>
9145 <returns>True if both numbers are equal or close to being equal</returns>
9146 <remarks>
9147 <para>
9148 Double precision floating point values can only represent a limited series of
9149 natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004
9150 can be stored in a double, but nothing inbetween them.
9151 </para>
9152 <para>
9153 This comparison will count how many possible double precision floating point
9154 values are between the left and the right number. If the number of possible
9155 values between both numbers is less than or equal to maxUlps, then the numbers
9156 are considered as being equal.
9157 </para>
9158 <para>
9159 Implementation partially follows the code outlined here:
9160 http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
9161 </para>
9162 </remarks>
9163 </member>
9164 <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)">
9165 <summary>
9166 Reinterprets the memory contents of a floating point value as an integer value
9167 </summary>
9168 <param name="value">
9169 Floating point value whose memory contents to reinterpret
9170 </param>
9171 <returns>
9172 The memory contents of the floating point value interpreted as an integer
9173 </returns>
9174 </member>
9175 <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)">
9176 <summary>
9177 Reinterprets the memory contents of a double precision floating point
9178 value as an integer value
9179 </summary>
9180 <param name="value">
9181 Double precision floating point value whose memory contents to reinterpret
9182 </param>
9183 <returns>
9184 The memory contents of the double precision floating point value
9185 interpreted as an integer
9186 </returns>
9187 </member>
9188 <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)">
9189 <summary>
9190 Reinterprets the memory contents of an integer as a floating point value
9191 </summary>
9192 <param name="value">Integer value whose memory contents to reinterpret</param>
9193 <returns>
9194 The memory contents of the integer value interpreted as a floating point value
9195 </returns>
9196 </member>
9197 <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)">
9198 <summary>
9199 Reinterprets the memory contents of an integer value as a double precision
9200 floating point value
9201 </summary>
9202 <param name="value">Integer whose memory contents to reinterpret</param>
9203 <returns>
9204 The memory contents of the integer interpreted as a double precision
9205 floating point value
9206 </returns>
9207 </member>
9208 <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion">
9209 <summary>Union of a floating point variable and an integer</summary>
9210 </member>
9211 <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float">
9212 <summary>The union's value as a floating point variable</summary>
9213 </member>
9214 <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int">
9215 <summary>The union's value as an integer</summary>
9216 </member>
9217 <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt">
9218 <summary>The union's value as an unsigned integer</summary>
9219 </member>
9220 <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion">
9221 <summary>Union of a double precision floating point variable and a long</summary>
9222 </member>
9223 <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double">
9224 <summary>The union's value as a double precision floating point variable</summary>
9225 </member>
9226 <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long">
9227 <summary>The union's value as a long</summary>
9228 </member>
9229 <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong">
9230 <summary>The union's value as an unsigned long</summary>
9231 </member>
9232 <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
9233 <summary>
9234 Tests whether a value is greater than the value supplied to its constructor
9235 </summary>
9236 </member>
9237 <member name="F:NUnit.Framework.Constraints.GreaterThanConstraint.expected">
9238 <summary>
9239 The value against which a comparison is to be made
9240 </summary>
9241 </member>
9242 <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)">
9243 <summary>
9244 Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
9245 </summary>
9246 <param name="expected">The expected value.</param>
9247 </member>
9248 <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9249 <summary>
9250 Write the constraint description to a MessageWriter
9251 </summary>
9252 <param name="writer">The writer on which the description is displayed</param>
9253 </member>
9254 <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.Matches(System.Object)">
9255 <summary>
9256 Test whether the constraint is satisfied by a given value
9257 </summary>
9258 <param name="actual">The value to be tested</param>
9259 <returns>True for success, false for failure</returns>
9260 </member>
9261 <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
9262 <summary>
9263 Tests whether a value is greater than or equal to the value supplied to its constructor
9264 </summary>
9265 </member>
9266 <member name="F:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.expected">
9267 <summary>
9268 The value against which a comparison is to be made
9269 </summary>
9270 </member>
9271 <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)">
9272 <summary>
9273 Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
9274 </summary>
9275 <param name="expected">The expected value.</param>
9276 </member>
9277 <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9278 <summary>
9279 Write the constraint description to a MessageWriter
9280 </summary>
9281 <param name="writer">The writer on which the description is displayed</param>
9282 </member>
9283 <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.Matches(System.Object)">
9284 <summary>
9285 Test whether the constraint is satisfied by a given value
9286 </summary>
9287 <param name="actual">The value to be tested</param>
9288 <returns>True for success, false for failure</returns>
9289 </member>
9290 <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
9291 <summary>
9292 InstanceOfTypeConstraint is used to test that an object
9293 is of the same type provided or derived from it.
9294 </summary>
9295 </member>
9296 <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
9297 <summary>
9298 Construct an InstanceOfTypeConstraint for the type provided
9299 </summary>
9300 <param name="type">The expected Type</param>
9301 </member>
9302 <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
9303 <summary>
9304 Test whether an object is of the specified type or a derived type
9305 </summary>
9306 <param name="actual">The object to be tested</param>
9307 <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>
9308 </member>
9309 <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9310 <summary>
9311 Write a description of this constraint to a MessageWriter
9312 </summary>
9313 <param name="writer">The MessageWriter to use</param>
9314 </member>
9315 <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
9316 <summary>
9317 Tests whether a value is less than the value supplied to its constructor
9318 </summary>
9319 </member>
9320 <member name="F:NUnit.Framework.Constraints.LessThanConstraint.expected">
9321 <summary>
9322 The value against which a comparison is to be made
9323 </summary>
9324 </member>
9325 <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)">
9326 <summary>
9327 Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
9328 </summary>
9329 <param name="expected">The expected value.</param>
9330 </member>
9331 <member name="M:NUnit.Framework.Constraints.LessThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9332 <summary>
9333 Write the constraint description to a MessageWriter
9334 </summary>
9335 <param name="writer">The writer on which the description is displayed</param>
9336 </member>
9337 <member name="M:NUnit.Framework.Constraints.LessThanConstraint.Matches(System.Object)">
9338 <summary>
9339 Test whether the constraint is satisfied by a given value
9340 </summary>
9341 <param name="actual">The value to be tested</param>
9342 <returns>True for success, false for failure</returns>
9343 </member>
9344 <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
9345 <summary>
9346 Tests whether a value is less than or equal to the value supplied to its constructor
9347 </summary>
9348 </member>
9349 <member name="F:NUnit.Framework.Constraints.LessThanOrEqualConstraint.expected">
9350 <summary>
9351 The value against which a comparison is to be made
9352 </summary>
9353 </member>
9354 <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)">
9355 <summary>
9356 Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
9357 </summary>
9358 <param name="expected">The expected value.</param>
9359 </member>
9360 <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9361 <summary>
9362 Write the constraint description to a MessageWriter
9363 </summary>
9364 <param name="writer">The writer on which the description is displayed</param>
9365 </member>
9366 <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.Matches(System.Object)">
9367 <summary>
9368 Test whether the constraint is satisfied by a given value
9369 </summary>
9370 <param name="actual">The value to be tested</param>
9371 <returns>True for success, false for failure</returns>
9372 </member>
9373 <member name="T:NUnit.Framework.Constraints.MsgUtils">
9374 <summary>
9375 Static methods used in creating messages
9376 </summary>
9377 </member>
9378 <member name="F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS">
9379 <summary>
9380 Static string used when strings are clipped
9381 </summary>
9382 </member>
9383 <member name="M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)">
9384 <summary>
9385 Returns the representation of a type as used in NUnitLite.
9386 This is the same as Type.ToString() except for arrays,
9387 which are displayed with their declared sizes.
9388 </summary>
9389 <param name="obj"></param>
9390 <returns></returns>
9391 </member>
9392 <member name="M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)">
9393 <summary>
9394 Converts any control characters in a string
9395 to their escaped representation.
9396 </summary>
9397 <param name="s">The string to be converted</param>
9398 <returns>The converted string</returns>
9399 </member>
9400 <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
9401 <summary>
9402 Return the a string representation for a set of indices into an array
9403 </summary>
9404 <param name="indices">Array of indices for which a string is needed</param>
9405 </member>
9406 <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.IEnumerable,System.Int32)">
9407 <summary>
9408 Get an array of indices representing the point in a enumerable,
9409 collection or array corresponding to a single int index into the
9410 collection.
9411 </summary>
9412 <param name="collection">The collection to which the indices apply</param>
9413 <param name="index">Index in the collection</param>
9414 <returns>Array of indices</returns>
9415 </member>
9416 <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
9417 <summary>
9418 Clip a string to a given length, starting at a particular offset, returning the clipped
9419 string with ellipses representing the removed parts
9420 </summary>
9421 <param name="s">The string to be clipped</param>
9422 <param name="maxStringLength">The maximum permitted length of the result string</param>
9423 <param name="clipStart">The point at which to start clipping</param>
9424 <returns>The clipped string</returns>
9425 </member>
9426 <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
9427 <summary>
9428 Clip the expected and actual strings in a coordinated fashion,
9429 so that they may be displayed together.
9430 </summary>
9431 <param name="expected"></param>
9432 <param name="actual"></param>
9433 <param name="maxDisplayLength"></param>
9434 <param name="mismatch"></param>
9435 </member>
9436 <member name="M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
9437 <summary>
9438 Shows the position two strings start to differ. Comparison
9439 starts at the start index.
9440 </summary>
9441 <param name="expected">The expected string</param>
9442 <param name="actual">The actual string</param>
9443 <param name="istart">The index in the strings at which comparison should start</param>
9444 <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
9445 <returns>-1 if no mismatch found, or the index where mismatch found</returns>
9446 </member>
9447 <member name="T:NUnit.Framework.Constraints.NaNConstraint">
9448 <summary>
9449 NaNConstraint tests that the actual value is a double or float NaN
9450 </summary>
9451 </member>
9452 <member name="M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)">
9453 <summary>
9454 Test that the actual value is an NaN
9455 </summary>
9456 <param name="actual"></param>
9457 <returns></returns>
9458 </member>
9459 <member name="M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9460 <summary>
9461 Write the constraint description to a specified writer
9462 </summary>
9463 <param name="writer"></param>
9464 </member>
9465 <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
9466 <summary>
9467 NoItemConstraint applies another constraint to each
9468 item in a collection, failing if any of them succeeds.
9469 </summary>
9470 </member>
9471 <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
9472 <summary>
9473 Construct a NoItemConstraint on top of an existing constraint
9474 </summary>
9475 <param name="itemConstraint"></param>
9476 </member>
9477 <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
9478 <summary>
9479 Apply the item constraint to each item in the collection,
9480 failing if any item fails.
9481 </summary>
9482 <param name="actual"></param>
9483 <returns></returns>
9484 </member>
9485 <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9486 <summary>
9487 Write a description of this constraint to a MessageWriter
9488 </summary>
9489 <param name="writer"></param>
9490 </member>
9491 <member name="T:NUnit.Framework.Constraints.NotConstraint">
9492 <summary>
9493 NotConstraint negates the effect of some other constraint
9494 </summary>
9495 </member>
9496 <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
9497 <summary>
9498 Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.NotConstraint"/> class.
9499 </summary>
9500 <param name="baseConstraint">The base constraint to be negated.</param>
9501 </member>
9502 <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
9503 <summary>
9504 Test whether the constraint is satisfied by a given value
9505 </summary>
9506 <param name="actual">The value to be tested</param>
9507 <returns>True for if the base constraint fails, false if it succeeds</returns>
9508 </member>
9509 <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9510 <summary>
9511 Write the constraint description to a MessageWriter
9512 </summary>
9513 <param name="writer">The writer on which the description is displayed</param>
9514 </member>
9515 <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
9516 <summary>
9517 Write the actual value for a failing constraint test to a MessageWriter.
9518 </summary>
9519 <param name="writer">The writer on which the actual value is displayed</param>
9520 </member>
9521 <member name="T:NUnit.Framework.Constraints.NullConstraint">
9522 <summary>
9523 NullConstraint tests that the actual value is null
9524 </summary>
9525 </member>
9526 <member name="M:NUnit.Framework.Constraints.NullConstraint.#ctor">
9527 <summary>
9528 Initializes a new instance of the <see cref="T:NullConstraint"/> class.
9529 </summary>
9530 </member>
9531 <member name="T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint">
9532 <summary>
9533 NullEmptyStringConstraint tests whether a string is either null or empty.
9534 </summary>
9535 </member>
9536 <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor">
9537 <summary>
9538 Constructs a new NullOrEmptyStringConstraint
9539 </summary>
9540 </member>
9541 <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)">
9542 <summary>
9543 Test whether the constraint is satisfied by a given value
9544 </summary>
9545 <param name="actual">The value to be tested</param>
9546 <returns>True for success, false for failure</returns>
9547 </member>
9548 <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9549 <summary>
9550 Write the constraint description to a MessageWriter
9551 </summary>
9552 <param name="writer">The writer on which the description is displayed</param>
9553 </member>
9554 <member name="T:NUnit.Framework.Constraints.Numerics">
9555 <summary>
9556 The Numerics class contains common operations on numeric values.
9557 </summary>
9558 </member>
9559 <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
9560 <summary>
9561 Checks the type of the object, returning true if
9562 the object is a numeric type.
9563 </summary>
9564 <param name="obj">The object to check</param>
9565 <returns>true if the object is a numeric type</returns>
9566 </member>
9567 <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
9568 <summary>
9569 Checks the type of the object, returning true if
9570 the object is a floating point numeric type.
9571 </summary>
9572 <param name="obj">The object to check</param>
9573 <returns>true if the object is a floating point numeric type</returns>
9574 </member>
9575 <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
9576 <summary>
9577 Checks the type of the object, returning true if
9578 the object is a fixed point numeric type.
9579 </summary>
9580 <param name="obj">The object to check</param>
9581 <returns>true if the object is a fixed point numeric type</returns>
9582 </member>
9583 <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
9584 <summary>
9585 Test two numeric values for equality, performing the usual numeric
9586 conversions and using a provided or default tolerance. If the tolerance
9587 provided is Empty, this method may set it to a default tolerance.
9588 </summary>
9589 <param name="expected">The expected value</param>
9590 <param name="actual">The actual value</param>
9591 <param name="tolerance">A reference to the tolerance in effect</param>
9592 <returns>True if the values are equal</returns>
9593 </member>
9594 <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)">
9595 <summary>
9596 Compare two numeric values, performing the usual numeric conversions.
9597 </summary>
9598 <param name="expected">The expected value</param>
9599 <param name="actual">The actual value</param>
9600 <returns>The relationship of the values to each other</returns>
9601 </member>
9602 <member name="T:NUnit.Framework.Constraints.NUnitComparer">
9603 <summary>
9604 NUnitComparer encapsulates NUnit's default behavior
9605 in comparing two objects.
9606 </summary>
9607 </member>
9608 <member name="M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)">
9609 <summary>
9610 Compares two objects
9611 </summary>
9612 <param name="x"></param>
9613 <param name="y"></param>
9614 <returns></returns>
9615 </member>
9616 <member name="P:NUnit.Framework.Constraints.NUnitComparer.Default">
9617 <summary>
9618 Returns the default NUnitComparer.
9619 </summary>
9620 </member>
9621 <member name="T:NUnit.Framework.Constraints.NUnitComparer`1">
9622 <summary>
9623 Generic version of NUnitComparer
9624 </summary>
9625 <typeparam name="T"></typeparam>
9626 </member>
9627 <member name="M:NUnit.Framework.Constraints.NUnitComparer`1.Compare(`0,`0)">
9628 <summary>
9629 Compare two objects of the same type
9630 </summary>
9631 </member>
9632 <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer">
9633 <summary>
9634 NUnitEqualityComparer encapsulates NUnit's handling of
9635 equality tests between objects.
9636 </summary>
9637 </member>
9638 <member name="T:NUnit.Framework.INUnitEqualityComparer">
9639 <summary>
9640
9641 </summary>
9642 </member>
9643 <member name="M:NUnit.Framework.INUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
9644 <summary>
9645 Compares two objects for equality within a tolerance
9646 </summary>
9647 <param name="x">The first object to compare</param>
9648 <param name="y">The second object to compare</param>
9649 <param name="tolerance">The tolerance to use in the comparison</param>
9650 <returns></returns>
9651 </member>
9652 <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive">
9653 <summary>
9654 If true, all string comparisons will ignore case
9655 </summary>
9656 </member>
9657 <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection">
9658 <summary>
9659 If true, arrays will be treated as collections, allowing
9660 those of different dimensions to be compared
9661 </summary>
9662 </member>
9663 <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparers">
9664 <summary>
9665 Comparison objects used in comparisons for some constraints.
9666 </summary>
9667 </member>
9668 <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.failurePoints">
9669 <summary>
9670 List of points at which a failure occured.
9671 </summary>
9672 </member>
9673 <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.recursionDetector">
9674 <summary>
9675 RecursionDetector used to check for recursion when
9676 evaluating self-referencing enumerables.
9677 </summary>
9678 </member>
9679 <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
9680 <summary>
9681 Compares two objects for equality within a tolerance, setting
9682 the tolerance to the actual tolerance used if an empty
9683 tolerance is supplied.
9684 </summary>
9685 </member>
9686 <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array,NUnit.Framework.Constraints.Tolerance@)">
9687 <summary>
9688 Helper method to compare two arrays
9689 </summary>
9690 </member>
9691 <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
9692 <summary>
9693 Method to compare two DirectoryInfo objects
9694 </summary>
9695 <param name="expected">first directory to compare</param>
9696 <param name="actual">second directory to compare</param>
9697 <returns>true if equivalent, false if not</returns>
9698 </member>
9699 <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default">
9700 <summary>
9701 Returns the default NUnitEqualityComparer
9702 </summary>
9703 </member>
9704 <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase">
9705 <summary>
9706 Gets and sets a flag indicating whether case should
9707 be ignored in determining equality.
9708 </summary>
9709 </member>
9710 <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection">
9711 <summary>
9712 Gets and sets a flag indicating that arrays should be
9713 compared as collections, without regard to their shape.
9714 </summary>
9715 </member>
9716 <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparers">
9717 <summary>
9718 Gets the list of external comparers to be used to
9719 test for equality. They are applied to members of
9720 collections, in place of NUnit's own logic.
9721 </summary>
9722 </member>
9723 <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints">
9724 <summary>
9725 Gets the list of failure points for the last Match performed.
9726 The list consists of objects to be interpreted by the caller.
9727 This generally means that the caller may only make use of
9728 objects it has placed on the list at a particular depthy.
9729 </summary>
9730 </member>
9731 <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer.RecursionDetector">
9732 <summary>
9733 RecursionDetector detects when a comparison
9734 between two enumerables has reached a point
9735 where the same objects that were previously
9736 compared are again being compared. This allows
9737 the caller to stop the comparison if desired.
9738 </summary>
9739 </member>
9740 <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.RecursionDetector.CheckRecursion(System.Collections.IEnumerable,System.Collections.IEnumerable)">
9741 <summary>
9742 Check whether two objects have previously
9743 been compared, returning true if they have.
9744 The two objects are remembered, so that a
9745 second call will always return true.
9746 </summary>
9747 </member>
9748 <member name="T:NUnit.Framework.Constraints.OrConstraint">
9749 <summary>
9750 OrConstraint succeeds if either member succeeds
9751 </summary>
9752 </member>
9753 <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
9754 <summary>
9755 Create an OrConstraint from two other constraints
9756 </summary>
9757 <param name="left">The first constraint</param>
9758 <param name="right">The second constraint</param>
9759 </member>
9760 <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
9761 <summary>
9762 Apply the member constraints to an actual value, succeeding
9763 succeeding as soon as one of them succeeds.
9764 </summary>
9765 <param name="actual">The actual value</param>
9766 <returns>True if either constraint succeeded</returns>
9767 </member>
9768 <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9769 <summary>
9770 Write a description for this contraint to a MessageWriter
9771 </summary>
9772 <param name="writer">The MessageWriter to receive the description</param>
9773 </member>
9774 <member name="T:NUnit.Framework.Constraints.PathConstraint">
9775 <summary>
9776 PathConstraint serves as the abstract base of constraints
9777 that operate on paths and provides several helper methods.
9778 </summary>
9779 </member>
9780 <member name="F:NUnit.Framework.Constraints.PathConstraint.expectedPath">
9781 <summary>
9782 The expected path used in the constraint
9783 </summary>
9784 </member>
9785 <member name="F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive">
9786 <summary>
9787 Flag indicating whether a caseInsensitive comparison should be made
9788 </summary>
9789 </member>
9790 <member name="M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)">
9791 <summary>
9792 Construct a PathConstraint for a give expected path
9793 </summary>
9794 <param name="expectedPath">The expected path</param>
9795 </member>
9796 <member name="M:NUnit.Framework.Constraints.PathConstraint.Matches(System.Object)">
9797 <summary>
9798 Test whether the constraint is satisfied by a given value
9799 </summary>
9800 <param name="actual">The value to be tested</param>
9801 <returns>True for success, false for failure</returns>
9802 </member>
9803 <member name="M:NUnit.Framework.Constraints.PathConstraint.IsMatch(System.String,System.String)">
9804 <summary>
9805 Returns true if the expected path and actual path match
9806 </summary>
9807 </member>
9808 <member name="M:NUnit.Framework.Constraints.PathConstraint.GetStringRepresentation">
9809 <summary>
9810 Returns the string representation of this constraint
9811 </summary>
9812 </member>
9813 <member name="M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)">
9814 <summary>
9815 Transform the provided path to its canonical form so that it
9816 may be more easily be compared with other paths.
9817 </summary>
9818 <param name="path">The original path</param>
9819 <returns>The path in canonical form</returns>
9820 </member>
9821 <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSubPath(System.String,System.String,System.Boolean)">
9822 <summary>
9823 Test whether one path in canonical form is under another.
9824 </summary>
9825 <param name="path1">The first path - supposed to be the parent path</param>
9826 <param name="path2">The second path - supposed to be the child path</param>
9827 <param name="ignoreCase">Indicates whether case should be ignored</param>
9828 <returns></returns>
9829 </member>
9830 <member name="P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase">
9831 <summary>
9832 Modifies the current instance to be case-insensitve
9833 and returns it.
9834 </summary>
9835 </member>
9836 <member name="P:NUnit.Framework.Constraints.PathConstraint.RespectCase">
9837 <summary>
9838 Modifies the current instance to be case-sensitve
9839 and returns it.
9840 </summary>
9841 </member>
9842 <member name="T:NUnit.Framework.Constraints.PredicateConstraint`1">
9843 <summary>
9844 Predicate constraint wraps a Predicate in a constraint,
9845 returning success if the predicate is true.
9846 </summary>
9847 </member>
9848 <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
9849 <summary>
9850 Construct a PredicateConstraint from a predicate
9851 </summary>
9852 </member>
9853 <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)">
9854 <summary>
9855 Determines whether the predicate succeeds when applied
9856 to the actual value.
9857 </summary>
9858 </member>
9859 <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9860 <summary>
9861 Writes the description to a MessageWriter
9862 </summary>
9863 </member>
9864 <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
9865 <summary>
9866 PropertyConstraint extracts a named property and uses
9867 its value as the actual value for a chained constraint.
9868 </summary>
9869 </member>
9870 <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
9871 <summary>
9872 Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
9873 </summary>
9874 <param name="name">The name.</param>
9875 <param name="baseConstraint">The constraint to apply to the property.</param>
9876 </member>
9877 <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
9878 <summary>
9879 Test whether the constraint is satisfied by a given value
9880 </summary>
9881 <param name="actual">The value to be tested</param>
9882 <returns>True for success, false for failure</returns>
9883 </member>
9884 <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9885 <summary>
9886 Write the constraint description to a MessageWriter
9887 </summary>
9888 <param name="writer">The writer on which the description is displayed</param>
9889 </member>
9890 <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
9891 <summary>
9892 Write the actual value for a failing constraint test to a
9893 MessageWriter. The default implementation simply writes
9894 the raw value of actual, leaving it to the writer to
9895 perform any formatting.
9896 </summary>
9897 <param name="writer">The writer on which the actual value is displayed</param>
9898 </member>
9899 <member name="M:NUnit.Framework.Constraints.PropertyConstraint.GetStringRepresentation">
9900 <summary>
9901 Returns the string representation of the constraint.
9902 </summary>
9903 <returns></returns>
9904 </member>
9905 <member name="T:NUnit.Framework.Constraints.PropertyExistsConstraint">
9906 <summary>
9907 PropertyExistsConstraint tests that a named property
9908 exists on the object provided through Match.
9909
9910 Originally, PropertyConstraint provided this feature
9911 in addition to making optional tests on the vaue
9912 of the property. The two constraints are now separate.
9913 </summary>
9914 </member>
9915 <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)">
9916 <summary>
9917 Initializes a new instance of the <see cref="T:PropertyExistConstraint"/> class.
9918 </summary>
9919 <param name="name">The name of the property.</param>
9920 </member>
9921 <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)">
9922 <summary>
9923 Test whether the property exists for a given object
9924 </summary>
9925 <param name="actual">The object to be tested</param>
9926 <returns>True for success, false for failure</returns>
9927 </member>
9928 <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9929 <summary>
9930 Write the constraint description to a MessageWriter
9931 </summary>
9932 <param name="writer">The writer on which the description is displayed</param>
9933 </member>
9934 <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
9935 <summary>
9936 Write the actual value for a failing constraint test to a
9937 MessageWriter.
9938 </summary>
9939 <param name="writer">The writer on which the actual value is displayed</param>
9940 </member>
9941 <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.GetStringRepresentation">
9942 <summary>
9943 Returns the string representation of the constraint.
9944 </summary>
9945 <returns></returns>
9946 </member>
9947 <member name="T:NUnit.Framework.Constraints.RangeConstraint`1">
9948 <summary>
9949 RangeConstraint tests whether two values are within a
9950 specified range.
9951 </summary>
9952 </member>
9953 <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.#ctor(`0,`0)">
9954 <summary>
9955 Initializes a new instance of the <see cref="T:RangeConstraint"/> class.
9956 </summary>
9957 <param name="from">From.</param>
9958 <param name="to">To.</param>
9959 </member>
9960 <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.Matches(System.Object)">
9961 <summary>
9962 Test whether the constraint is satisfied by a given value
9963 </summary>
9964 <param name="actual">The value to be tested</param>
9965 <returns>True for success, false for failure</returns>
9966 </member>
9967 <member name="M:NUnit.Framework.Constraints.RangeConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9968 <summary>
9969 Write the constraint description to a MessageWriter
9970 </summary>
9971 <param name="writer">The writer on which the description is displayed</param>
9972 </member>
9973 <member name="T:NUnit.Framework.Constraints.RegexConstraint">
9974 <summary>
9975 RegexConstraint can test whether a string matches
9976 the pattern provided.
9977 </summary>
9978 </member>
9979 <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
9980 <summary>
9981 Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
9982 </summary>
9983 <param name="pattern">The pattern.</param>
9984 </member>
9985 <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.String)">
9986 <summary>
9987 Test whether the constraint is satisfied by a given value
9988 </summary>
9989 <param name="actual">The value to be tested</param>
9990 <returns>True for success, false for failure</returns>
9991 </member>
9992 <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
9993 <summary>
9994 Write the constraint description to a MessageWriter
9995 </summary>
9996 <param name="writer">The writer on which the description is displayed</param>
9997 </member>
9998 <member name="T:NUnit.Framework.Constraints.ResolvableConstraintExpression">
9999 <summary>
10000 ResolvableConstraintExpression is used to represent a compound
10001 constraint being constructed at a point where the last operator
10002 may either terminate the expression or may have additional
10003 qualifying constraints added to it.
10004
10005 It is used, for example, for a Property element or for
10006 an Exception element, either of which may be optionally
10007 followed by constraints that apply to the property or
10008 exception.
10009 </summary>
10010 </member>
10011 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor">
10012 <summary>
10013 Create a new instance of ResolvableConstraintExpression
10014 </summary>
10015 </member>
10016 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
10017 <summary>
10018 Create a new instance of ResolvableConstraintExpression,
10019 passing in a pre-populated ConstraintBuilder.
10020 </summary>
10021 </member>
10022 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve">
10023 <summary>
10024 Resolve the current expression to a Constraint
10025 </summary>
10026 </member>
10027 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
10028 <summary>
10029 This operator creates a constraint that is satisfied only if both
10030 argument constraints are satisfied.
10031 </summary>
10032 </member>
10033 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
10034 <summary>
10035 This operator creates a constraint that is satisfied only if both
10036 argument constraints are satisfied.
10037 </summary>
10038 </member>
10039 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
10040 <summary>
10041 This operator creates a constraint that is satisfied only if both
10042 argument constraints are satisfied.
10043 </summary>
10044 </member>
10045 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
10046 <summary>
10047 This operator creates a constraint that is satisfied if either
10048 of the argument constraints is satisfied.
10049 </summary>
10050 </member>
10051 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
10052 <summary>
10053 This operator creates a constraint that is satisfied if either
10054 of the argument constraints is satisfied.
10055 </summary>
10056 </member>
10057 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
10058 <summary>
10059 This operator creates a constraint that is satisfied if either
10060 of the argument constraints is satisfied.
10061 </summary>
10062 </member>
10063 <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_LogicalNot(NUnit.Framework.Constraints.ResolvableConstraintExpression)">
10064 <summary>
10065 This operator creates a constraint that is satisfied if the
10066 argument constraint is not satisfied.
10067 </summary>
10068 </member>
10069 <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
10070 <summary>
10071 Appends an And Operator to the expression
10072 </summary>
10073 </member>
10074 <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or">
10075 <summary>
10076 Appends an Or operator to the expression.
10077 </summary>
10078 </member>
10079 <member name="T:NUnit.Framework.Constraints.ReusableConstraint">
10080 <summary>
10081 ReusableConstraint wraps a constraint expression after
10082 resolving it so that it can be reused consistently.
10083 </summary>
10084 </member>
10085 <member name="M:NUnit.Framework.Constraints.ReusableConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
10086 <summary>
10087 Construct a ReusableConstraint from a constraint expression
10088 </summary>
10089 <param name="c">The expression to be resolved and reused</param>
10090 </member>
10091 <member name="M:NUnit.Framework.Constraints.ReusableConstraint.op_Implicit(NUnit.Framework.Constraints.Constraint)~NUnit.Framework.Constraints.ReusableConstraint">
10092 <summary>
10093 Converts a constraint to a ReusableConstraint
10094 </summary>
10095 <param name="c">The constraint to be converted</param>
10096 <returns>A ReusableConstraint</returns>
10097 </member>
10098 <member name="M:NUnit.Framework.Constraints.ReusableConstraint.ToString">
10099 <summary>
10100 Returns the string representation of the constraint.
10101 </summary>
10102 <returns>A string representing the constraint</returns>
10103 </member>
10104 <member name="M:NUnit.Framework.Constraints.ReusableConstraint.Resolve">
10105 <summary>
10106 Resolves the ReusableConstraint by returning the constraint
10107 that it originally wrapped.
10108 </summary>
10109 <returns>A resolved constraint</returns>
10110 </member>
10111 <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
10112 <summary>
10113 SameAsConstraint tests whether an object is identical to
10114 the object passed to its constructor
10115 </summary>
10116 </member>
10117 <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
10118 <summary>
10119 Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
10120 </summary>
10121 <param name="expected">The expected object.</param>
10122 </member>
10123 <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
10124 <summary>
10125 Test whether the constraint is satisfied by a given value
10126 </summary>
10127 <param name="actual">The value to be tested</param>
10128 <returns>True for success, false for failure</returns>
10129 </member>
10130 <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10131 <summary>
10132 Write the constraint description to a MessageWriter
10133 </summary>
10134 <param name="writer">The writer on which the description is displayed</param>
10135 </member>
10136 <member name="T:NUnit.Framework.Constraints.SamePathConstraint">
10137 <summary>
10138 Summary description for SamePathConstraint.
10139 </summary>
10140 </member>
10141 <member name="M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)">
10142 <summary>
10143 Initializes a new instance of the <see cref="T:SamePathConstraint"/> class.
10144 </summary>
10145 <param name="expected">The expected path</param>
10146 </member>
10147 <member name="M:NUnit.Framework.Constraints.SamePathConstraint.IsMatch(System.String,System.String)">
10148 <summary>
10149 Test whether the constraint is satisfied by a given value
10150 </summary>
10151 <param name="expectedPath">The expected path</param>
10152 <param name="actualPath">The actual path</param>
10153 <returns>True for success, false for failure</returns>
10154 </member>
10155 <member name="M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10156 <summary>
10157 Write the constraint description to a MessageWriter
10158 </summary>
10159 <param name="writer">The writer on which the description is displayed</param>
10160 </member>
10161 <member name="T:NUnit.Framework.Constraints.SamePathOrUnderConstraint">
10162 <summary>
10163 SamePathOrUnderConstraint tests that one path is under another
10164 </summary>
10165 </member>
10166 <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)">
10167 <summary>
10168 Initializes a new instance of the <see cref="T:SamePathOrUnderConstraint"/> class.
10169 </summary>
10170 <param name="expected">The expected path</param>
10171 </member>
10172 <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.IsMatch(System.String,System.String)">
10173 <summary>
10174 Test whether the constraint is satisfied by a given value
10175 </summary>
10176 <param name="expectedPath">The expected path</param>
10177 <param name="actualPath">The actual path</param>
10178 <returns>True for success, false for failure</returns>
10179 </member>
10180 <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10181 <summary>
10182 Write the constraint description to a MessageWriter
10183 </summary>
10184 <param name="writer">The writer on which the description is displayed</param>
10185 </member>
10186 <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
10187 <summary>
10188 SomeItemsConstraint applies another constraint to each
10189 item in a collection, succeeding if any of them succeeds.
10190 </summary>
10191 </member>
10192 <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
10193 <summary>
10194 Construct a SomeItemsConstraint on top of an existing constraint
10195 </summary>
10196 <param name="itemConstraint"></param>
10197 </member>
10198 <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
10199 <summary>
10200 Apply the item constraint to each item in the collection,
10201 succeeding if any item succeeds.
10202 </summary>
10203 <param name="actual"></param>
10204 <returns></returns>
10205 </member>
10206 <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10207 <summary>
10208 Write a description of this constraint to a MessageWriter
10209 </summary>
10210 <param name="writer"></param>
10211 </member>
10212 <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
10213 <summary>
10214 StartsWithConstraint can test whether a string starts
10215 with an expected substring.
10216 </summary>
10217 </member>
10218 <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
10219 <summary>
10220 Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
10221 </summary>
10222 <param name="expected">The expected string</param>
10223 </member>
10224 <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.String)">
10225 <summary>
10226 Test whether the constraint is matched by the actual value.
10227 This is a template method, which calls the IsMatch method
10228 of the derived class.
10229 </summary>
10230 <param name="actual"></param>
10231 <returns></returns>
10232 </member>
10233 <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10234 <summary>
10235 Write the constraint description to a MessageWriter
10236 </summary>
10237 <param name="writer">The writer on which the description is displayed</param>
10238 </member>
10239 <member name="T:NUnit.Framework.Constraints.SubPathConstraint">
10240 <summary>
10241 SubPathConstraint tests that the actual path is under the expected path
10242 </summary>
10243 </member>
10244 <member name="M:NUnit.Framework.Constraints.SubPathConstraint.#ctor(System.String)">
10245 <summary>
10246 Initializes a new instance of the <see cref="T:SubPathConstraint"/> class.
10247 </summary>
10248 <param name="expected">The expected path</param>
10249 </member>
10250 <member name="M:NUnit.Framework.Constraints.SubPathConstraint.IsMatch(System.String,System.String)">
10251 <summary>
10252 Test whether the constraint is satisfied by a given value
10253 </summary>
10254 <param name="expectedPath">The expected path</param>
10255 <param name="actualPath">The actual path</param>
10256 <returns>True for success, false for failure</returns>
10257 </member>
10258 <member name="M:NUnit.Framework.Constraints.SubPathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10259 <summary>
10260 Write the constraint description to a MessageWriter
10261 </summary>
10262 <param name="writer">The writer on which the description is displayed</param>
10263 </member>
10264 <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
10265 <summary>
10266 SubstringConstraint can test whether a string contains
10267 the expected substring.
10268 </summary>
10269 </member>
10270 <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
10271 <summary>
10272 Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
10273 </summary>
10274 <param name="expected">The expected.</param>
10275 </member>
10276 <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.String)">
10277 <summary>
10278 Test whether the constraint is satisfied by a given value
10279 </summary>
10280 <param name="actual">The value to be tested</param>
10281 <returns>True for success, false for failure</returns>
10282 </member>
10283 <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10284 <summary>
10285 Write the constraint description to a MessageWriter
10286 </summary>
10287 <param name="writer">The writer on which the description is displayed</param>
10288 </member>
10289 <member name="T:NUnit.Framework.Constraints.ThrowsConstraint">
10290 <summary>
10291 ThrowsConstraint is used to test the exception thrown by
10292 a delegate by applying a constraint to it.
10293 </summary>
10294 </member>
10295 <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
10296 <summary>
10297 Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.ThrowsConstraint"/> class,
10298 using a constraint to be applied to the exception.
10299 </summary>
10300 <param name="baseConstraint">A constraint to apply to the caught exception.</param>
10301 </member>
10302 <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)">
10303 <summary>
10304 Executes the code of the delegate and captures any exception.
10305 If a non-null base constraint was provided, it applies that
10306 constraint to the exception.
10307 </summary>
10308 <param name="actual">A delegate representing the code to be tested</param>
10309 <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>
10310 </member>
10311 <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
10312 <summary>
10313 Converts an ActualValueDelegate to a TestDelegate
10314 before calling the primary overload.
10315 </summary>
10316 </member>
10317 <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10318 <summary>
10319 Write the constraint description to a MessageWriter
10320 </summary>
10321 <param name="writer">The writer on which the description is displayed</param>
10322 </member>
10323 <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
10324 <summary>
10325 Write the actual value for a failing constraint test to a
10326 MessageWriter. The default implementation simply writes
10327 the raw value of actual, leaving it to the writer to
10328 perform any formatting.
10329 </summary>
10330 <param name="writer">The writer on which the actual value is displayed</param>
10331 </member>
10332 <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.GetStringRepresentation">
10333 <summary>
10334 Returns the string representation of this constraint
10335 </summary>
10336 </member>
10337 <member name="P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException">
10338 <summary>
10339 Get the actual exception thrown - used by Assert.Throws.
10340 </summary>
10341 </member>
10342 <member name="T:NUnit.Framework.Constraints.ThrowsNothingConstraint">
10343 <summary>
10344 ThrowsNothingConstraint tests that a delegate does not
10345 throw an exception.
10346 </summary>
10347 </member>
10348 <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)">
10349 <summary>
10350 Test whether the constraint is satisfied by a given value
10351 </summary>
10352 <param name="actual">The value to be tested</param>
10353 <returns>True if no exception is thrown, otherwise false</returns>
10354 </member>
10355 <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10356 <summary>
10357 Write the constraint description to a MessageWriter
10358 </summary>
10359 <param name="writer">The writer on which the description is displayed</param>
10360 </member>
10361 <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
10362 <summary>
10363 Write the actual value for a failing constraint test to a
10364 MessageWriter. Overridden in ThrowsNothingConstraint to write
10365 information about the exception that was actually caught.
10366 </summary>
10367 <param name="writer">The writer on which the actual value is displayed</param>
10368 </member>
10369 <member name="T:NUnit.Framework.Constraints.Tolerance">
10370 <summary>
10371 The Tolerance class generalizes the notion of a tolerance
10372 within which an equality test succeeds. Normally, it is
10373 used with numeric types, but it can be used with any
10374 type that supports taking a difference between two
10375 objects and comparing that difference to a value.
10376 </summary>
10377 </member>
10378 <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)">
10379 <summary>
10380 Constructs a linear tolerance of a specdified amount
10381 </summary>
10382 </member>
10383 <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)">
10384 <summary>
10385 Constructs a tolerance given an amount and ToleranceMode
10386 </summary>
10387 </member>
10388 <member name="M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric">
10389 <summary>
10390 Tests that the current Tolerance is linear with a
10391 numeric value, throwing an exception if it is not.
10392 </summary>
10393 </member>
10394 <member name="P:NUnit.Framework.Constraints.Tolerance.Empty">
10395 <summary>
10396 Returns an empty Tolerance object, equivalent to
10397 specifying no tolerance. In most cases, it results
10398 in an exact match but for floats and doubles a
10399 default tolerance may be used.
10400 </summary>
10401 </member>
10402 <member name="P:NUnit.Framework.Constraints.Tolerance.Zero">
10403 <summary>
10404 Returns a zero Tolerance object, equivalent to
10405 specifying an exact match.
10406 </summary>
10407 </member>
10408 <member name="P:NUnit.Framework.Constraints.Tolerance.Mode">
10409 <summary>
10410 Gets the ToleranceMode for the current Tolerance
10411 </summary>
10412 </member>
10413 <member name="P:NUnit.Framework.Constraints.Tolerance.Value">
10414 <summary>
10415 Gets the value of the current Tolerance instance.
10416 </summary>
10417 </member>
10418 <member name="P:NUnit.Framework.Constraints.Tolerance.Percent">
10419 <summary>
10420 Returns a new tolerance, using the current amount as a percentage.
10421 </summary>
10422 </member>
10423 <member name="P:NUnit.Framework.Constraints.Tolerance.Ulps">
10424 <summary>
10425 Returns a new tolerance, using the current amount in Ulps.
10426 </summary>
10427 </member>
10428 <member name="P:NUnit.Framework.Constraints.Tolerance.Days">
10429 <summary>
10430 Returns a new tolerance with a TimeSpan as the amount, using
10431 the current amount as a number of days.
10432 </summary>
10433 </member>
10434 <member name="P:NUnit.Framework.Constraints.Tolerance.Hours">
10435 <summary>
10436 Returns a new tolerance with a TimeSpan as the amount, using
10437 the current amount as a number of hours.
10438 </summary>
10439 </member>
10440 <member name="P:NUnit.Framework.Constraints.Tolerance.Minutes">
10441 <summary>
10442 Returns a new tolerance with a TimeSpan as the amount, using
10443 the current amount as a number of minutes.
10444 </summary>
10445 </member>
10446 <member name="P:NUnit.Framework.Constraints.Tolerance.Seconds">
10447 <summary>
10448 Returns a new tolerance with a TimeSpan as the amount, using
10449 the current amount as a number of seconds.
10450 </summary>
10451 </member>
10452 <member name="P:NUnit.Framework.Constraints.Tolerance.Milliseconds">
10453 <summary>
10454 Returns a new tolerance with a TimeSpan as the amount, using
10455 the current amount as a number of milliseconds.
10456 </summary>
10457 </member>
10458 <member name="P:NUnit.Framework.Constraints.Tolerance.Ticks">
10459 <summary>
10460 Returns a new tolerance with a TimeSpan as the amount, using
10461 the current amount as a number of clock ticks.
10462 </summary>
10463 </member>
10464 <member name="P:NUnit.Framework.Constraints.Tolerance.IsEmpty">
10465 <summary>
10466 Returns true if the current tolerance is empty.
10467 </summary>
10468 </member>
10469 <member name="T:NUnit.Framework.Constraints.ToleranceMode">
10470 <summary>
10471 Modes in which the tolerance value for a comparison can be interpreted.
10472 </summary>
10473 </member>
10474 <member name="F:NUnit.Framework.Constraints.ToleranceMode.None">
10475 <summary>
10476 The tolerance was created with a value, without specifying
10477 how the value would be used. This is used to prevent setting
10478 the mode more than once and is generally changed to Linear
10479 upon execution of the test.
10480 </summary>
10481 </member>
10482 <member name="F:NUnit.Framework.Constraints.ToleranceMode.Linear">
10483 <summary>
10484 The tolerance is used as a numeric range within which
10485 two compared values are considered to be equal.
10486 </summary>
10487 </member>
10488 <member name="F:NUnit.Framework.Constraints.ToleranceMode.Percent">
10489 <summary>
10490 Interprets the tolerance as the percentage by which
10491 the two compared values my deviate from each other.
10492 </summary>
10493 </member>
10494 <member name="F:NUnit.Framework.Constraints.ToleranceMode.Ulps">
10495 <summary>
10496 Compares two values based in their distance in
10497 representable numbers.
10498 </summary>
10499 </member>
10500 <member name="T:NUnit.Framework.Constraints.TrueConstraint">
10501 <summary>
10502 TrueConstraint tests that the actual value is true
10503 </summary>
10504 </member>
10505 <member name="M:NUnit.Framework.Constraints.TrueConstraint.#ctor">
10506 <summary>
10507 Initializes a new instance of the <see cref="T:TrueConstraint"/> class.
10508 </summary>
10509 </member>
10510 <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
10511 <summary>
10512 UniqueItemsConstraint tests whether all the items in a
10513 collection are unique.
10514 </summary>
10515 </member>
10516 <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
10517 <summary>
10518 Check that all items are unique.
10519 </summary>
10520 <param name="actual"></param>
10521 <returns></returns>
10522 </member>
10523 <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10524 <summary>
10525 Write a description of this constraint to a MessageWriter
10526 </summary>
10527 <param name="writer"></param>
10528 </member>
10529 <member name="T:NUnit.Framework.Constraints.XmlSerializableConstraint">
10530 <summary>
10531 XmlSerializableConstraint tests whether
10532 an object is serializable in XML format.
10533 </summary>
10534 </member>
10535 <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)">
10536 <summary>
10537 Test whether the constraint is satisfied by a given value
10538 </summary>
10539 <param name="actual">The value to be tested</param>
10540 <returns>True for success, false for failure</returns>
10541 </member>
10542 <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
10543 <summary>
10544 Write the constraint description to a MessageWriter
10545 </summary>
10546 <param name="writer">The writer on which the description is displayed</param>
10547 </member>
10548 <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
10549 <summary>
10550 Write the actual value for a failing constraint test to a
10551 MessageWriter. The default implementation simply writes
10552 the raw value of actual, leaving it to the writer to
10553 perform any formatting.
10554 </summary>
10555 <param name="writer">The writer on which the actual value is displayed</param>
10556 </member>
10557 <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.GetStringRepresentation">
10558 <summary>
10559 Returns the string representation of this constraint
10560 </summary>
10561 </member>
10562 <member name="T:NUnit.Framework.Constraints.AllOperator">
10563 <summary>
10564 Represents a constraint that succeeds if all the
10565 members of a collection match a base constraint.
10566 </summary>
10567 </member>
10568 <member name="T:NUnit.Framework.Constraints.CollectionOperator">
10569 <summary>
10570 Abstract base for operators that indicate how to
10571 apply a constraint to items in a collection.
10572 </summary>
10573 </member>
10574 <member name="T:NUnit.Framework.Constraints.PrefixOperator">
10575 <summary>
10576 PrefixOperator takes a single constraint and modifies
10577 it's action in some way.
10578 </summary>
10579 </member>
10580 <member name="T:NUnit.Framework.Constraints.ConstraintOperator">
10581 <summary>
10582 The ConstraintOperator class is used internally by a
10583 ConstraintBuilder to represent an operator that
10584 modifies or combines constraints.
10585
10586 Constraint operators use left and right precedence
10587 values to determine whether the top operator on the
10588 stack should be reduced before pushing a new operator.
10589 </summary>
10590 </member>
10591 <member name="F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence">
10592 <summary>
10593 The precedence value used when the operator
10594 is about to be pushed to the stack.
10595 </summary>
10596 </member>
10597 <member name="F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence">
10598 <summary>
10599 The precedence value used when the operator
10600 is on the top of the stack.
10601 </summary>
10602 </member>
10603 <member name="M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
10604 <summary>
10605 Reduce produces a constraint from the operator and
10606 any arguments. It takes the arguments from the constraint
10607 stack and pushes the resulting constraint on it.
10608 </summary>
10609 <param name="stack"></param>
10610 </member>
10611 <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext">
10612 <summary>
10613 The syntax element preceding this operator
10614 </summary>
10615 </member>
10616 <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightContext">
10617 <summary>
10618 The syntax element folowing this operator
10619 </summary>
10620 </member>
10621 <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence">
10622 <summary>
10623 The precedence value used when the operator
10624 is about to be pushed to the stack.
10625 </summary>
10626 </member>
10627 <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence">
10628 <summary>
10629 The precedence value used when the operator
10630 is on the top of the stack.
10631 </summary>
10632 </member>
10633 <member name="M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
10634 <summary>
10635 Reduce produces a constraint from the operator and
10636 any arguments. It takes the arguments from the constraint
10637 stack and pushes the resulting constraint on it.
10638 </summary>
10639 <param name="stack"></param>
10640 </member>
10641 <member name="M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10642 <summary>
10643 Returns the constraint created by applying this
10644 prefix to another constraint.
10645 </summary>
10646 <param name="constraint"></param>
10647 <returns></returns>
10648 </member>
10649 <member name="M:NUnit.Framework.Constraints.CollectionOperator.#ctor">
10650 <summary>
10651 Constructs a CollectionOperator
10652 </summary>
10653 </member>
10654 <member name="M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10655 <summary>
10656 Returns a constraint that will apply the argument
10657 to the members of a collection, succeeding if
10658 they all succeed.
10659 </summary>
10660 </member>
10661 <member name="T:NUnit.Framework.Constraints.AndOperator">
10662 <summary>
10663 Operator that requires both it's arguments to succeed
10664 </summary>
10665 </member>
10666 <member name="T:NUnit.Framework.Constraints.BinaryOperator">
10667 <summary>
10668 Abstract base class for all binary operators
10669 </summary>
10670 </member>
10671 <member name="M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
10672 <summary>
10673 Reduce produces a constraint from the operator and
10674 any arguments. It takes the arguments from the constraint
10675 stack and pushes the resulting constraint on it.
10676 </summary>
10677 <param name="stack"></param>
10678 </member>
10679 <member name="M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
10680 <summary>
10681 Abstract method that produces a constraint by applying
10682 the operator to its left and right constraint arguments.
10683 </summary>
10684 </member>
10685 <member name="P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence">
10686 <summary>
10687 Gets the left precedence of the operator
10688 </summary>
10689 </member>
10690 <member name="P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence">
10691 <summary>
10692 Gets the right precedence of the operator
10693 </summary>
10694 </member>
10695 <member name="M:NUnit.Framework.Constraints.AndOperator.#ctor">
10696 <summary>
10697 Construct an AndOperator
10698 </summary>
10699 </member>
10700 <member name="M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
10701 <summary>
10702 Apply the operator to produce an AndConstraint
10703 </summary>
10704 </member>
10705 <member name="T:NUnit.Framework.Constraints.AttributeOperator">
10706 <summary>
10707 Operator that tests for the presence of a particular attribute
10708 on a type and optionally applies further tests to the attribute.
10709 </summary>
10710 </member>
10711 <member name="T:NUnit.Framework.Constraints.SelfResolvingOperator">
10712 <summary>
10713 Abstract base class for operators that are able to reduce to a
10714 constraint whether or not another syntactic element follows.
10715 </summary>
10716 </member>
10717 <member name="M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)">
10718 <summary>
10719 Construct an AttributeOperator for a particular Type
10720 </summary>
10721 <param name="type">The Type of attribute tested</param>
10722 </member>
10723 <member name="M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
10724 <summary>
10725 Reduce produces a constraint from the operator and
10726 any arguments. It takes the arguments from the constraint
10727 stack and pushes the resulting constraint on it.
10728 </summary>
10729 </member>
10730 <member name="T:NUnit.Framework.Constraints.ExactCountOperator">
10731 <summary>
10732 Represents a constraint that succeeds if the specified
10733 count of members of a collection match a base constraint.
10734 </summary>
10735 </member>
10736 <member name="M:NUnit.Framework.Constraints.ExactCountOperator.#ctor(System.Int32)">
10737 <summary>
10738 Construct an ExactCountOperator for a specified count
10739 </summary>
10740 <param name="expectedCount">The expected count</param>
10741 </member>
10742 <member name="M:NUnit.Framework.Constraints.ExactCountOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10743 <summary>
10744 Returns a constraint that will apply the argument
10745 to the members of a collection, succeeding if
10746 none of them succeed.
10747 </summary>
10748 </member>
10749 <member name="T:NUnit.Framework.Constraints.NoneOperator">
10750 <summary>
10751 Represents a constraint that succeeds if none of the
10752 members of a collection match a base constraint.
10753 </summary>
10754 </member>
10755 <member name="M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10756 <summary>
10757 Returns a constraint that will apply the argument
10758 to the members of a collection, succeeding if
10759 none of them succeed.
10760 </summary>
10761 </member>
10762 <member name="T:NUnit.Framework.Constraints.NotOperator">
10763 <summary>
10764 Negates the test of the constraint it wraps.
10765 </summary>
10766 </member>
10767 <member name="M:NUnit.Framework.Constraints.NotOperator.#ctor">
10768 <summary>
10769 Constructs a new NotOperator
10770 </summary>
10771 </member>
10772 <member name="M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10773 <summary>
10774 Returns a NotConstraint applied to its argument.
10775 </summary>
10776 </member>
10777 <member name="T:NUnit.Framework.Constraints.OrOperator">
10778 <summary>
10779 Operator that requires at least one of it's arguments to succeed
10780 </summary>
10781 </member>
10782 <member name="M:NUnit.Framework.Constraints.OrOperator.#ctor">
10783 <summary>
10784 Construct an OrOperator
10785 </summary>
10786 </member>
10787 <member name="M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
10788 <summary>
10789 Apply the operator to produce an OrConstraint
10790 </summary>
10791 </member>
10792 <member name="T:NUnit.Framework.Constraints.PropOperator">
10793 <summary>
10794 Operator used to test for the presence of a named Property
10795 on an object and optionally apply further tests to the
10796 value of that property.
10797 </summary>
10798 </member>
10799 <member name="M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)">
10800 <summary>
10801 Constructs a PropOperator for a particular named property
10802 </summary>
10803 </member>
10804 <member name="M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
10805 <summary>
10806 Reduce produces a constraint from the operator and
10807 any arguments. It takes the arguments from the constraint
10808 stack and pushes the resulting constraint on it.
10809 </summary>
10810 <param name="stack"></param>
10811 </member>
10812 <member name="P:NUnit.Framework.Constraints.PropOperator.Name">
10813 <summary>
10814 Gets the name of the property to which the operator applies
10815 </summary>
10816 </member>
10817 <member name="T:NUnit.Framework.Constraints.SomeOperator">
10818 <summary>
10819 Represents a constraint that succeeds if any of the
10820 members of a collection match a base constraint.
10821 </summary>
10822 </member>
10823 <member name="M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10824 <summary>
10825 Returns a constraint that will apply the argument
10826 to the members of a collection, succeeding if
10827 any of them succeed.
10828 </summary>
10829 </member>
10830 <member name="T:NUnit.Framework.Constraints.ThrowsOperator">
10831 <summary>
10832 Operator that tests that an exception is thrown and
10833 optionally applies further tests to the exception.
10834 </summary>
10835 </member>
10836 <member name="M:NUnit.Framework.Constraints.ThrowsOperator.#ctor">
10837 <summary>
10838 Construct a ThrowsOperator
10839 </summary>
10840 </member>
10841 <member name="M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
10842 <summary>
10843 Reduce produces a constraint from the operator and
10844 any arguments. It takes the arguments from the constraint
10845 stack and pushes the resulting constraint on it.
10846 </summary>
10847 </member>
10848 <member name="T:NUnit.Framework.Constraints.WithOperator">
10849 <summary>
10850 Represents a constraint that simply wraps the
10851 constraint provided as an argument, without any
10852 further functionality, but which modifes the
10853 order of evaluation because of its precedence.
10854 </summary>
10855 </member>
10856 <member name="M:NUnit.Framework.Constraints.WithOperator.#ctor">
10857 <summary>
10858 Constructor for the WithOperator
10859 </summary>
10860 </member>
10861 <member name="M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
10862 <summary>
10863 Returns a constraint that wraps its argument
10864 </summary>
10865 </member>
10866 <member name="T:NUnit.Framework.AssertionException">
10867 <summary>
10868 Thrown when an assertion failed.
10869 </summary>
10870 </member>
10871 <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
10872 <param name="message">The error message that explains
10873 the reason for the exception</param>
10874 </member>
10875 <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
10876 <param name="message">The error message that explains
10877 the reason for the exception</param>
10878 <param name="inner">The exception that caused the
10879 current exception</param>
10880 </member>
10881 <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
10882 <summary>
10883 Serialization Constructor
10884 </summary>
10885 </member>
10886 <member name="T:NUnit.Framework.IgnoreException">
10887 <summary>
10888 Thrown when an assertion failed.
10889 </summary>
10890 </member>
10891 <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
10892 <param name="message"></param>
10893 </member>
10894 <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
10895 <param name="message">The error message that explains
10896 the reason for the exception</param>
10897 <param name="inner">The exception that caused the
10898 current exception</param>
10899 </member>
10900 <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
10901 <summary>
10902 Serialization Constructor
10903 </summary>
10904 </member>
10905 <member name="T:NUnit.Framework.InconclusiveException">
10906 <summary>
10907 Thrown when a test executes inconclusively.
10908 </summary>
10909 </member>
10910 <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String)">
10911 <param name="message">The error message that explains
10912 the reason for the exception</param>
10913 </member>
10914 <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)">
10915 <param name="message">The error message that explains
10916 the reason for the exception</param>
10917 <param name="inner">The exception that caused the
10918 current exception</param>
10919 </member>
10920 <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
10921 <summary>
10922 Serialization Constructor
10923 </summary>
10924 </member>
10925 <member name="T:NUnit.Framework.SuccessException">
10926 <summary>
10927 Thrown when an assertion failed.
10928 </summary>
10929 </member>
10930 <member name="M:NUnit.Framework.SuccessException.#ctor(System.String)">
10931 <param name="message"></param>
10932 </member>
10933 <member name="M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)">
10934 <param name="message">The error message that explains
10935 the reason for the exception</param>
10936 <param name="inner">The exception that caused the
10937 current exception</param>
10938 </member>
10939 <member name="M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
10940 <summary>
10941 Serialization Constructor
10942 </summary>
10943 </member>
10944 <member name="T:NUnit.Framework.INUnitEqualityComparer`1">
10945 <summary>
10946
10947 </summary>
10948 <typeparam name="T"></typeparam>
10949 </member>
10950 <member name="M:NUnit.Framework.INUnitEqualityComparer`1.AreEqual(`0,`0,NUnit.Framework.Constraints.Tolerance@)">
10951 <summary>
10952 Compares two objects of a given Type for equality within a tolerance
10953 </summary>
10954 <param name="x">The first object to compare</param>
10955 <param name="y">The second object to compare</param>
10956 <param name="tolerance">The tolerance to use in the comparison</param>
10957 <returns></returns>
10958 </member>
10959 </members>
10960 </doc>