PageRenderTime 154ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 3ms

/tools/nunit/nunit.framework.xml

http://github.com/joaofx/simpletemplate
XML | 9554 lines | 9538 code | 16 blank | 0 comment | 0 complexity | f12a93c9c401bf3d96484924713dcb1f MD5 | raw file
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>nunit.framework</name>
  5. </assembly>
  6. <members>
  7. <member name="T:NUnit.Framework.Constraints.TypeConstraint">
  8. <summary>
  9. TypeConstraint is the abstract base for constraints
  10. that take a Type as their expected value.
  11. </summary>
  12. </member>
  13. <member name="T:NUnit.Framework.Constraints.Constraint">
  14. <summary>
  15. The Constraint class is the base of all built-in constraints
  16. within NUnit. It provides the operator overloads used to combine
  17. constraints.
  18. </summary>
  19. </member>
  20. <member name="T:NUnit.Framework.Constraints.IResolveConstraint">
  21. <summary>
  22. The IConstraintExpression interface is implemented by all
  23. complete and resolvable constraints and expressions.
  24. </summary>
  25. </member>
  26. <member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
  27. <summary>
  28. Return the top-level constraint for this expression
  29. </summary>
  30. <returns></returns>
  31. </member>
  32. <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
  33. <summary>
  34. Static UnsetObject used to detect derived constraints
  35. failing to set the actual value.
  36. </summary>
  37. </member>
  38. <member name="F:NUnit.Framework.Constraints.Constraint.actual">
  39. <summary>
  40. The actual value being tested against a constraint
  41. </summary>
  42. </member>
  43. <member name="F:NUnit.Framework.Constraints.Constraint.displayName">
  44. <summary>
  45. The display name of this Constraint for use by ToString()
  46. </summary>
  47. </member>
  48. <member name="F:NUnit.Framework.Constraints.Constraint.argcnt">
  49. <summary>
  50. Argument fields used by ToString();
  51. </summary>
  52. </member>
  53. <member name="F:NUnit.Framework.Constraints.Constraint.builder">
  54. <summary>
  55. The builder holding this constraint
  56. </summary>
  57. </member>
  58. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor">
  59. <summary>
  60. Construct a constraint with no arguments
  61. </summary>
  62. </member>
  63. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)">
  64. <summary>
  65. Construct a constraint with one argument
  66. </summary>
  67. </member>
  68. <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)">
  69. <summary>
  70. Construct a constraint with two arguments
  71. </summary>
  72. </member>
  73. <member name="M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)">
  74. <summary>
  75. Sets the ConstraintBuilder holding this constraint
  76. </summary>
  77. </member>
  78. <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  79. <summary>
  80. Write the failure message to the MessageWriter provided
  81. as an argument. The default implementation simply passes
  82. the constraint and the actual value to the writer, which
  83. then displays the constraint description and the value.
  84. Constraints that need to provide additional details,
  85. such as where the error occured can override this.
  86. </summary>
  87. <param name="writer">The MessageWriter on which to display the message</param>
  88. </member>
  89. <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
  90. <summary>
  91. Test whether the constraint is satisfied by a given value
  92. </summary>
  93. <param name="actual">The value to be tested</param>
  94. <returns>True for success, false for failure</returns>
  95. </member>
  96. <member name="M:NUnit.Framework.Constraints.Constraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
  97. <summary>
  98. Test whether the constraint is satisfied by an
  99. ActualValueDelegate that returns the value to be tested.
  100. The default implementation simply evaluates the delegate
  101. but derived classes may override it to provide for delayed
  102. processing.
  103. </summary>
  104. <param name="del">An ActualValueDelegate</param>
  105. <returns>True for success, false for failure</returns>
  106. </member>
  107. <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)">
  108. <summary>
  109. Test whether the constraint is satisfied by a given reference.
  110. The default implementation simply dereferences the value but
  111. derived classes may override it to provide for delayed processing.
  112. </summary>
  113. <param name="actual">A reference to the value to be tested</param>
  114. <returns>True for success, false for failure</returns>
  115. </member>
  116. <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  117. <summary>
  118. Write the constraint description to a MessageWriter
  119. </summary>
  120. <param name="writer">The writer on which the description is displayed</param>
  121. </member>
  122. <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  123. <summary>
  124. Write the actual value for a failing constraint test to a
  125. MessageWriter. The default implementation simply writes
  126. the raw value of actual, leaving it to the writer to
  127. perform any formatting.
  128. </summary>
  129. <param name="writer">The writer on which the actual value is displayed</param>
  130. </member>
  131. <member name="M:NUnit.Framework.Constraints.Constraint.ToString">
  132. <summary>
  133. Default override of ToString returns the constraint DisplayName
  134. followed by any arguments within angle brackets.
  135. </summary>
  136. <returns></returns>
  137. </member>
  138. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  139. <summary>
  140. This operator creates a constraint that is satisfied only if both
  141. argument constraints are satisfied.
  142. </summary>
  143. </member>
  144. <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  145. <summary>
  146. This operator creates a constraint that is satisfied if either
  147. of the argument constraints is satisfied.
  148. </summary>
  149. </member>
  150. <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
  151. <summary>
  152. This operator creates a constraint that is satisfied if the
  153. argument constraint is not satisfied.
  154. </summary>
  155. </member>
  156. <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32)">
  157. <summary>
  158. Returns a DelayedConstraint with the specified delay time.
  159. </summary>
  160. <param name="delayInMilliseconds">The delay in milliseconds.</param>
  161. <returns></returns>
  162. </member>
  163. <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)">
  164. <summary>
  165. Returns a DelayedConstraint with the specified delay time
  166. and polling interval.
  167. </summary>
  168. <param name="delayInMilliseconds">The delay in milliseconds.</param>
  169. <param name="pollingInterval">The interval at which to test the constraint.</param>
  170. <returns></returns>
  171. </member>
  172. <member name="P:NUnit.Framework.Constraints.Constraint.DisplayName">
  173. <summary>
  174. The display name of this Constraint for use by ToString().
  175. The default value is the name of the constraint with
  176. trailing "Constraint" removed. Derived classes may set
  177. this to another name in their constructors.
  178. </summary>
  179. </member>
  180. <member name="P:NUnit.Framework.Constraints.Constraint.And">
  181. <summary>
  182. Returns a ConstraintExpression by appending And
  183. to the current constraint.
  184. </summary>
  185. </member>
  186. <member name="P:NUnit.Framework.Constraints.Constraint.With">
  187. <summary>
  188. Returns a ConstraintExpression by appending And
  189. to the current constraint.
  190. </summary>
  191. </member>
  192. <member name="P:NUnit.Framework.Constraints.Constraint.Or">
  193. <summary>
  194. Returns a ConstraintExpression by appending Or
  195. to the current constraint.
  196. </summary>
  197. </member>
  198. <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
  199. <summary>
  200. Class used to detect any derived constraints
  201. that fail to set the actual value in their
  202. Matches override.
  203. </summary>
  204. </member>
  205. <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
  206. <summary>
  207. The expected Type used by the constraint
  208. </summary>
  209. </member>
  210. <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
  211. <summary>
  212. Construct a TypeConstraint for a given Type
  213. </summary>
  214. <param name="type"></param>
  215. </member>
  216. <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  217. <summary>
  218. Write the actual value for a failing constraint test to a
  219. MessageWriter. TypeConstraints override this method to write
  220. the name of the type.
  221. </summary>
  222. <param name="writer">The writer on which the actual value is displayed</param>
  223. </member>
  224. <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
  225. <summary>
  226. ExactTypeConstraint is used to test that an object
  227. is of the exact type provided in the constructor
  228. </summary>
  229. </member>
  230. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
  231. <summary>
  232. Construct an ExactTypeConstraint for a given Type
  233. </summary>
  234. <param name="type">The expected Type.</param>
  235. </member>
  236. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
  237. <summary>
  238. Test that an object is of the exact type specified
  239. </summary>
  240. <param name="actual">The actual value.</param>
  241. <returns>True if the tested object is of the exact type provided, otherwise false.</returns>
  242. </member>
  243. <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  244. <summary>
  245. Write the description of this constraint to a MessageWriter
  246. </summary>
  247. <param name="writer">The MessageWriter to use</param>
  248. </member>
  249. <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
  250. <summary>
  251. InstanceOfTypeConstraint is used to test that an object
  252. is of the same type provided or derived from it.
  253. </summary>
  254. </member>
  255. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
  256. <summary>
  257. Construct an InstanceOfTypeConstraint for the type provided
  258. </summary>
  259. <param name="type">The expected Type</param>
  260. </member>
  261. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
  262. <summary>
  263. Test whether an object is of the specified type or a derived type
  264. </summary>
  265. <param name="actual">The object to be tested</param>
  266. <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>
  267. </member>
  268. <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  269. <summary>
  270. Write a description of this constraint to a MessageWriter
  271. </summary>
  272. <param name="writer">The MessageWriter to use</param>
  273. </member>
  274. <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
  275. <summary>
  276. AssignableFromConstraint is used to test that an object
  277. can be assigned from a given Type.
  278. </summary>
  279. </member>
  280. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
  281. <summary>
  282. Construct an AssignableFromConstraint for the type provided
  283. </summary>
  284. <param name="type"></param>
  285. </member>
  286. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
  287. <summary>
  288. Test whether an object can be assigned from the specified type
  289. </summary>
  290. <param name="actual">The object to be tested</param>
  291. <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
  292. </member>
  293. <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  294. <summary>
  295. Write a description of this constraint to a MessageWriter
  296. </summary>
  297. <param name="writer">The MessageWriter to use</param>
  298. </member>
  299. <member name="T:NUnit.Framework.Constraints.AssignableToConstraint">
  300. <summary>
  301. AssignableToConstraint is used to test that an object
  302. can be assigned to a given Type.
  303. </summary>
  304. </member>
  305. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)">
  306. <summary>
  307. Construct an AssignableToConstraint for the type provided
  308. </summary>
  309. <param name="type"></param>
  310. </member>
  311. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)">
  312. <summary>
  313. Test whether an object can be assigned to the specified type
  314. </summary>
  315. <param name="actual">The object to be tested</param>
  316. <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
  317. </member>
  318. <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  319. <summary>
  320. Write a description of this constraint to a MessageWriter
  321. </summary>
  322. <param name="writer">The MessageWriter to use</param>
  323. </member>
  324. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
  325. <summary>
  326. ConstraintBuilder maintains the stacks that are used in
  327. processing a ConstraintExpression. An OperatorStack
  328. is used to hold operators that are waiting for their
  329. operands to be reognized. a ConstraintStack holds
  330. input constraints as well as the results of each
  331. operator applied.
  332. </summary>
  333. </member>
  334. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor">
  335. <summary>
  336. Initializes a new instance of the <see cref="T:ConstraintBuilder"/> class.
  337. </summary>
  338. </member>
  339. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  340. <summary>
  341. Appends the specified operator to the expression by first
  342. reducing the operator stack and then pushing the new
  343. operator on the stack.
  344. </summary>
  345. <param name="op">The operator to push.</param>
  346. </member>
  347. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)">
  348. <summary>
  349. Appends the specified constraint to the expresson by pushing
  350. it on the constraint stack.
  351. </summary>
  352. <param name="constraint">The constraint to push.</param>
  353. </member>
  354. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)">
  355. <summary>
  356. Sets the top operator right context.
  357. </summary>
  358. <param name="rightContext">The right context.</param>
  359. </member>
  360. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)">
  361. <summary>
  362. Reduces the operator stack until the topmost item
  363. precedence is greater than or equal to the target precedence.
  364. </summary>
  365. <param name="targetPrecedence">The target precedence.</param>
  366. </member>
  367. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve">
  368. <summary>
  369. Resolves this instance, returning a Constraint. If the builder
  370. is not currently in a resolvable state, an exception is thrown.
  371. </summary>
  372. <returns>The resolved constraint</returns>
  373. </member>
  374. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable">
  375. <summary>
  376. Gets a value indicating whether this instance is resolvable.
  377. </summary>
  378. <value>
  379. <c>true</c> if this instance is resolvable; otherwise, <c>false</c>.
  380. </value>
  381. </member>
  382. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack">
  383. <summary>
  384. OperatorStack is a type-safe stack for holding ConstraintOperators
  385. </summary>
  386. </member>
  387. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  388. <summary>
  389. Initializes a new instance of the <see cref="T:OperatorStack"/> class.
  390. </summary>
  391. <param name="builder">The builder.</param>
  392. </member>
  393. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)">
  394. <summary>
  395. Pushes the specified operator onto the stack.
  396. </summary>
  397. <param name="op">The op.</param>
  398. </member>
  399. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop">
  400. <summary>
  401. Pops the topmost operator from the stack.
  402. </summary>
  403. <returns></returns>
  404. </member>
  405. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty">
  406. <summary>
  407. Gets a value indicating whether this <see cref="T:OpStack"/> is empty.
  408. </summary>
  409. <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  410. </member>
  411. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top">
  412. <summary>
  413. Gets the topmost operator without modifying the stack.
  414. </summary>
  415. <value>The top.</value>
  416. </member>
  417. <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack">
  418. <summary>
  419. ConstraintStack is a type-safe stack for holding Constraints
  420. </summary>
  421. </member>
  422. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  423. <summary>
  424. Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
  425. </summary>
  426. <param name="builder">The builder.</param>
  427. </member>
  428. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)">
  429. <summary>
  430. Pushes the specified constraint. As a side effect,
  431. the constraint's builder field is set to the
  432. ConstraintBuilder owning this stack.
  433. </summary>
  434. <param name="constraint">The constraint.</param>
  435. </member>
  436. <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop">
  437. <summary>
  438. Pops this topmost constrait from the stack.
  439. As a side effect, the constraint's builder
  440. field is set to null.
  441. </summary>
  442. <returns></returns>
  443. </member>
  444. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty">
  445. <summary>
  446. Gets a value indicating whether this <see cref="T:ConstraintStack"/> is empty.
  447. </summary>
  448. <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
  449. </member>
  450. <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top">
  451. <summary>
  452. Gets the topmost constraint without modifying the stack.
  453. </summary>
  454. <value>The topmost constraint</value>
  455. </member>
  456. <member name="T:NUnit.Framework.Constraints.ThrowsConstraint">
  457. <summary>
  458. ThrowsConstraint is used to test the exception thrown by
  459. a delegate by applying a constraint to it.
  460. </summary>
  461. </member>
  462. <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
  463. <summary>
  464. Abstract base class used for prefixes
  465. </summary>
  466. </member>
  467. <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
  468. <summary>
  469. The base constraint
  470. </summary>
  471. </member>
  472. <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
  473. <summary>
  474. Construct given a base constraint
  475. </summary>
  476. <param name="resolvable"></param>
  477. </member>
  478. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  479. <summary>
  480. Initializes a new instance of the <see cref="T:ThrowsConstraint"/> class,
  481. using a constraint to be applied to the exception.
  482. </summary>
  483. <param name="baseConstraint">A constraint to apply to the caught exception.</param>
  484. </member>
  485. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)">
  486. <summary>
  487. Executes the code of the delegate and captures any exception.
  488. If a non-null base constraint was provided, it applies that
  489. constraint to the exception.
  490. </summary>
  491. <param name="actual">A delegate representing the code to be tested</param>
  492. <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>
  493. </member>
  494. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
  495. <summary>
  496. Converts an ActualValueDelegate to a TestDelegate
  497. before calling the primary overload.
  498. </summary>
  499. <param name="del"></param>
  500. <returns></returns>
  501. </member>
  502. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  503. <summary>
  504. Write the constraint description to a MessageWriter
  505. </summary>
  506. <param name="writer">The writer on which the description is displayed</param>
  507. </member>
  508. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  509. <summary>
  510. Write the actual value for a failing constraint test to a
  511. MessageWriter. The default implementation simply writes
  512. the raw value of actual, leaving it to the writer to
  513. perform any formatting.
  514. </summary>
  515. <param name="writer">The writer on which the actual value is displayed</param>
  516. </member>
  517. <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.ToString">
  518. <summary>
  519. Returns the string representation of this constraint
  520. </summary>
  521. </member>
  522. <member name="P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException">
  523. <summary>
  524. Get the actual exception thrown - used by Assert.Throws.
  525. </summary>
  526. </member>
  527. <member name="T:NUnit.Framework.Constraints.ThrowsNothingConstraint">
  528. <summary>
  529. ThrowsNothingConstraint tests that a delegate does not
  530. throw an exception.
  531. </summary>
  532. </member>
  533. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)">
  534. <summary>
  535. Test whether the constraint is satisfied by a given value
  536. </summary>
  537. <param name="actual">The value to be tested</param>
  538. <returns>True if no exception is thrown, otherwise false</returns>
  539. </member>
  540. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  541. <summary>
  542. Write the constraint description to a MessageWriter
  543. </summary>
  544. <param name="writer">The writer on which the description is displayed</param>
  545. </member>
  546. <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  547. <summary>
  548. Write the actual value for a failing constraint test to a
  549. MessageWriter. The default implementation simply writes
  550. the raw value of actual, leaving it to the writer to
  551. perform any formatting.
  552. </summary>
  553. <param name="writer">The writer on which the actual value is displayed</param>
  554. </member>
  555. <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
  556. <summary>
  557. CollectionConstraint is the abstract base class for
  558. constraints that operate on collections.
  559. </summary>
  560. </member>
  561. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor">
  562. <summary>
  563. Construct an empty CollectionConstraint
  564. </summary>
  565. </member>
  566. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)">
  567. <summary>
  568. Construct a CollectionConstraint
  569. </summary>
  570. <param name="arg"></param>
  571. </member>
  572. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)">
  573. <summary>
  574. Determines whether the specified enumerable is empty.
  575. </summary>
  576. <param name="enumerable">The enumerable.</param>
  577. <returns>
  578. <c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.
  579. </returns>
  580. </member>
  581. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
  582. <summary>
  583. Test whether the constraint is satisfied by a given value
  584. </summary>
  585. <param name="actual">The value to be tested</param>
  586. <returns>True for success, false for failure</returns>
  587. </member>
  588. <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
  589. <summary>
  590. Protected method to be implemented by derived classes
  591. </summary>
  592. <param name="collection"></param>
  593. <returns></returns>
  594. </member>
  595. <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint">
  596. <summary>
  597. CollectionItemsEqualConstraint is the abstract base class for all
  598. collection constraints that apply some notion of item equality
  599. as a part of their operation.
  600. </summary>
  601. </member>
  602. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor">
  603. <summary>
  604. Construct an empty CollectionConstraint
  605. </summary>
  606. </member>
  607. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)">
  608. <summary>
  609. Construct a CollectionConstraint
  610. </summary>
  611. <param name="arg"></param>
  612. </member>
  613. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)">
  614. <summary>
  615. Flag the constraint to use the supplied IComparer object.
  616. </summary>
  617. <param name="comparer">The IComparer object to use.</param>
  618. <returns>Self.</returns>
  619. </member>
  620. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  621. <summary>
  622. Flag the constraint to use the supplied IComparer object.
  623. </summary>
  624. <param name="comparer">The IComparer object to use.</param>
  625. <returns>Self.</returns>
  626. </member>
  627. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})">
  628. <summary>
  629. Flag the constraint to use the supplied Comparison object.
  630. </summary>
  631. <param name="comparer">The IComparer object to use.</param>
  632. <returns>Self.</returns>
  633. </member>
  634. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)">
  635. <summary>
  636. Flag the constraint to use the supplied IEqualityComparer object.
  637. </summary>
  638. <param name="comparer">The IComparer object to use.</param>
  639. <returns>Self.</returns>
  640. </member>
  641. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  642. <summary>
  643. Flag the constraint to use the supplied IEqualityComparer object.
  644. </summary>
  645. <param name="comparer">The IComparer object to use.</param>
  646. <returns>Self.</returns>
  647. </member>
  648. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)">
  649. <summary>
  650. Compares two collection members for equality
  651. </summary>
  652. </member>
  653. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)">
  654. <summary>
  655. Return a new CollectionTally for use in making tests
  656. </summary>
  657. <param name="c">The collection to be included in the tally</param>
  658. </member>
  659. <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase">
  660. <summary>
  661. Flag the constraint to ignore case and return self.
  662. </summary>
  663. </member>
  664. <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.CollectionTally">
  665. <summary>
  666. CollectionTally counts (tallies) the number of
  667. occurences of each object in one or more enumerations.
  668. </summary>
  669. </member>
  670. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)">
  671. <summary>
  672. Construct a CollectionTally object from a comparer and a collection
  673. </summary>
  674. </member>
  675. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.CollectionTally.TryRemove(System.Object)">
  676. <summary>
  677. Try to remove an object from the tally
  678. </summary>
  679. <param name="o">The object to remove</param>
  680. <returns>True if successful, false if the object was not found</returns>
  681. </member>
  682. <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.CollectionTally.TryRemove(System.Collections.IEnumerable)">
  683. <summary>
  684. Try to remove a set of objects from the tally
  685. </summary>
  686. <param name="c">The objects to remove</param>
  687. <returns>True if successful, false if any object was not found</returns>
  688. </member>
  689. <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.CollectionTally.Count">
  690. <summary>
  691. The number of objects remaining in the tally
  692. </summary>
  693. </member>
  694. <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
  695. <summary>
  696. EmptyCollectionConstraint tests whether a collection is empty.
  697. </summary>
  698. </member>
  699. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
  700. <summary>
  701. Check that the collection is empty
  702. </summary>
  703. <param name="collection"></param>
  704. <returns></returns>
  705. </member>
  706. <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  707. <summary>
  708. Write the constraint description to a MessageWriter
  709. </summary>
  710. <param name="writer"></param>
  711. </member>
  712. <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
  713. <summary>
  714. UniqueItemsConstraint tests whether all the items in a
  715. collection are unique.
  716. </summary>
  717. </member>
  718. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
  719. <summary>
  720. Check that all items are unique.
  721. </summary>
  722. <param name="actual"></param>
  723. <returns></returns>
  724. </member>
  725. <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  726. <summary>
  727. Write a description of this constraint to a MessageWriter
  728. </summary>
  729. <param name="writer"></param>
  730. </member>
  731. <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
  732. <summary>
  733. CollectionContainsConstraint is used to test whether a collection
  734. contains an expected object as a member.
  735. </summary>
  736. </member>
  737. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
  738. <summary>
  739. Construct a CollectionContainsConstraint
  740. </summary>
  741. <param name="expected"></param>
  742. </member>
  743. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
  744. <summary>
  745. Test whether the expected item is contained in the collection
  746. </summary>
  747. <param name="actual"></param>
  748. <returns></returns>
  749. </member>
  750. <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  751. <summary>
  752. Write a descripton of the constraint to a MessageWriter
  753. </summary>
  754. <param name="writer"></param>
  755. </member>
  756. <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
  757. <summary>
  758. CollectionEquivalentCOnstraint is used to determine whether two
  759. collections are equivalent.
  760. </summary>
  761. </member>
  762. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
  763. <summary>
  764. Construct a CollectionEquivalentConstraint
  765. </summary>
  766. <param name="expected"></param>
  767. </member>
  768. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
  769. <summary>
  770. Test whether two collections are equivalent
  771. </summary>
  772. <param name="actual"></param>
  773. <returns></returns>
  774. </member>
  775. <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  776. <summary>
  777. Write a description of this constraint to a MessageWriter
  778. </summary>
  779. <param name="writer"></param>
  780. </member>
  781. <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
  782. <summary>
  783. CollectionSubsetConstraint is used to determine whether
  784. one collection is a subset of another
  785. </summary>
  786. </member>
  787. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
  788. <summary>
  789. Construct a CollectionSubsetConstraint
  790. </summary>
  791. <param name="expected">The collection that the actual value is expected to be a subset of</param>
  792. </member>
  793. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
  794. <summary>
  795. Test whether the actual collection is a subset of
  796. the expected collection provided.
  797. </summary>
  798. <param name="actual"></param>
  799. <returns></returns>
  800. </member>
  801. <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  802. <summary>
  803. Write a description of this constraint to a MessageWriter
  804. </summary>
  805. <param name="writer"></param>
  806. </member>
  807. <member name="T:NUnit.Framework.Constraints.CollectionOrderedConstraint">
  808. <summary>
  809. CollectionOrderedConstraint is used to test whether a collection is ordered.
  810. </summary>
  811. </member>
  812. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor">
  813. <summary>
  814. Construct a CollectionOrderedConstraint
  815. </summary>
  816. </member>
  817. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)">
  818. <summary>
  819. Modifies the constraint to use an IComparer and returns self.
  820. </summary>
  821. </member>
  822. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  823. <summary>
  824. Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
  825. </summary>
  826. </member>
  827. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})">
  828. <summary>
  829. Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
  830. </summary>
  831. </member>
  832. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)">
  833. <summary>
  834. Modifies the constraint to test ordering by the value of
  835. a specified property and returns self.
  836. </summary>
  837. </member>
  838. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)">
  839. <summary>
  840. Test whether the collection is ordered
  841. </summary>
  842. <param name="actual"></param>
  843. <returns></returns>
  844. </member>
  845. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  846. <summary>
  847. Write a description of the constraint to a MessageWriter
  848. </summary>
  849. <param name="writer"></param>
  850. </member>
  851. <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.ToString">
  852. <summary>
  853. Returns the string representation of the constraint.
  854. </summary>
  855. <returns></returns>
  856. </member>
  857. <member name="P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending">
  858. <summary>
  859. If used performs a reverse comparison
  860. </summary>
  861. </member>
  862. <member name="T:NUnit.Framework.Constraints.EmptyDirectoryContraint">
  863. <summary>
  864. EmptyDirectoryConstraint is used to test that a directory is empty
  865. </summary>
  866. </member>
  867. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.Matches(System.Object)">
  868. <summary>
  869. Test whether the constraint is satisfied by a given value
  870. </summary>
  871. <param name="actual">The value to be tested</param>
  872. <returns>True for success, false for failure</returns>
  873. </member>
  874. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  875. <summary>
  876. Write the constraint description to a MessageWriter
  877. </summary>
  878. <param name="writer">The writer on which the description is displayed</param>
  879. </member>
  880. <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  881. <summary>
  882. Write the actual value for a failing constraint test to a
  883. MessageWriter. The default implementation simply writes
  884. the raw value of actual, leaving it to the writer to
  885. perform any formatting.
  886. </summary>
  887. <param name="writer">The writer on which the actual value is displayed</param>
  888. </member>
  889. <member name="T:NUnit.Framework.Constraints.SubDirectoryConstraint">
  890. <summary>
  891. SubDirectoryConstraint is used to test that one directory is a subdirectory of another.
  892. </summary>
  893. </member>
  894. <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.#ctor(System.IO.DirectoryInfo)">
  895. <summary>
  896. Initializes a new instance of the <see cref="T:SubDirectoryConstraint"/> class.
  897. </summary>
  898. <param name="dirInfo">The dir info.</param>
  899. </member>
  900. <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.Matches(System.Object)">
  901. <summary>
  902. Test whether the constraint is satisfied by a given value
  903. </summary>
  904. <param name="actual">The value to be tested</param>
  905. <returns>True for success, false for failure</returns>
  906. </member>
  907. <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  908. <summary>
  909. Write the constraint description to a MessageWriter
  910. </summary>
  911. <param name="writer">The writer on which the description is displayed</param>
  912. </member>
  913. <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.BuildDirectoryList(System.IO.DirectoryInfo)">
  914. <summary>
  915. Builds a list of DirectoryInfo objects, recursing where necessary
  916. </summary>
  917. <param name="StartingDirectory">directory to recurse</param>
  918. <returns>list of DirectoryInfo objects from the top level</returns>
  919. </member>
  920. <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.IsDirectoryOnPath(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  921. <summary>
  922. private method to determine whether a directory is within the path
  923. </summary>
  924. <param name="ParentDirectory">top-level directory to search</param>
  925. <param name="SearchDirectory">directory to search for</param>
  926. <returns>true if found, false if not</returns>
  927. </member>
  928. <member name="M:NUnit.Framework.Constraints.SubDirectoryConstraint.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  929. <summary>
  930. Method to compare two DirectoryInfo objects
  931. </summary>
  932. <param name="expected">first directory to compare</param>
  933. <param name="actual">second directory to compare</param>
  934. <returns>true if equivalent, false if not</returns>
  935. </member>
  936. <member name="T:NUnit.Framework.Constraints.PathConstraint">
  937. <summary>
  938. PathConstraint serves as the abstract base of constraints
  939. that operate on paths and provides several helper methods.
  940. </summary>
  941. </member>
  942. <member name="F:NUnit.Framework.Constraints.PathConstraint.expected">
  943. <summary>
  944. The expected path used in the constraint
  945. </summary>
  946. </member>
  947. <member name="F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive">
  948. <summary>
  949. Flag indicating whether a caseInsensitive comparison should be made
  950. </summary>
  951. </member>
  952. <member name="M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)">
  953. <summary>
  954. Construct a PathConstraint for a give expected path
  955. </summary>
  956. <param name="expected">The expected path</param>
  957. </member>
  958. <member name="M:NUnit.Framework.Constraints.PathConstraint.ToString">
  959. <summary>
  960. Returns the string representation of this constraint
  961. </summary>
  962. </member>
  963. <member name="M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)">
  964. <summary>
  965. Canonicalize the provided path
  966. </summary>
  967. <param name="path"></param>
  968. <returns>The path in standardized form</returns>
  969. </member>
  970. <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSamePath(System.String,System.String)">
  971. <summary>
  972. Test whether two paths are the same
  973. </summary>
  974. <param name="path1">The first path</param>
  975. <param name="path2">The second path</param>
  976. <returns></returns>
  977. </member>
  978. <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSamePathOrUnder(System.String,System.String)">
  979. <summary>
  980. Test whether one path is the same as or under another path
  981. </summary>
  982. <param name="path1">The first path - supposed to be the parent path</param>
  983. <param name="path2">The second path - supposed to be the child path</param>
  984. <returns></returns>
  985. </member>
  986. <member name="P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase">
  987. <summary>
  988. Modifies the current instance to be case-insensitve
  989. and returns it.
  990. </summary>
  991. </member>
  992. <member name="P:NUnit.Framework.Constraints.PathConstraint.RespectCase">
  993. <summary>
  994. Modifies the current instance to be case-sensitve
  995. and returns it.
  996. </summary>
  997. </member>
  998. <member name="T:NUnit.Framework.Constraints.SamePathConstraint">
  999. <summary>
  1000. Summary description for SamePathConstraint.
  1001. </summary>
  1002. </member>
  1003. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)">
  1004. <summary>
  1005. Initializes a new instance of the <see cref="T:SamePathConstraint"/> class.
  1006. </summary>
  1007. <param name="expected">The expected path</param>
  1008. </member>
  1009. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.Matches(System.Object)">
  1010. <summary>
  1011. Test whether the constraint is satisfied by a given value
  1012. </summary>
  1013. <param name="actual">The value to be tested</param>
  1014. <returns>True for success, false for failure</returns>
  1015. </member>
  1016. <member name="M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1017. <summary>
  1018. Write the constraint description to a MessageWriter
  1019. </summary>
  1020. <param name="writer">The writer on which the description is displayed</param>
  1021. </member>
  1022. <member name="T:NUnit.Framework.Constraints.SamePathOrUnderConstraint">
  1023. <summary>
  1024. SamePathOrUnderConstraint tests that one path is under another
  1025. </summary>
  1026. </member>
  1027. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)">
  1028. <summary>
  1029. Initializes a new instance of the <see cref="T:SamePathOrUnderConstraint"/> class.
  1030. </summary>
  1031. <param name="expected">The expected path</param>
  1032. </member>
  1033. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.Matches(System.Object)">
  1034. <summary>
  1035. Test whether the constraint is satisfied by a given value
  1036. </summary>
  1037. <param name="actual">The value to be tested</param>
  1038. <returns>True for success, false for failure</returns>
  1039. </member>
  1040. <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1041. <summary>
  1042. Write the constraint description to a MessageWriter
  1043. </summary>
  1044. <param name="writer">The writer on which the description is displayed</param>
  1045. </member>
  1046. <member name="T:NUnit.Framework.Constraints.PropertyExistsConstraint">
  1047. <summary>
  1048. PropertyExistsConstraint tests that a named property
  1049. exists on the object provided through Match.
  1050. Originally, PropertyConstraint provided this feature
  1051. in addition to making optional tests on the vaue
  1052. of the property. The two constraints are now separate.
  1053. </summary>
  1054. </member>
  1055. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)">
  1056. <summary>
  1057. Initializes a new instance of the <see cref="T:PropertyExistConstraint"/> class.
  1058. </summary>
  1059. <param name="name">The name of the property.</param>
  1060. </member>
  1061. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)">
  1062. <summary>
  1063. Test whether the property exists for a given object
  1064. </summary>
  1065. <param name="actual">The object to be tested</param>
  1066. <returns>True for success, false for failure</returns>
  1067. </member>
  1068. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1069. <summary>
  1070. Write the constraint description to a MessageWriter
  1071. </summary>
  1072. <param name="writer">The writer on which the description is displayed</param>
  1073. </member>
  1074. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  1075. <summary>
  1076. Write the actual value for a failing constraint test to a
  1077. MessageWriter.
  1078. </summary>
  1079. <param name="writer">The writer on which the actual value is displayed</param>
  1080. </member>
  1081. <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.ToString">
  1082. <summary>
  1083. Returns the string representation of the constraint.
  1084. </summary>
  1085. <returns></returns>
  1086. </member>
  1087. <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
  1088. <summary>
  1089. PropertyConstraint extracts a named property and uses
  1090. its value as the actual value for a chained constraint.
  1091. </summary>
  1092. </member>
  1093. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
  1094. <summary>
  1095. Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
  1096. </summary>
  1097. <param name="name">The name.</param>
  1098. <param name="baseConstraint">The constraint to apply to the property.</param>
  1099. </member>
  1100. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
  1101. <summary>
  1102. Test whether the constraint is satisfied by a given value
  1103. </summary>
  1104. <param name="actual">The value to be tested</param>
  1105. <returns>True for success, false for failure</returns>
  1106. </member>
  1107. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1108. <summary>
  1109. Write the constraint description to a MessageWriter
  1110. </summary>
  1111. <param name="writer">The writer on which the description is displayed</param>
  1112. </member>
  1113. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  1114. <summary>
  1115. Write the actual value for a failing constraint test to a
  1116. MessageWriter. The default implementation simply writes
  1117. the raw value of actual, leaving it to the writer to
  1118. perform any formatting.
  1119. </summary>
  1120. <param name="writer">The writer on which the actual value is displayed</param>
  1121. </member>
  1122. <member name="M:NUnit.Framework.Constraints.PropertyConstraint.ToString">
  1123. <summary>
  1124. Returns the string representation of the constraint.
  1125. </summary>
  1126. <returns></returns>
  1127. </member>
  1128. <member name="T:NUnit.Framework.Constraints.ConstraintExpression">
  1129. <summary>
  1130. ConstraintExpression represents a compound constraint in the
  1131. process of being constructed from a series of syntactic elements.
  1132. Individual elements are appended to the expression as they are
  1133. reognized. Once an actual Constraint is appended, the expression
  1134. returns a resolvable Constraint.
  1135. </summary>
  1136. </member>
  1137. <member name="T:NUnit.Framework.Constraints.ConstraintExpressionBase">
  1138. <summary>
  1139. ConstraintExpressionBase is the abstract base class for the
  1140. generated ConstraintExpression class, which represents a
  1141. compound constraint in the process of being constructed
  1142. from a series of syntactic elements.
  1143. NOTE: ConstraintExpressionBase is aware of some of its
  1144. derived classes, which is an apparent violation of
  1145. encapsulation. Ideally, these classes would be a
  1146. single class, but they must be separated in order to
  1147. allow parts to be generated under .NET 1.x and to
  1148. provide proper user feedback in syntactically
  1149. aware IDEs.
  1150. </summary>
  1151. </member>
  1152. <member name="F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder">
  1153. <summary>
  1154. The ConstraintBuilder holding the elements recognized so far
  1155. </summary>
  1156. </member>
  1157. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor">
  1158. <summary>
  1159. Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> class.
  1160. </summary>
  1161. </member>
  1162. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  1163. <summary>
  1164. Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/>
  1165. class passing in a ConstraintBuilder, which may be pre-populated.
  1166. </summary>
  1167. <param name="builder">The builder.</param>
  1168. </member>
  1169. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString">
  1170. <summary>
  1171. Returns a string representation of the expression as it
  1172. currently stands. This should only be used for testing,
  1173. since it has the side-effect of resolving the expression.
  1174. </summary>
  1175. <returns></returns>
  1176. </member>
  1177. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)">
  1178. <summary>
  1179. Appends an operator to the expression and returns the
  1180. resulting expression itself.
  1181. </summary>
  1182. </member>
  1183. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)">
  1184. <summary>
  1185. Appends a self-resolving operator to the expression and
  1186. returns a new ResolvableConstraintExpression.
  1187. </summary>
  1188. </member>
  1189. <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)">
  1190. <summary>
  1191. Appends a constraint to the expression and returns that
  1192. constraint, which is associated with the current state
  1193. of the expression being built.
  1194. </summary>
  1195. </member>
  1196. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor">
  1197. <summary>
  1198. Initializes a new instance of the <see cref="T:ConstraintExpression"/> class.
  1199. </summary>
  1200. </member>
  1201. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  1202. <summary>
  1203. Initializes a new instance of the <see cref="T:ConstraintExpression"/>
  1204. class passing in a ConstraintBuilder, which may be pre-populated.
  1205. </summary>
  1206. <param name="builder">The builder.</param>
  1207. </member>
  1208. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)">
  1209. <summary>
  1210. Returns a new PropertyConstraintExpression, which will either
  1211. test for the existence of the named property on the object
  1212. being tested or apply any following constraint to that property.
  1213. </summary>
  1214. </member>
  1215. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)">
  1216. <summary>
  1217. Returns a new AttributeConstraint checking for the
  1218. presence of a particular attribute on an object.
  1219. </summary>
  1220. </member>
  1221. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1">
  1222. <summary>
  1223. Returns a new AttributeConstraint checking for the
  1224. presence of a particular attribute on an object.
  1225. </summary>
  1226. </member>
  1227. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.Constraint)">
  1228. <summary>
  1229. Returns the constraint provided as an argument - used to allow custom
  1230. custom constraints to easily participate in the syntax.
  1231. </summary>
  1232. </member>
  1233. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})">
  1234. <summary>
  1235. Returns the constraint provided as an argument - used to allow custom
  1236. custom constraints to easily participate in the syntax.
  1237. </summary>
  1238. </member>
  1239. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)">
  1240. <summary>
  1241. Returns a constraint that tests two items for equality
  1242. </summary>
  1243. </member>
  1244. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)">
  1245. <summary>
  1246. Returns a constraint that tests that two references are the same object
  1247. </summary>
  1248. </member>
  1249. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)">
  1250. <summary>
  1251. Returns a constraint that tests whether the
  1252. actual value is greater than the suppled argument
  1253. </summary>
  1254. </member>
  1255. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)">
  1256. <summary>
  1257. Returns a constraint that tests whether the
  1258. actual value is greater than or equal to the suppled argument
  1259. </summary>
  1260. </member>
  1261. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)">
  1262. <summary>
  1263. Returns a constraint that tests whether the
  1264. actual value is greater than or equal to the suppled argument
  1265. </summary>
  1266. </member>
  1267. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)">
  1268. <summary>
  1269. Returns a constraint that tests whether the
  1270. actual value is less than the suppled argument
  1271. </summary>
  1272. </member>
  1273. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)">
  1274. <summary>
  1275. Returns a constraint that tests whether the
  1276. actual value is less than or equal to the suppled argument
  1277. </summary>
  1278. </member>
  1279. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)">
  1280. <summary>
  1281. Returns a constraint that tests whether the
  1282. actual value is less than or equal to the suppled argument
  1283. </summary>
  1284. </member>
  1285. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)">
  1286. <summary>
  1287. Returns a constraint that tests whether the actual
  1288. value is of the exact type supplied as an argument.
  1289. </summary>
  1290. </member>
  1291. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1">
  1292. <summary>
  1293. Returns a constraint that tests whether the actual
  1294. value is of the exact type supplied as an argument.
  1295. </summary>
  1296. </member>
  1297. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)">
  1298. <summary>
  1299. Returns a constraint that tests whether the actual value
  1300. is of the type supplied as an argument or a derived type.
  1301. </summary>
  1302. </member>
  1303. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1">
  1304. <summary>
  1305. Returns a constraint that tests whether the actual value
  1306. is of the type supplied as an argument or a derived type.
  1307. </summary>
  1308. </member>
  1309. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)">
  1310. <summary>
  1311. Returns a constraint that tests whether the actual value
  1312. is of the type supplied as an argument or a derived type.
  1313. </summary>
  1314. </member>
  1315. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1">
  1316. <summary>
  1317. Returns a constraint that tests whether the actual value
  1318. is of the type supplied as an argument or a derived type.
  1319. </summary>
  1320. </member>
  1321. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)">
  1322. <summary>
  1323. Returns a constraint that tests whether the actual value
  1324. is assignable from the type supplied as an argument.
  1325. </summary>
  1326. </member>
  1327. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1">
  1328. <summary>
  1329. Returns a constraint that tests whether the actual value
  1330. is assignable from the type supplied as an argument.
  1331. </summary>
  1332. </member>
  1333. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)">
  1334. <summary>
  1335. Returns a constraint that tests whether the actual value
  1336. is assignable from the type supplied as an argument.
  1337. </summary>
  1338. </member>
  1339. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1">
  1340. <summary>
  1341. Returns a constraint that tests whether the actual value
  1342. is assignable from the type supplied as an argument.
  1343. </summary>
  1344. </member>
  1345. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)">
  1346. <summary>
  1347. Returns a constraint that tests whether the actual value
  1348. is a collection containing the same elements as the
  1349. collection supplied as an argument.
  1350. </summary>
  1351. </member>
  1352. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)">
  1353. <summary>
  1354. Returns a constraint that tests whether the actual value
  1355. is a subset of the collection supplied as an argument.
  1356. </summary>
  1357. </member>
  1358. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)">
  1359. <summary>
  1360. Returns a new CollectionContainsConstraint checking for the
  1361. presence of a particular object in the collection.
  1362. </summary>
  1363. </member>
  1364. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)">
  1365. <summary>
  1366. Returns a new CollectionContainsConstraint checking for the
  1367. presence of a particular object in the collection.
  1368. </summary>
  1369. </member>
  1370. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)">
  1371. <summary>
  1372. Returns a new ContainsConstraint. This constraint
  1373. will, in turn, make use of the appropriate second-level
  1374. constraint, depending on the type of the actual argument.
  1375. This overload is only used if the item sought is a string,
  1376. since any other type implies that we are looking for a
  1377. collection member.
  1378. </summary>
  1379. </member>
  1380. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)">
  1381. <summary>
  1382. Returns a constraint that succeeds if the actual
  1383. value contains the substring supplied as an argument.
  1384. </summary>
  1385. </member>
  1386. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)">
  1387. <summary>
  1388. Returns a constraint that succeeds if the actual
  1389. value contains the substring supplied as an argument.
  1390. </summary>
  1391. </member>
  1392. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)">
  1393. <summary>
  1394. Returns a constraint that succeeds if the actual
  1395. value starts with the substring supplied as an argument.
  1396. </summary>
  1397. </member>
  1398. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)">
  1399. <summary>
  1400. Returns a constraint that succeeds if the actual
  1401. value starts with the substring supplied as an argument.
  1402. </summary>
  1403. </member>
  1404. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)">
  1405. <summary>
  1406. Returns a constraint that succeeds if the actual
  1407. value ends with the substring supplied as an argument.
  1408. </summary>
  1409. </member>
  1410. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)">
  1411. <summary>
  1412. Returns a constraint that succeeds if the actual
  1413. value ends with the substring supplied as an argument.
  1414. </summary>
  1415. </member>
  1416. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)">
  1417. <summary>
  1418. Returns a constraint that succeeds if the actual
  1419. value matches the Regex pattern supplied as an argument.
  1420. </summary>
  1421. </member>
  1422. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)">
  1423. <summary>
  1424. Returns a constraint that succeeds if the actual
  1425. value matches the Regex pattern supplied as an argument.
  1426. </summary>
  1427. </member>
  1428. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)">
  1429. <summary>
  1430. Returns a constraint that tests whether the path provided
  1431. is the same as an expected path after canonicalization.
  1432. </summary>
  1433. </member>
  1434. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)">
  1435. <summary>
  1436. Returns a constraint that tests whether the path provided
  1437. is the same path or under an expected path after canonicalization.
  1438. </summary>
  1439. </member>
  1440. <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InRange(System.IComparable,System.IComparable)">
  1441. <summary>
  1442. Returns a constraint that tests whether the actual value falls
  1443. within a specified range.
  1444. </summary>
  1445. </member>
  1446. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Not">
  1447. <summary>
  1448. Returns a ConstraintExpression that negates any
  1449. following constraint.
  1450. </summary>
  1451. </member>
  1452. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.No">
  1453. <summary>
  1454. Returns a ConstraintExpression that negates any
  1455. following constraint.
  1456. </summary>
  1457. </member>
  1458. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.All">
  1459. <summary>
  1460. Returns a ConstraintExpression, which will apply
  1461. the following constraint to all members of a collection,
  1462. succeeding if all of them succeed.
  1463. </summary>
  1464. </member>
  1465. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Some">
  1466. <summary>
  1467. Returns a ConstraintExpression, which will apply
  1468. the following constraint to all members of a collection,
  1469. succeeding if at least one of them succeeds.
  1470. </summary>
  1471. </member>
  1472. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.None">
  1473. <summary>
  1474. Returns a ConstraintExpression, which will apply
  1475. the following constraint to all members of a collection,
  1476. succeeding if all of them fail.
  1477. </summary>
  1478. </member>
  1479. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Length">
  1480. <summary>
  1481. Returns a new ConstraintExpression, which will apply the following
  1482. constraint to the Length property of the object being tested.
  1483. </summary>
  1484. </member>
  1485. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Count">
  1486. <summary>
  1487. Returns a new ConstraintExpression, which will apply the following
  1488. constraint to the Count property of the object being tested.
  1489. </summary>
  1490. </member>
  1491. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Message">
  1492. <summary>
  1493. Returns a new ConstraintExpression, which will apply the following
  1494. constraint to the Message property of the object being tested.
  1495. </summary>
  1496. </member>
  1497. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.InnerException">
  1498. <summary>
  1499. Returns a new ConstraintExpression, which will apply the following
  1500. constraint to the InnerException property of the object being tested.
  1501. </summary>
  1502. </member>
  1503. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.With">
  1504. <summary>
  1505. With is currently a NOP - reserved for future use.
  1506. </summary>
  1507. </member>
  1508. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Null">
  1509. <summary>
  1510. Returns a constraint that tests for null
  1511. </summary>
  1512. </member>
  1513. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.True">
  1514. <summary>
  1515. Returns a constraint that tests for True
  1516. </summary>
  1517. </member>
  1518. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.False">
  1519. <summary>
  1520. Returns a constraint that tests for False
  1521. </summary>
  1522. </member>
  1523. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.NaN">
  1524. <summary>
  1525. Returns a constraint that tests for NaN
  1526. </summary>
  1527. </member>
  1528. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Empty">
  1529. <summary>
  1530. Returns a constraint that tests for empty
  1531. </summary>
  1532. </member>
  1533. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Unique">
  1534. <summary>
  1535. Returns a constraint that tests whether a collection
  1536. contains all unique items.
  1537. </summary>
  1538. </member>
  1539. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable">
  1540. <summary>
  1541. Returns a constraint that tests whether an object graph is serializable in binary format.
  1542. </summary>
  1543. </member>
  1544. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable">
  1545. <summary>
  1546. Returns a constraint that tests whether an object graph is serializable in xml format.
  1547. </summary>
  1548. </member>
  1549. <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Ordered">
  1550. <summary>
  1551. Returns a constraint that tests whether a collection is ordered
  1552. </summary>
  1553. </member>
  1554. <member name="T:NUnit.Framework.Constraints.RangeConstraint">
  1555. <summary>
  1556. RangeConstraint tests whethe two values are within a
  1557. specified range.
  1558. </summary>
  1559. </member>
  1560. <member name="M:NUnit.Framework.Constraints.RangeConstraint.#ctor(System.IComparable,System.IComparable)">
  1561. <summary>
  1562. Initializes a new instance of the <see cref="T:RangeConstraint"/> class.
  1563. </summary>
  1564. <param name="from">From.</param>
  1565. <param name="to">To.</param>
  1566. </member>
  1567. <member name="M:NUnit.Framework.Constraints.RangeConstraint.Matches(System.Object)">
  1568. <summary>
  1569. Test whether the constraint is satisfied by a given value
  1570. </summary>
  1571. <param name="actual">The value to be tested</param>
  1572. <returns>True for success, false for failure</returns>
  1573. </member>
  1574. <member name="M:NUnit.Framework.Constraints.RangeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1575. <summary>
  1576. Write the constraint description to a MessageWriter
  1577. </summary>
  1578. <param name="writer">The writer on which the description is displayed</param>
  1579. </member>
  1580. <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using(System.Collections.IComparer)">
  1581. <summary>
  1582. Modifies the constraint to use an IComparer and returns self.
  1583. </summary>
  1584. </member>
  1585. <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  1586. <summary>
  1587. Modifies the constraint to use an IComparer&lt;T&gt; and returns self.
  1588. </summary>
  1589. </member>
  1590. <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using``1(System.Comparison{``0})">
  1591. <summary>
  1592. Modifies the constraint to use a Comparison&lt;T&gt; and returns self.
  1593. </summary>
  1594. </member>
  1595. <member name="T:NUnit.Framework.Constraints.EqualConstraint">
  1596. <summary>
  1597. EqualConstraint is able to compare an actual value with the
  1598. expected value provided in its constructor. Two objects are
  1599. considered equal if both are null, or if both have the same
  1600. value. NUnit has special semantics for some object types.
  1601. </summary>
  1602. </member>
  1603. <member name="F:NUnit.Framework.Constraints.EqualConstraint.clipStrings">
  1604. <summary>
  1605. If true, strings in error messages will be clipped
  1606. </summary>
  1607. </member>
  1608. <member name="F:NUnit.Framework.Constraints.EqualConstraint.comparer">
  1609. <summary>
  1610. NUnitEqualityComparer used to test equality.
  1611. </summary>
  1612. </member>
  1613. <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
  1614. <summary>
  1615. Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
  1616. </summary>
  1617. <param name="expected">The expected value.</param>
  1618. </member>
  1619. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)">
  1620. <summary>
  1621. Flag the constraint to use a tolerance when determining equality.
  1622. </summary>
  1623. <param name="amount">Tolerance value to be used</param>
  1624. <returns>Self.</returns>
  1625. </member>
  1626. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)">
  1627. <summary>
  1628. Flag the constraint to use the supplied IComparer object.
  1629. </summary>
  1630. <param name="comparer">The IComparer object to use.</param>
  1631. <returns>Self.</returns>
  1632. </member>
  1633. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)">
  1634. <summary>
  1635. Flag the constraint to use the supplied IComparer object.
  1636. </summary>
  1637. <param name="comparer">The IComparer object to use.</param>
  1638. <returns>Self.</returns>
  1639. </member>
  1640. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  1641. <summary>
  1642. Flag the constraint to use the supplied IComparer object.
  1643. </summary>
  1644. <param name="comparer">The IComparer object to use.</param>
  1645. <returns>Self.</returns>
  1646. </member>
  1647. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})">
  1648. <summary>
  1649. Flag the constraint to use the supplied Comparison object.
  1650. </summary>
  1651. <param name="comparer">The IComparer object to use.</param>
  1652. <returns>Self.</returns>
  1653. </member>
  1654. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)">
  1655. <summary>
  1656. Flag the constraint to use the supplied IEqualityComparer object.
  1657. </summary>
  1658. <param name="comparer">The IComparer object to use.</param>
  1659. <returns>Self.</returns>
  1660. </member>
  1661. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
  1662. <summary>
  1663. Flag the constraint to use the supplied IEqualityComparer object.
  1664. </summary>
  1665. <param name="comparer">The IComparer object to use.</param>
  1666. <returns>Self.</returns>
  1667. </member>
  1668. <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
  1669. <summary>
  1670. Test whether the constraint is satisfied by a given value
  1671. </summary>
  1672. <param name="actual">The value to be tested</param>
  1673. <returns>True for success, false for failure</returns>
  1674. </member>
  1675. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
  1676. <summary>
  1677. Write a failure message. Overridden to provide custom
  1678. failure messages for EqualConstraint.
  1679. </summary>
  1680. <param name="writer">The MessageWriter to write to</param>
  1681. </member>
  1682. <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1683. <summary>
  1684. Write description of this constraint
  1685. </summary>
  1686. <param name="writer">The MessageWriter to write to</param>
  1687. </member>
  1688. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  1689. <summary>
  1690. Display the failure information for two collections that did not match.
  1691. </summary>
  1692. <param name="writer">The MessageWriter on which to display</param>
  1693. <param name="expected">The expected collection.</param>
  1694. <param name="actual">The actual collection</param>
  1695. <param name="depth">The depth of this failure in a set of nested collections</param>
  1696. </member>
  1697. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
  1698. <summary>
  1699. Displays a single line showing the types and sizes of the expected
  1700. and actual collections or arrays. If both are identical, the value is
  1701. only shown once.
  1702. </summary>
  1703. <param name="writer">The MessageWriter on which to display</param>
  1704. <param name="expected">The expected collection or array</param>
  1705. <param name="actual">The actual collection or array</param>
  1706. <param name="indent">The indentation level for the message line</param>
  1707. </member>
  1708. <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32,System.Int32)">
  1709. <summary>
  1710. Displays a single line showing the point in the expected and actual
  1711. arrays at which the comparison failed. If the arrays have different
  1712. structures or dimensions, both values are shown.
  1713. </summary>
  1714. <param name="writer">The MessageWriter on which to display</param>
  1715. <param name="expected">The expected array</param>
  1716. <param name="actual">The actual array</param>
  1717. <param name="failurePoint">Index of the failure point in the underlying collections</param>
  1718. <param name="indent">The indentation level for the message line</param>
  1719. </member>
  1720. <member name="P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase">
  1721. <summary>
  1722. Flag the constraint to ignore case and return self.
  1723. </summary>
  1724. </member>
  1725. <member name="P:NUnit.Framework.Constraints.EqualConstraint.NoClip">
  1726. <summary>
  1727. Flag the constraint to suppress string clipping
  1728. and return self.
  1729. </summary>
  1730. </member>
  1731. <member name="P:NUnit.Framework.Constraints.EqualConstraint.AsCollection">
  1732. <summary>
  1733. Flag the constraint to compare arrays as collections
  1734. and return self.
  1735. </summary>
  1736. </member>
  1737. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ulps">
  1738. <summary>
  1739. Switches the .Within() modifier to interpret its tolerance as
  1740. a distance in representable values (see remarks).
  1741. </summary>
  1742. <returns>Self.</returns>
  1743. <remarks>
  1744. Ulp stands for "unit in the last place" and describes the minimum
  1745. amount a given value can change. For any integers, an ulp is 1 whole
  1746. digit. For floating point values, the accuracy of which is better
  1747. for smaller numbers and worse for larger numbers, an ulp depends
  1748. on the size of the number. Using ulps for comparison of floating
  1749. point results instead of fixed tolerances is safer because it will
  1750. automatically compensate for the added inaccuracy of larger numbers.
  1751. </remarks>
  1752. </member>
  1753. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Percent">
  1754. <summary>
  1755. Switches the .Within() modifier to interpret its tolerance as
  1756. a percentage that the actual values is allowed to deviate from
  1757. the expected value.
  1758. </summary>
  1759. <returns>Self</returns>
  1760. </member>
  1761. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Days">
  1762. <summary>
  1763. Causes the tolerance to be interpreted as a TimeSpan in days.
  1764. </summary>
  1765. <returns>Self</returns>
  1766. </member>
  1767. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Hours">
  1768. <summary>
  1769. Causes the tolerance to be interpreted as a TimeSpan in hours.
  1770. </summary>
  1771. <returns>Self</returns>
  1772. </member>
  1773. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Minutes">
  1774. <summary>
  1775. Causes the tolerance to be interpreted as a TimeSpan in minutes.
  1776. </summary>
  1777. <returns>Self</returns>
  1778. </member>
  1779. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Seconds">
  1780. <summary>
  1781. Causes the tolerance to be interpreted as a TimeSpan in seconds.
  1782. </summary>
  1783. <returns>Self</returns>
  1784. </member>
  1785. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds">
  1786. <summary>
  1787. Causes the tolerance to be interpreted as a TimeSpan in milliseconds.
  1788. </summary>
  1789. <returns>Self</returns>
  1790. </member>
  1791. <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ticks">
  1792. <summary>
  1793. Causes the tolerance to be interpreted as a TimeSpan in clock ticks.
  1794. </summary>
  1795. <returns>Self</returns>
  1796. </member>
  1797. <member name="T:NUnit.Framework.Constraints.NotConstraint">
  1798. <summary>
  1799. NotConstraint negates the effect of some other constraint
  1800. </summary>
  1801. </member>
  1802. <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  1803. <summary>
  1804. Initializes a new instance of the <see cref="T:NotConstraint"/> class.
  1805. </summary>
  1806. <param name="baseConstraint">The base constraint to be negated.</param>
  1807. </member>
  1808. <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
  1809. <summary>
  1810. Test whether the constraint is satisfied by a given value
  1811. </summary>
  1812. <param name="actual">The value to be tested</param>
  1813. <returns>True for if the base constraint fails, false if it succeeds</returns>
  1814. </member>
  1815. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1816. <summary>
  1817. Write the constraint description to a MessageWriter
  1818. </summary>
  1819. <param name="writer">The writer on which the description is displayed</param>
  1820. </member>
  1821. <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  1822. <summary>
  1823. Write the actual value for a failing constraint test to a MessageWriter.
  1824. </summary>
  1825. <param name="writer">The writer on which the actual value is displayed</param>
  1826. </member>
  1827. <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
  1828. <summary>
  1829. AllItemsConstraint applies another constraint to each
  1830. item in a collection, succeeding if they all succeed.
  1831. </summary>
  1832. </member>
  1833. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  1834. <summary>
  1835. Construct an AllItemsConstraint on top of an existing constraint
  1836. </summary>
  1837. <param name="itemConstraint"></param>
  1838. </member>
  1839. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
  1840. <summary>
  1841. Apply the item constraint to each item in the collection,
  1842. failing if any item fails.
  1843. </summary>
  1844. <param name="actual"></param>
  1845. <returns></returns>
  1846. </member>
  1847. <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1848. <summary>
  1849. Write a description of this constraint to a MessageWriter
  1850. </summary>
  1851. <param name="writer"></param>
  1852. </member>
  1853. <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
  1854. <summary>
  1855. SomeItemsConstraint applies another constraint to each
  1856. item in a collection, succeeding if any of them succeeds.
  1857. </summary>
  1858. </member>
  1859. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  1860. <summary>
  1861. Construct a SomeItemsConstraint on top of an existing constraint
  1862. </summary>
  1863. <param name="itemConstraint"></param>
  1864. </member>
  1865. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
  1866. <summary>
  1867. Apply the item constraint to each item in the collection,
  1868. succeeding if any item succeeds.
  1869. </summary>
  1870. <param name="actual"></param>
  1871. <returns></returns>
  1872. </member>
  1873. <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1874. <summary>
  1875. Write a description of this constraint to a MessageWriter
  1876. </summary>
  1877. <param name="writer"></param>
  1878. </member>
  1879. <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
  1880. <summary>
  1881. NoItemConstraint applies another constraint to each
  1882. item in a collection, failing if any of them succeeds.
  1883. </summary>
  1884. </member>
  1885. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
  1886. <summary>
  1887. Construct a SomeItemsConstraint on top of an existing constraint
  1888. </summary>
  1889. <param name="itemConstraint"></param>
  1890. </member>
  1891. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
  1892. <summary>
  1893. Apply the item constraint to each item in the collection,
  1894. failing if any item fails.
  1895. </summary>
  1896. <param name="actual"></param>
  1897. <returns></returns>
  1898. </member>
  1899. <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1900. <summary>
  1901. Write a description of this constraint to a MessageWriter
  1902. </summary>
  1903. <param name="writer"></param>
  1904. </member>
  1905. <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
  1906. <summary>
  1907. ContainsConstraint tests a whether a string contains a substring
  1908. or a collection contains an object. It postpones the decision of
  1909. which test to use until the type of the actual argument is known.
  1910. This allows testing whether a string is contained in a collection
  1911. or as a substring of another string using the same syntax.
  1912. </summary>
  1913. </member>
  1914. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
  1915. <summary>
  1916. Initializes a new instance of the <see cref="T:ContainsConstraint"/> class.
  1917. </summary>
  1918. <param name="expected">The expected.</param>
  1919. </member>
  1920. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
  1921. <summary>
  1922. Test whether the constraint is satisfied by a given value
  1923. </summary>
  1924. <param name="actual">The value to be tested</param>
  1925. <returns>True for success, false for failure</returns>
  1926. </member>
  1927. <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  1928. <summary>
  1929. Write the constraint description to a MessageWriter
  1930. </summary>
  1931. <param name="writer">The writer on which the description is displayed</param>
  1932. </member>
  1933. <member name="P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase">
  1934. <summary>
  1935. Flag the constraint to ignore case and return self.
  1936. </summary>
  1937. </member>
  1938. <member name="T:NUnit.Framework.Constraints.MsgUtils">
  1939. <summary>
  1940. Static methods used in creating messages
  1941. </summary>
  1942. </member>
  1943. <member name="F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS">
  1944. <summary>
  1945. Static string used when strings are clipped
  1946. </summary>
  1947. </member>
  1948. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)">
  1949. <summary>
  1950. Returns the representation of a type as used in NUnitLite.
  1951. This is the same as Type.ToString() except for arrays,
  1952. which are displayed with their declared sizes.
  1953. </summary>
  1954. <param name="obj"></param>
  1955. <returns></returns>
  1956. </member>
  1957. <member name="M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)">
  1958. <summary>
  1959. Converts any control characters in a string
  1960. to their escaped representation.
  1961. </summary>
  1962. <param name="s">The string to be converted</param>
  1963. <returns>The converted string</returns>
  1964. </member>
  1965. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
  1966. <summary>
  1967. Return the a string representation for a set of indices into an array
  1968. </summary>
  1969. <param name="indices">Array of indices for which a string is needed</param>
  1970. </member>
  1971. <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
  1972. <summary>
  1973. Get an array of indices representing the point in a collection or
  1974. array corresponding to a single int index into the collection.
  1975. </summary>
  1976. <param name="collection">The collection to which the indices apply</param>
  1977. <param name="index">Index in the collection</param>
  1978. <returns>Array of indices</returns>
  1979. </member>
  1980. <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
  1981. <summary>
  1982. Clip a string to a given length, starting at a particular offset, returning the clipped
  1983. string with ellipses representing the removed parts
  1984. </summary>
  1985. <param name="s">The string to be clipped</param>
  1986. <param name="maxStringLength">The maximum permitted length of the result string</param>
  1987. <param name="clipStart">The point at which to start clipping</param>
  1988. <returns>The clipped string</returns>
  1989. </member>
  1990. <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
  1991. <summary>
  1992. Clip the expected and actual strings in a coordinated fashion,
  1993. so that they may be displayed together.
  1994. </summary>
  1995. <param name="expected"></param>
  1996. <param name="actual"></param>
  1997. <param name="maxDisplayLength"></param>
  1998. <param name="mismatch"></param>
  1999. </member>
  2000. <member name="M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
  2001. <summary>
  2002. Shows the position two strings start to differ. Comparison
  2003. starts at the start index.
  2004. </summary>
  2005. <param name="expected">The expected string</param>
  2006. <param name="actual">The actual string</param>
  2007. <param name="istart">The index in the strings at which comparison should start</param>
  2008. <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
  2009. <returns>-1 if no mismatch found, or the index where mismatch found</returns>
  2010. </member>
  2011. <member name="T:NUnit.Framework.Constraints.BasicConstraint">
  2012. <summary>
  2013. BasicConstraint is the abstract base for constraints that
  2014. perform a simple comparison to a constant value.
  2015. </summary>
  2016. </member>
  2017. <member name="M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)">
  2018. <summary>
  2019. Initializes a new instance of the <see cref="T:BasicConstraint"/> class.
  2020. </summary>
  2021. <param name="expected">The expected.</param>
  2022. <param name="description">The description.</param>
  2023. </member>
  2024. <member name="M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)">
  2025. <summary>
  2026. Test whether the constraint is satisfied by a given value
  2027. </summary>
  2028. <param name="actual">The value to be tested</param>
  2029. <returns>True for success, false for failure</returns>
  2030. </member>
  2031. <member name="M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2032. <summary>
  2033. Write the constraint description to a MessageWriter
  2034. </summary>
  2035. <param name="writer">The writer on which the description is displayed</param>
  2036. </member>
  2037. <member name="T:NUnit.Framework.Constraints.NullConstraint">
  2038. <summary>
  2039. NullConstraint tests that the actual value is null
  2040. </summary>
  2041. </member>
  2042. <member name="M:NUnit.Framework.Constraints.NullConstraint.#ctor">
  2043. <summary>
  2044. Initializes a new instance of the <see cref="T:NullConstraint"/> class.
  2045. </summary>
  2046. </member>
  2047. <member name="T:NUnit.Framework.Constraints.TrueConstraint">
  2048. <summary>
  2049. TrueConstraint tests that the actual value is true
  2050. </summary>
  2051. </member>
  2052. <member name="M:NUnit.Framework.Constraints.TrueConstraint.#ctor">
  2053. <summary>
  2054. Initializes a new instance of the <see cref="T:TrueConstraint"/> class.
  2055. </summary>
  2056. </member>
  2057. <member name="T:NUnit.Framework.Constraints.FalseConstraint">
  2058. <summary>
  2059. FalseConstraint tests that the actual value is false
  2060. </summary>
  2061. </member>
  2062. <member name="M:NUnit.Framework.Constraints.FalseConstraint.#ctor">
  2063. <summary>
  2064. Initializes a new instance of the <see cref="T:FalseConstraint"/> class.
  2065. </summary>
  2066. </member>
  2067. <member name="T:NUnit.Framework.Constraints.NaNConstraint">
  2068. <summary>
  2069. NaNConstraint tests that the actual value is a double or float NaN
  2070. </summary>
  2071. </member>
  2072. <member name="M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)">
  2073. <summary>
  2074. Test that the actual value is an NaN
  2075. </summary>
  2076. <param name="actual"></param>
  2077. <returns></returns>
  2078. </member>
  2079. <member name="M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2080. <summary>
  2081. Write the constraint description to a specified writer
  2082. </summary>
  2083. <param name="writer"></param>
  2084. </member>
  2085. <member name="T:NUnit.Framework.Constraints.MessageWriter">
  2086. <summary>
  2087. MessageWriter is the abstract base for classes that write
  2088. constraint descriptions and messages in some form. The
  2089. class has separate methods for writing various components
  2090. of a message, allowing implementations to tailor the
  2091. presentation as needed.
  2092. </summary>
  2093. </member>
  2094. <member name="M:NUnit.Framework.Constraints.MessageWriter.#ctor">
  2095. <summary>
  2096. Construct a MessageWriter given a culture
  2097. </summary>
  2098. </member>
  2099. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])">
  2100. <summary>
  2101. Method to write single line message with optional args, usually
  2102. written to precede the general failure message.
  2103. </summary>
  2104. <param name="message">The message to be written</param>
  2105. <param name="args">Any arguments used in formatting the message</param>
  2106. </member>
  2107. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  2108. <summary>
  2109. Method to write single line message with optional args, usually
  2110. written to precede the general failure message, at a givel
  2111. indentation level.
  2112. </summary>
  2113. <param name="level">The indentation level of the message</param>
  2114. <param name="message">The message to be written</param>
  2115. <param name="args">Any arguments used in formatting the message</param>
  2116. </member>
  2117. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  2118. <summary>
  2119. Display Expected and Actual lines for a constraint. This
  2120. is called by MessageWriter's default implementation of
  2121. WriteMessageTo and provides the generic two-line display.
  2122. </summary>
  2123. <param name="constraint">The constraint that failed</param>
  2124. </member>
  2125. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)">
  2126. <summary>
  2127. Display Expected and Actual lines for given values. This
  2128. method may be called by constraints that need more control over
  2129. the display of actual and expected values than is provided
  2130. by the default implementation.
  2131. </summary>
  2132. <param name="expected">The expected value</param>
  2133. <param name="actual">The actual value causing the failure</param>
  2134. </member>
  2135. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
  2136. <summary>
  2137. Display Expected and Actual lines for given values, including
  2138. a tolerance value on the Expected line.
  2139. </summary>
  2140. <param name="expected">The expected value</param>
  2141. <param name="actual">The actual value causing the failure</param>
  2142. <param name="tolerance">The tolerance within which the test was made</param>
  2143. </member>
  2144. <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  2145. <summary>
  2146. Display the expected and actual string values on separate lines.
  2147. If the mismatch parameter is >=0, an additional line is displayed
  2148. line containing a caret that points to the mismatch point.
  2149. </summary>
  2150. <param name="expected">The expected string value</param>
  2151. <param name="actual">The actual string value</param>
  2152. <param name="mismatch">The point at which the strings don't match or -1</param>
  2153. <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
  2154. <param name="clipping">If true, the strings should be clipped to fit the line</param>
  2155. </member>
  2156. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)">
  2157. <summary>
  2158. Writes the text for a connector.
  2159. </summary>
  2160. <param name="connector">The connector.</param>
  2161. </member>
  2162. <member name="M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)">
  2163. <summary>
  2164. Writes the text for a predicate.
  2165. </summary>
  2166. <param name="predicate">The predicate.</param>
  2167. </member>
  2168. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)">
  2169. <summary>
  2170. Writes the text for an expected value.
  2171. </summary>
  2172. <param name="expected">The expected value.</param>
  2173. </member>
  2174. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)">
  2175. <summary>
  2176. Writes the text for a modifier
  2177. </summary>
  2178. <param name="modifier">The modifier.</param>
  2179. </member>
  2180. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)">
  2181. <summary>
  2182. Writes the text for an actual value.
  2183. </summary>
  2184. <param name="actual">The actual value.</param>
  2185. </member>
  2186. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)">
  2187. <summary>
  2188. Writes the text for a generalized value.
  2189. </summary>
  2190. <param name="val">The value.</param>
  2191. </member>
  2192. <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
  2193. <summary>
  2194. Writes the text for a collection value,
  2195. starting at a particular point, to a max length
  2196. </summary>
  2197. <param name="collection">The collection containing elements to write.</param>
  2198. <param name="start">The starting point of the elements to write</param>
  2199. <param name="max">The maximum number of elements to write</param>
  2200. </member>
  2201. <member name="P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength">
  2202. <summary>
  2203. Abstract method to get the max line length
  2204. </summary>
  2205. </member>
  2206. <member name="T:NUnit.Framework.Constraints.ToleranceMode">
  2207. <summary>
  2208. Modes in which the tolerance value for a comparison can
  2209. be interpreted.
  2210. </summary>
  2211. </member>
  2212. <member name="F:NUnit.Framework.Constraints.ToleranceMode.None">
  2213. <summary>
  2214. The tolerance was created with a value, without specifying
  2215. how the value would be used. This is used to prevent setting
  2216. the mode more than once and is generally changed to Linear
  2217. upon execution of the test.
  2218. </summary>
  2219. </member>
  2220. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Linear">
  2221. <summary>
  2222. The tolerance is used as a numeric range within which
  2223. two compared values are considered to be equal.
  2224. </summary>
  2225. </member>
  2226. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Percent">
  2227. <summary>
  2228. Interprets the tolerance as the percentage by which
  2229. the two compared values my deviate from each other.
  2230. </summary>
  2231. </member>
  2232. <member name="F:NUnit.Framework.Constraints.ToleranceMode.Ulps">
  2233. <summary>
  2234. Compares two values based in their distance in
  2235. representable numbers.
  2236. </summary>
  2237. </member>
  2238. <member name="T:NUnit.Framework.Constraints.Tolerance">
  2239. <summary>
  2240. The Tolerance class generalizes the notion of a tolerance
  2241. within which an equality test succeeds. Normally, it is
  2242. used with numeric types, but it can be used with any
  2243. type that supports taking a difference between two
  2244. objects and comparing that difference to a value.
  2245. </summary>
  2246. </member>
  2247. <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)">
  2248. <summary>
  2249. Constructs a linear tolerance of a specdified amount
  2250. </summary>
  2251. </member>
  2252. <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)">
  2253. <summary>
  2254. Constructs a tolerance given an amount and ToleranceMode
  2255. </summary>
  2256. </member>
  2257. <member name="M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric">
  2258. <summary>
  2259. Tests that the current Tolerance is linear with a
  2260. numeric value, throwing an exception if it is not.
  2261. </summary>
  2262. </member>
  2263. <member name="P:NUnit.Framework.Constraints.Tolerance.Empty">
  2264. <summary>
  2265. Returns an empty Tolerance object, equivalent to
  2266. specifying an exact match.
  2267. </summary>
  2268. </member>
  2269. <member name="P:NUnit.Framework.Constraints.Tolerance.Mode">
  2270. <summary>
  2271. Gets the ToleranceMode for the current Tolerance
  2272. </summary>
  2273. </member>
  2274. <member name="P:NUnit.Framework.Constraints.Tolerance.Value">
  2275. <summary>
  2276. Gets the value of the current Tolerance instance.
  2277. </summary>
  2278. </member>
  2279. <member name="P:NUnit.Framework.Constraints.Tolerance.Percent">
  2280. <summary>
  2281. Returns a new tolerance, using the current amount as a percentage.
  2282. </summary>
  2283. </member>
  2284. <member name="P:NUnit.Framework.Constraints.Tolerance.Ulps">
  2285. <summary>
  2286. Returns a new tolerance, using the current amount in Ulps.
  2287. </summary>
  2288. </member>
  2289. <member name="P:NUnit.Framework.Constraints.Tolerance.Days">
  2290. <summary>
  2291. Returns a new tolerance with a TimeSpan as the amount, using
  2292. the current amount as a number of days.
  2293. </summary>
  2294. </member>
  2295. <member name="P:NUnit.Framework.Constraints.Tolerance.Hours">
  2296. <summary>
  2297. Returns a new tolerance with a TimeSpan as the amount, using
  2298. the current amount as a number of hours.
  2299. </summary>
  2300. </member>
  2301. <member name="P:NUnit.Framework.Constraints.Tolerance.Minutes">
  2302. <summary>
  2303. Returns a new tolerance with a TimeSpan as the amount, using
  2304. the current amount as a number of minutes.
  2305. </summary>
  2306. </member>
  2307. <member name="P:NUnit.Framework.Constraints.Tolerance.Seconds">
  2308. <summary>
  2309. Returns a new tolerance with a TimeSpan as the amount, using
  2310. the current amount as a number of seconds.
  2311. </summary>
  2312. </member>
  2313. <member name="P:NUnit.Framework.Constraints.Tolerance.Milliseconds">
  2314. <summary>
  2315. Returns a new tolerance with a TimeSpan as the amount, using
  2316. the current amount as a number of milliseconds.
  2317. </summary>
  2318. </member>
  2319. <member name="P:NUnit.Framework.Constraints.Tolerance.Ticks">
  2320. <summary>
  2321. Returns a new tolerance with a TimeSpan as the amount, using
  2322. the current amount as a number of clock ticks.
  2323. </summary>
  2324. </member>
  2325. <member name="P:NUnit.Framework.Constraints.Tolerance.IsEmpty">
  2326. <summary>
  2327. Returns true if the current tolerance is empty.
  2328. </summary>
  2329. </member>
  2330. <member name="T:NUnit.Framework.Constraints.Numerics">
  2331. <summary>
  2332. The Numerics class contains common operations on numeric values.
  2333. </summary>
  2334. </member>
  2335. <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
  2336. <summary>
  2337. Checks the type of the object, returning true if
  2338. the object is a numeric type.
  2339. </summary>
  2340. <param name="obj">The object to check</param>
  2341. <returns>true if the object is a numeric type</returns>
  2342. </member>
  2343. <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
  2344. <summary>
  2345. Checks the type of the object, returning true if
  2346. the object is a floating point numeric type.
  2347. </summary>
  2348. <param name="obj">The object to check</param>
  2349. <returns>true if the object is a floating point numeric type</returns>
  2350. </member>
  2351. <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
  2352. <summary>
  2353. Checks the type of the object, returning true if
  2354. the object is a fixed point numeric type.
  2355. </summary>
  2356. <param name="obj">The object to check</param>
  2357. <returns>true if the object is a fixed point numeric type</returns>
  2358. </member>
  2359. <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
  2360. <summary>
  2361. Test two numeric values for equality, performing the usual numeric
  2362. conversions and using a provided or default tolerance. If the tolerance
  2363. provided is Empty, this method may set it to a default tolerance.
  2364. </summary>
  2365. <param name="expected">The expected value</param>
  2366. <param name="actual">The actual value</param>
  2367. <param name="tolerance">A reference to the tolerance in effect</param>
  2368. <returns>True if the values are equal</returns>
  2369. </member>
  2370. <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)">
  2371. <summary>
  2372. Compare two numeric values, performing the usual numeric conversions.
  2373. </summary>
  2374. <param name="expected">The expected value</param>
  2375. <param name="actual">The actual value</param>
  2376. <returns>The relationship of the values to each other</returns>
  2377. </member>
  2378. <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
  2379. <summary>
  2380. EmptyConstraint tests a whether a string or collection is empty,
  2381. postponing the decision about which test is applied until the
  2382. type of the actual argument is known.
  2383. </summary>
  2384. </member>
  2385. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
  2386. <summary>
  2387. Test whether the constraint is satisfied by a given value
  2388. </summary>
  2389. <param name="actual">The value to be tested</param>
  2390. <returns>True for success, false for failure</returns>
  2391. </member>
  2392. <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2393. <summary>
  2394. Write the constraint description to a MessageWriter
  2395. </summary>
  2396. <param name="writer">The writer on which the description is displayed</param>
  2397. </member>
  2398. <member name="T:NUnit.Framework.Constraints.StringConstraint">
  2399. <summary>
  2400. StringConstraint is the abstract base for constraints
  2401. that operate on strings. It supports the IgnoreCase
  2402. modifier for string operations.
  2403. </summary>
  2404. </member>
  2405. <member name="F:NUnit.Framework.Constraints.StringConstraint.expected">
  2406. <summary>
  2407. The expected value
  2408. </summary>
  2409. </member>
  2410. <member name="F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive">
  2411. <summary>
  2412. Indicates whether tests should be case-insensitive
  2413. </summary>
  2414. </member>
  2415. <member name="M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)">
  2416. <summary>
  2417. Constructs a StringConstraint given an expected value
  2418. </summary>
  2419. <param name="expected">The expected value</param>
  2420. </member>
  2421. <member name="P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase">
  2422. <summary>
  2423. Modify the constraint to ignore case in matching.
  2424. </summary>
  2425. </member>
  2426. <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
  2427. <summary>
  2428. EmptyStringConstraint tests whether a string is empty.
  2429. </summary>
  2430. </member>
  2431. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
  2432. <summary>
  2433. Test whether the constraint is satisfied by a given value
  2434. </summary>
  2435. <param name="actual">The value to be tested</param>
  2436. <returns>True for success, false for failure</returns>
  2437. </member>
  2438. <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2439. <summary>
  2440. Write the constraint description to a MessageWriter
  2441. </summary>
  2442. <param name="writer">The writer on which the description is displayed</param>
  2443. </member>
  2444. <member name="T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint">
  2445. <summary>
  2446. NullEmptyStringConstraint tests whether a string is either null or empty.
  2447. </summary>
  2448. </member>
  2449. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor">
  2450. <summary>
  2451. Constructs a new NullOrEmptyStringConstraint
  2452. </summary>
  2453. </member>
  2454. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)">
  2455. <summary>
  2456. Test whether the constraint is satisfied by a given value
  2457. </summary>
  2458. <param name="actual">The value to be tested</param>
  2459. <returns>True for success, false for failure</returns>
  2460. </member>
  2461. <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2462. <summary>
  2463. Write the constraint description to a MessageWriter
  2464. </summary>
  2465. <param name="writer">The writer on which the description is displayed</param>
  2466. </member>
  2467. <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
  2468. <summary>
  2469. SubstringConstraint can test whether a string contains
  2470. the expected substring.
  2471. </summary>
  2472. </member>
  2473. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
  2474. <summary>
  2475. Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
  2476. </summary>
  2477. <param name="expected">The expected.</param>
  2478. </member>
  2479. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)">
  2480. <summary>
  2481. Test whether the constraint is satisfied by a given value
  2482. </summary>
  2483. <param name="actual">The value to be tested</param>
  2484. <returns>True for success, false for failure</returns>
  2485. </member>
  2486. <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2487. <summary>
  2488. Write the constraint description to a MessageWriter
  2489. </summary>
  2490. <param name="writer">The writer on which the description is displayed</param>
  2491. </member>
  2492. <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
  2493. <summary>
  2494. StartsWithConstraint can test whether a string starts
  2495. with an expected substring.
  2496. </summary>
  2497. </member>
  2498. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
  2499. <summary>
  2500. Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
  2501. </summary>
  2502. <param name="expected">The expected string</param>
  2503. </member>
  2504. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)">
  2505. <summary>
  2506. Test whether the constraint is matched by the actual value.
  2507. This is a template method, which calls the IsMatch method
  2508. of the derived class.
  2509. </summary>
  2510. <param name="actual"></param>
  2511. <returns></returns>
  2512. </member>
  2513. <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2514. <summary>
  2515. Write the constraint description to a MessageWriter
  2516. </summary>
  2517. <param name="writer">The writer on which the description is displayed</param>
  2518. </member>
  2519. <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
  2520. <summary>
  2521. EndsWithConstraint can test whether a string ends
  2522. with an expected substring.
  2523. </summary>
  2524. </member>
  2525. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
  2526. <summary>
  2527. Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
  2528. </summary>
  2529. <param name="expected">The expected string</param>
  2530. </member>
  2531. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)">
  2532. <summary>
  2533. Test whether the constraint is matched by the actual value.
  2534. This is a template method, which calls the IsMatch method
  2535. of the derived class.
  2536. </summary>
  2537. <param name="actual"></param>
  2538. <returns></returns>
  2539. </member>
  2540. <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2541. <summary>
  2542. Write the constraint description to a MessageWriter
  2543. </summary>
  2544. <param name="writer">The writer on which the description is displayed</param>
  2545. </member>
  2546. <member name="T:NUnit.Framework.Constraints.RegexConstraint">
  2547. <summary>
  2548. RegexConstraint can test whether a string matches
  2549. the pattern provided.
  2550. </summary>
  2551. </member>
  2552. <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
  2553. <summary>
  2554. Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
  2555. </summary>
  2556. <param name="pattern">The pattern.</param>
  2557. </member>
  2558. <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)">
  2559. <summary>
  2560. Test whether the constraint is satisfied by a given value
  2561. </summary>
  2562. <param name="actual">The value to be tested</param>
  2563. <returns>True for success, false for failure</returns>
  2564. </member>
  2565. <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2566. <summary>
  2567. Write the constraint description to a MessageWriter
  2568. </summary>
  2569. <param name="writer">The writer on which the description is displayed</param>
  2570. </member>
  2571. <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
  2572. <summary>
  2573. Abstract base class for constraints that compare values to
  2574. determine if one is greater than, equal to or less than
  2575. the other.
  2576. </summary>
  2577. </member>
  2578. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.expected">
  2579. <summary>
  2580. The value against which a comparison is to be made
  2581. </summary>
  2582. </member>
  2583. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.ltOK">
  2584. <summary>
  2585. If true, less than returns success
  2586. </summary>
  2587. </member>
  2588. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.eqOK">
  2589. <summary>
  2590. if true, equal returns success
  2591. </summary>
  2592. </member>
  2593. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.gtOK">
  2594. <summary>
  2595. if true, greater than returns success
  2596. </summary>
  2597. </member>
  2598. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.predicate">
  2599. <summary>
  2600. The predicate used as a part of the description
  2601. </summary>
  2602. </member>
  2603. <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.comparer">
  2604. <summary>
  2605. ComparisonAdapter to be used in making the comparison
  2606. </summary>
  2607. </member>
  2608. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Boolean,System.Boolean,System.Boolean,System.String)">
  2609. <summary>
  2610. Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
  2611. </summary>
  2612. <param name="value">The value against which to make a comparison.</param>
  2613. <param name="ltOK">if set to <c>true</c> less succeeds.</param>
  2614. <param name="eqOK">if set to <c>true</c> equal succeeds.</param>
  2615. <param name="gtOK">if set to <c>true</c> greater succeeds.</param>
  2616. <param name="predicate">String used in describing the constraint.</param>
  2617. </member>
  2618. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Matches(System.Object)">
  2619. <summary>
  2620. Test whether the constraint is satisfied by a given value
  2621. </summary>
  2622. <param name="actual">The value to be tested</param>
  2623. <returns>True for success, false for failure</returns>
  2624. </member>
  2625. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2626. <summary>
  2627. Write the constraint description to a MessageWriter
  2628. </summary>
  2629. <param name="writer">The writer on which the description is displayed</param>
  2630. </member>
  2631. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)">
  2632. <summary>
  2633. Modifies the constraint to use an IComparer and returns self
  2634. </summary>
  2635. </member>
  2636. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
  2637. <summary>
  2638. Modifies the constraint to use an IComparer&lt;T&gt; and returns self
  2639. </summary>
  2640. </member>
  2641. <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})">
  2642. <summary>
  2643. Modifies the constraint to use a Comparison&lt;T&gt; and returns self
  2644. </summary>
  2645. </member>
  2646. <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
  2647. <summary>
  2648. Tests whether a value is greater than the value supplied to its constructor
  2649. </summary>
  2650. </member>
  2651. <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)">
  2652. <summary>
  2653. Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
  2654. </summary>
  2655. <param name="expected">The expected value.</param>
  2656. </member>
  2657. <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
  2658. <summary>
  2659. Tests whether a value is greater than or equal to the value supplied to its constructor
  2660. </summary>
  2661. </member>
  2662. <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)">
  2663. <summary>
  2664. Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
  2665. </summary>
  2666. <param name="expected">The expected value.</param>
  2667. </member>
  2668. <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
  2669. <summary>
  2670. Tests whether a value is less than the value supplied to its constructor
  2671. </summary>
  2672. </member>
  2673. <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)">
  2674. <summary>
  2675. Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
  2676. </summary>
  2677. <param name="expected">The expected value.</param>
  2678. </member>
  2679. <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
  2680. <summary>
  2681. Tests whether a value is less than or equal to the value supplied to its constructor
  2682. </summary>
  2683. </member>
  2684. <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)">
  2685. <summary>
  2686. Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
  2687. </summary>
  2688. <param name="expected">The expected value.</param>
  2689. </member>
  2690. <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
  2691. <summary>
  2692. SameAsConstraint tests whether an object is identical to
  2693. the object passed to its constructor
  2694. </summary>
  2695. </member>
  2696. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
  2697. <summary>
  2698. Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
  2699. </summary>
  2700. <param name="expected">The expected object.</param>
  2701. </member>
  2702. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
  2703. <summary>
  2704. Test whether the constraint is satisfied by a given value
  2705. </summary>
  2706. <param name="actual">The value to be tested</param>
  2707. <returns>True for success, false for failure</returns>
  2708. </member>
  2709. <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2710. <summary>
  2711. Write the constraint description to a MessageWriter
  2712. </summary>
  2713. <param name="writer">The writer on which the description is displayed</param>
  2714. </member>
  2715. <member name="T:NUnit.Framework.Constraints.BinaryConstraint">
  2716. <summary>
  2717. BinaryConstraint is the abstract base of all constraints
  2718. that combine two other constraints in some fashion.
  2719. </summary>
  2720. </member>
  2721. <member name="F:NUnit.Framework.Constraints.BinaryConstraint.left">
  2722. <summary>
  2723. The first constraint being combined
  2724. </summary>
  2725. </member>
  2726. <member name="F:NUnit.Framework.Constraints.BinaryConstraint.right">
  2727. <summary>
  2728. The second constraint being combined
  2729. </summary>
  2730. </member>
  2731. <member name="M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  2732. <summary>
  2733. Construct a BinaryConstraint from two other constraints
  2734. </summary>
  2735. <param name="left">The first constraint</param>
  2736. <param name="right">The second constraint</param>
  2737. </member>
  2738. <member name="T:NUnit.Framework.Constraints.AndConstraint">
  2739. <summary>
  2740. AndConstraint succeeds only if both members succeed.
  2741. </summary>
  2742. </member>
  2743. <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  2744. <summary>
  2745. Create an AndConstraint from two other constraints
  2746. </summary>
  2747. <param name="left">The first constraint</param>
  2748. <param name="right">The second constraint</param>
  2749. </member>
  2750. <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
  2751. <summary>
  2752. Apply both member constraints to an actual value, succeeding
  2753. succeeding only if both of them succeed.
  2754. </summary>
  2755. <param name="actual">The actual value</param>
  2756. <returns>True if the constraints both succeeded</returns>
  2757. </member>
  2758. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2759. <summary>
  2760. Write a description for this contraint to a MessageWriter
  2761. </summary>
  2762. <param name="writer">The MessageWriter to receive the description</param>
  2763. </member>
  2764. <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  2765. <summary>
  2766. Write the actual value for a failing constraint test to a
  2767. MessageWriter. The default implementation simply writes
  2768. the raw value of actual, leaving it to the writer to
  2769. perform any formatting.
  2770. </summary>
  2771. <param name="writer">The writer on which the actual value is displayed</param>
  2772. </member>
  2773. <member name="T:NUnit.Framework.Constraints.OrConstraint">
  2774. <summary>
  2775. OrConstraint succeeds if either member succeeds
  2776. </summary>
  2777. </member>
  2778. <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  2779. <summary>
  2780. Create an OrConstraint from two other constraints
  2781. </summary>
  2782. <param name="left">The first constraint</param>
  2783. <param name="right">The second constraint</param>
  2784. </member>
  2785. <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
  2786. <summary>
  2787. Apply the member constraints to an actual value, succeeding
  2788. succeeding as soon as one of them succeeds.
  2789. </summary>
  2790. <param name="actual">The actual value</param>
  2791. <returns>True if either constraint succeeded</returns>
  2792. </member>
  2793. <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  2794. <summary>
  2795. Write a description for this contraint to a MessageWriter
  2796. </summary>
  2797. <param name="writer">The MessageWriter to receive the description</param>
  2798. </member>
  2799. <member name="T:NUnit.Framework.Constraints.ConstraintFactory">
  2800. <summary>
  2801. Helper class with properties and methods that supply
  2802. a number of constraints used in Asserts.
  2803. </summary>
  2804. </member>
  2805. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)">
  2806. <summary>
  2807. Returns a new PropertyConstraintExpression, which will either
  2808. test for the existence of the named property on the object
  2809. being tested or apply any following constraint to that property.
  2810. </summary>
  2811. </member>
  2812. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)">
  2813. <summary>
  2814. Returns a new AttributeConstraint checking for the
  2815. presence of a particular attribute on an object.
  2816. </summary>
  2817. </member>
  2818. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1">
  2819. <summary>
  2820. Returns a new AttributeConstraint checking for the
  2821. presence of a particular attribute on an object.
  2822. </summary>
  2823. </member>
  2824. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)">
  2825. <summary>
  2826. Returns a constraint that tests two items for equality
  2827. </summary>
  2828. </member>
  2829. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)">
  2830. <summary>
  2831. Returns a constraint that tests that two references are the same object
  2832. </summary>
  2833. </member>
  2834. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)">
  2835. <summary>
  2836. Returns a constraint that tests whether the
  2837. actual value is greater than the suppled argument
  2838. </summary>
  2839. </member>
  2840. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)">
  2841. <summary>
  2842. Returns a constraint that tests whether the
  2843. actual value is greater than or equal to the suppled argument
  2844. </summary>
  2845. </member>
  2846. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)">
  2847. <summary>
  2848. Returns a constraint that tests whether the
  2849. actual value is greater than or equal to the suppled argument
  2850. </summary>
  2851. </member>
  2852. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)">
  2853. <summary>
  2854. Returns a constraint that tests whether the
  2855. actual value is less than the suppled argument
  2856. </summary>
  2857. </member>
  2858. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)">
  2859. <summary>
  2860. Returns a constraint that tests whether the
  2861. actual value is less than or equal to the suppled argument
  2862. </summary>
  2863. </member>
  2864. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)">
  2865. <summary>
  2866. Returns a constraint that tests whether the
  2867. actual value is less than or equal to the suppled argument
  2868. </summary>
  2869. </member>
  2870. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)">
  2871. <summary>
  2872. Returns a constraint that tests whether the actual
  2873. value is of the exact type supplied as an argument.
  2874. </summary>
  2875. </member>
  2876. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1">
  2877. <summary>
  2878. Returns a constraint that tests whether the actual
  2879. value is of the exact type supplied as an argument.
  2880. </summary>
  2881. </member>
  2882. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)">
  2883. <summary>
  2884. Returns a constraint that tests whether the actual value
  2885. is of the type supplied as an argument or a derived type.
  2886. </summary>
  2887. </member>
  2888. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1">
  2889. <summary>
  2890. Returns a constraint that tests whether the actual value
  2891. is of the type supplied as an argument or a derived type.
  2892. </summary>
  2893. </member>
  2894. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)">
  2895. <summary>
  2896. Returns a constraint that tests whether the actual value
  2897. is of the type supplied as an argument or a derived type.
  2898. </summary>
  2899. </member>
  2900. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1">
  2901. <summary>
  2902. Returns a constraint that tests whether the actual value
  2903. is of the type supplied as an argument or a derived type.
  2904. </summary>
  2905. </member>
  2906. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)">
  2907. <summary>
  2908. Returns a constraint that tests whether the actual value
  2909. is assignable from the type supplied as an argument.
  2910. </summary>
  2911. </member>
  2912. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1">
  2913. <summary>
  2914. Returns a constraint that tests whether the actual value
  2915. is assignable from the type supplied as an argument.
  2916. </summary>
  2917. </member>
  2918. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)">
  2919. <summary>
  2920. Returns a constraint that tests whether the actual value
  2921. is assignable from the type supplied as an argument.
  2922. </summary>
  2923. </member>
  2924. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1">
  2925. <summary>
  2926. Returns a constraint that tests whether the actual value
  2927. is assignable from the type supplied as an argument.
  2928. </summary>
  2929. </member>
  2930. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)">
  2931. <summary>
  2932. Returns a constraint that tests whether the actual value
  2933. is a collection containing the same elements as the
  2934. collection supplied as an argument.
  2935. </summary>
  2936. </member>
  2937. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)">
  2938. <summary>
  2939. Returns a constraint that tests whether the actual value
  2940. is a subset of the collection supplied as an argument.
  2941. </summary>
  2942. </member>
  2943. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)">
  2944. <summary>
  2945. Returns a new CollectionContainsConstraint checking for the
  2946. presence of a particular object in the collection.
  2947. </summary>
  2948. </member>
  2949. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)">
  2950. <summary>
  2951. Returns a new CollectionContainsConstraint checking for the
  2952. presence of a particular object in the collection.
  2953. </summary>
  2954. </member>
  2955. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)">
  2956. <summary>
  2957. Returns a new ContainsConstraint. This constraint
  2958. will, in turn, make use of the appropriate second-level
  2959. constraint, depending on the type of the actual argument.
  2960. This overload is only used if the item sought is a string,
  2961. since any other type implies that we are looking for a
  2962. collection member.
  2963. </summary>
  2964. </member>
  2965. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)">
  2966. <summary>
  2967. Returns a constraint that succeeds if the actual
  2968. value contains the substring supplied as an argument.
  2969. </summary>
  2970. </member>
  2971. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)">
  2972. <summary>
  2973. Returns a constraint that succeeds if the actual
  2974. value contains the substring supplied as an argument.
  2975. </summary>
  2976. </member>
  2977. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)">
  2978. <summary>
  2979. Returns a constraint that fails if the actual
  2980. value contains the substring supplied as an argument.
  2981. </summary>
  2982. </member>
  2983. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)">
  2984. <summary>
  2985. Returns a constraint that succeeds if the actual
  2986. value starts with the substring supplied as an argument.
  2987. </summary>
  2988. </member>
  2989. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)">
  2990. <summary>
  2991. Returns a constraint that succeeds if the actual
  2992. value starts with the substring supplied as an argument.
  2993. </summary>
  2994. </member>
  2995. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)">
  2996. <summary>
  2997. Returns a constraint that fails if the actual
  2998. value starts with the substring supplied as an argument.
  2999. </summary>
  3000. </member>
  3001. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)">
  3002. <summary>
  3003. Returns a constraint that succeeds if the actual
  3004. value ends with the substring supplied as an argument.
  3005. </summary>
  3006. </member>
  3007. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)">
  3008. <summary>
  3009. Returns a constraint that succeeds if the actual
  3010. value ends with the substring supplied as an argument.
  3011. </summary>
  3012. </member>
  3013. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)">
  3014. <summary>
  3015. Returns a constraint that fails if the actual
  3016. value ends with the substring supplied as an argument.
  3017. </summary>
  3018. </member>
  3019. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)">
  3020. <summary>
  3021. Returns a constraint that succeeds if the actual
  3022. value matches the Regex pattern supplied as an argument.
  3023. </summary>
  3024. </member>
  3025. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)">
  3026. <summary>
  3027. Returns a constraint that succeeds if the actual
  3028. value matches the Regex pattern supplied as an argument.
  3029. </summary>
  3030. </member>
  3031. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)">
  3032. <summary>
  3033. Returns a constraint that fails if the actual
  3034. value matches the pattern supplied as an argument.
  3035. </summary>
  3036. </member>
  3037. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)">
  3038. <summary>
  3039. Returns a constraint that tests whether the path provided
  3040. is the same as an expected path after canonicalization.
  3041. </summary>
  3042. </member>
  3043. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)">
  3044. <summary>
  3045. Returns a constraint that tests whether the path provided
  3046. is the same path or under an expected path after canonicalization.
  3047. </summary>
  3048. </member>
  3049. <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InRange(System.IComparable,System.IComparable)">
  3050. <summary>
  3051. Returns a constraint that tests whether the actual value falls
  3052. within a specified range.
  3053. </summary>
  3054. </member>
  3055. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Not">
  3056. <summary>
  3057. Returns a ConstraintExpression that negates any
  3058. following constraint.
  3059. </summary>
  3060. </member>
  3061. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.No">
  3062. <summary>
  3063. Returns a ConstraintExpression that negates any
  3064. following constraint.
  3065. </summary>
  3066. </member>
  3067. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.All">
  3068. <summary>
  3069. Returns a ConstraintExpression, which will apply
  3070. the following constraint to all members of a collection,
  3071. succeeding if all of them succeed.
  3072. </summary>
  3073. </member>
  3074. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Some">
  3075. <summary>
  3076. Returns a ConstraintExpression, which will apply
  3077. the following constraint to all members of a collection,
  3078. succeeding if at least one of them succeeds.
  3079. </summary>
  3080. </member>
  3081. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.None">
  3082. <summary>
  3083. Returns a ConstraintExpression, which will apply
  3084. the following constraint to all members of a collection,
  3085. succeeding if all of them fail.
  3086. </summary>
  3087. </member>
  3088. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Length">
  3089. <summary>
  3090. Returns a new ConstraintExpression, which will apply the following
  3091. constraint to the Length property of the object being tested.
  3092. </summary>
  3093. </member>
  3094. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Count">
  3095. <summary>
  3096. Returns a new ConstraintExpression, which will apply the following
  3097. constraint to the Count property of the object being tested.
  3098. </summary>
  3099. </member>
  3100. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Message">
  3101. <summary>
  3102. Returns a new ConstraintExpression, which will apply the following
  3103. constraint to the Message property of the object being tested.
  3104. </summary>
  3105. </member>
  3106. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.InnerException">
  3107. <summary>
  3108. Returns a new ConstraintExpression, which will apply the following
  3109. constraint to the InnerException property of the object being tested.
  3110. </summary>
  3111. </member>
  3112. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Null">
  3113. <summary>
  3114. Returns a constraint that tests for null
  3115. </summary>
  3116. </member>
  3117. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.True">
  3118. <summary>
  3119. Returns a constraint that tests for True
  3120. </summary>
  3121. </member>
  3122. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.False">
  3123. <summary>
  3124. Returns a constraint that tests for False
  3125. </summary>
  3126. </member>
  3127. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.NaN">
  3128. <summary>
  3129. Returns a constraint that tests for NaN
  3130. </summary>
  3131. </member>
  3132. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Empty">
  3133. <summary>
  3134. Returns a constraint that tests for empty
  3135. </summary>
  3136. </member>
  3137. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Unique">
  3138. <summary>
  3139. Returns a constraint that tests whether a collection
  3140. contains all unique items.
  3141. </summary>
  3142. </member>
  3143. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable">
  3144. <summary>
  3145. Returns a constraint that tests whether an object graph is serializable in binary format.
  3146. </summary>
  3147. </member>
  3148. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable">
  3149. <summary>
  3150. Returns a constraint that tests whether an object graph is serializable in xml format.
  3151. </summary>
  3152. </member>
  3153. <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Ordered">
  3154. <summary>
  3155. Returns a constraint that tests whether a collection is ordered
  3156. </summary>
  3157. </member>
  3158. <member name="T:NUnit.Framework.Constraints.DelayedConstraint">
  3159. <summary>
  3160. Applies a delay to the match so that a match can be evaluated in the future.
  3161. </summary>
  3162. </member>
  3163. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)">
  3164. <summary>
  3165. Creates a new DelayedConstraint
  3166. </summary>
  3167. <param name="baseConstraint">The inner constraint two decorate</param>
  3168. <param name="delayInMilliseconds">The time interval after which the match is performed</param>
  3169. <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
  3170. </member>
  3171. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)">
  3172. <summary>
  3173. Creates a new DelayedConstraint
  3174. </summary>
  3175. <param name="baseConstraint">The inner constraint two decorate</param>
  3176. <param name="delayInMilliseconds">The time interval after which the match is performed</param>
  3177. <param name="pollingInterval">The time interval used for polling</param>
  3178. <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
  3179. </member>
  3180. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)">
  3181. <summary>
  3182. Test whether the constraint is satisfied by a given value
  3183. </summary>
  3184. <param name="actual">The value to be tested</param>
  3185. <returns>True for if the base constraint fails, false if it succeeds</returns>
  3186. </member>
  3187. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
  3188. <summary>
  3189. Test whether the constraint is satisfied by a delegate
  3190. </summary>
  3191. <param name="del">The delegate whose value is to be tested</param>
  3192. <returns>True for if the base constraint fails, false if it succeeds</returns>
  3193. </member>
  3194. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)">
  3195. <summary>
  3196. Test whether the constraint is satisfied by a given reference.
  3197. Overridden to wait for the specified delay period before
  3198. calling the base constraint with the dereferenced value.
  3199. </summary>
  3200. <param name="actual">A reference to the value to be tested</param>
  3201. <returns>True for success, false for failure</returns>
  3202. </member>
  3203. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  3204. <summary>
  3205. Write the constraint description to a MessageWriter
  3206. </summary>
  3207. <param name="writer">The writer on which the description is displayed</param>
  3208. </member>
  3209. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  3210. <summary>
  3211. Write the actual value for a failing constraint test to a MessageWriter.
  3212. </summary>
  3213. <param name="writer">The writer on which the actual value is displayed</param>
  3214. </member>
  3215. <member name="M:NUnit.Framework.Constraints.DelayedConstraint.ToString">
  3216. <summary>
  3217. Returns the string representation of the constraint.
  3218. </summary>
  3219. </member>
  3220. <member name="T:NUnit.Framework.Constraints.NUnitComparer">
  3221. <summary>
  3222. NUnitComparer encapsulates NUnit's default behavior
  3223. in comparing two objects.
  3224. </summary>
  3225. </member>
  3226. <member name="M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)">
  3227. <summary>
  3228. Compares two objects
  3229. </summary>
  3230. <param name="x"></param>
  3231. <param name="y"></param>
  3232. <returns></returns>
  3233. </member>
  3234. <member name="P:NUnit.Framework.Constraints.NUnitComparer.Default">
  3235. <summary>
  3236. Returns the default NUnitComparer.
  3237. </summary>
  3238. </member>
  3239. <member name="T:NUnit.Framework.Constraints.ActualValueDelegate">
  3240. <summary>
  3241. Delegate used to delay evaluation of the actual value
  3242. to be used in evaluating a constraint
  3243. </summary>
  3244. </member>
  3245. <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer">
  3246. <summary>
  3247. NUnitEqualityComparer encapsulates NUnit's handling of
  3248. equality tests between objects.
  3249. </summary>
  3250. </member>
  3251. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive">
  3252. <summary>
  3253. If true, all string comparisons will ignore case
  3254. </summary>
  3255. </member>
  3256. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection">
  3257. <summary>
  3258. If true, arrays will be treated as collections, allowing
  3259. those of different dimensions to be compared
  3260. </summary>
  3261. </member>
  3262. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.tolerance">
  3263. <summary>
  3264. If non-zero, equality comparisons within the specified
  3265. tolerance will succeed.
  3266. </summary>
  3267. </member>
  3268. <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparer">
  3269. <summary>
  3270. Comparison object used in comparisons for some constraints.
  3271. </summary>
  3272. </member>
  3273. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ObjectsEqual(System.Object,System.Object)">
  3274. <summary>
  3275. Compares two objects for equality.
  3276. </summary>
  3277. </member>
  3278. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array)">
  3279. <summary>
  3280. Helper method to compare two arrays
  3281. </summary>
  3282. </member>
  3283. <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  3284. <summary>
  3285. Method to compare two DirectoryInfo objects
  3286. </summary>
  3287. <param name="x">first directory to compare</param>
  3288. <param name="y">second directory to compare</param>
  3289. <returns>true if equivalent, false if not</returns>
  3290. </member>
  3291. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default">
  3292. <summary>
  3293. Returns the default NUnitEqualityComparer
  3294. </summary>
  3295. </member>
  3296. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase">
  3297. <summary>
  3298. Gets and sets a flag indicating whether case should
  3299. be ignored in determining equality.
  3300. </summary>
  3301. </member>
  3302. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection">
  3303. <summary>
  3304. Gets and sets a flag indicating that arrays should be
  3305. compared as collections, without regard to their shape.
  3306. </summary>
  3307. </member>
  3308. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparer">
  3309. <summary>
  3310. Gets and sets an external comparer to be used to
  3311. test for equality. It is applied to members of
  3312. collections, in place of NUnit's own logic.
  3313. </summary>
  3314. </member>
  3315. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Tolerance">
  3316. <summary>
  3317. Gets and sets a tolerance used to compare objects of
  3318. certin types.
  3319. </summary>
  3320. </member>
  3321. <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints">
  3322. <summary>
  3323. Gets the list of failure points for the last Match performed.
  3324. </summary>
  3325. </member>
  3326. <member name="T:NUnit.Framework.Constraints.ComparisonAdapter">
  3327. <summary>
  3328. ComparisonAdapter class centralizes all comparisons of
  3329. values in NUnit, adapting to the use of any provided
  3330. IComparer, IComparer&lt;T&gt; or Comparison&lt;T&gt;
  3331. </summary>
  3332. </member>
  3333. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)">
  3334. <summary>
  3335. Returns a ComparisonAdapter that wraps an IComparer
  3336. </summary>
  3337. </member>
  3338. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})">
  3339. <summary>
  3340. Returns a ComparisonAdapter that wraps an IComparer&lt;T&gt;
  3341. </summary>
  3342. </member>
  3343. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})">
  3344. <summary>
  3345. Returns a ComparisonAdapter that wraps a Comparison&lt;T&gt;
  3346. </summary>
  3347. </member>
  3348. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)">
  3349. <summary>
  3350. Compares two objects
  3351. </summary>
  3352. </member>
  3353. <member name="P:NUnit.Framework.Constraints.ComparisonAdapter.Default">
  3354. <summary>
  3355. Gets the default ComparisonAdapter, which wraps an
  3356. NUnitComparer object.
  3357. </summary>
  3358. </member>
  3359. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)">
  3360. <summary>
  3361. Construct a ComparisonAdapter for an IComparer
  3362. </summary>
  3363. </member>
  3364. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)">
  3365. <summary>
  3366. Compares two objects
  3367. </summary>
  3368. <param name="expected"></param>
  3369. <param name="actual"></param>
  3370. <returns></returns>
  3371. </member>
  3372. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor">
  3373. <summary>
  3374. Construct a default ComparisonAdapter
  3375. </summary>
  3376. </member>
  3377. <member name="T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1">
  3378. <summary>
  3379. ComparisonAdapter&lt;T&gt; extends ComparisonAdapter and
  3380. allows use of an IComparer&lt;T&gt; or Comparison&lt;T&gt;
  3381. to actually perform the comparison.
  3382. </summary>
  3383. </member>
  3384. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})">
  3385. <summary>
  3386. Construct a ComparisonAdapter for an IComparer&lt;T&gt;
  3387. </summary>
  3388. </member>
  3389. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)">
  3390. <summary>
  3391. Compare a Type T to an object
  3392. </summary>
  3393. </member>
  3394. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})">
  3395. <summary>
  3396. Construct a ComparisonAdapter for a Comparison&lt;T&gt;
  3397. </summary>
  3398. </member>
  3399. <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)">
  3400. <summary>
  3401. Compare a Type T to an object
  3402. </summary>
  3403. </member>
  3404. <member name="T:NUnit.Framework.Constraints.ConstraintOperator">
  3405. <summary>
  3406. The ConstraintOperator class is used internally by a
  3407. ConstraintBuilder to represent an operator that
  3408. modifies or combines constraints.
  3409. Constraint operators use left and right precedence
  3410. values to determine whether the top operator on the
  3411. stack should be reduced before pushing a new operator.
  3412. </summary>
  3413. </member>
  3414. <member name="F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence">
  3415. <summary>
  3416. The precedence value used when the operator
  3417. is about to be pushed to the stack.
  3418. </summary>
  3419. </member>
  3420. <member name="F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence">
  3421. <summary>
  3422. The precedence value used when the operator
  3423. is on the top of the stack.
  3424. </summary>
  3425. </member>
  3426. <member name="M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  3427. <summary>
  3428. Reduce produces a constraint from the operator and
  3429. any arguments. It takes the arguments from the constraint
  3430. stack and pushes the resulting constraint on it.
  3431. </summary>
  3432. <param name="stack"></param>
  3433. </member>
  3434. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext">
  3435. <summary>
  3436. The syntax element preceding this operator
  3437. </summary>
  3438. </member>
  3439. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightContext">
  3440. <summary>
  3441. The syntax element folowing this operator
  3442. </summary>
  3443. </member>
  3444. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence">
  3445. <summary>
  3446. The precedence value used when the operator
  3447. is about to be pushed to the stack.
  3448. </summary>
  3449. </member>
  3450. <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence">
  3451. <summary>
  3452. The precedence value used when the operator
  3453. is on the top of the stack.
  3454. </summary>
  3455. </member>
  3456. <member name="T:NUnit.Framework.Constraints.PrefixOperator">
  3457. <summary>
  3458. PrefixOperator takes a single constraint and modifies
  3459. it's action in some way.
  3460. </summary>
  3461. </member>
  3462. <member name="M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  3463. <summary>
  3464. Reduce produces a constraint from the operator and
  3465. any arguments. It takes the arguments from the constraint
  3466. stack and pushes the resulting constraint on it.
  3467. </summary>
  3468. <param name="stack"></param>
  3469. </member>
  3470. <member name="M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  3471. <summary>
  3472. Returns the constraint created by applying this
  3473. prefix to another constraint.
  3474. </summary>
  3475. <param name="constraint"></param>
  3476. <returns></returns>
  3477. </member>
  3478. <member name="T:NUnit.Framework.Constraints.NotOperator">
  3479. <summary>
  3480. Negates the test of the constraint it wraps.
  3481. </summary>
  3482. </member>
  3483. <member name="M:NUnit.Framework.Constraints.NotOperator.#ctor">
  3484. <summary>
  3485. Constructs a new NotOperator
  3486. </summary>
  3487. </member>
  3488. <member name="M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  3489. <summary>
  3490. Returns a NotConstraint applied to its argument.
  3491. </summary>
  3492. </member>
  3493. <member name="T:NUnit.Framework.Constraints.CollectionOperator">
  3494. <summary>
  3495. Abstract base for operators that indicate how to
  3496. apply a constraint to items in a collection.
  3497. </summary>
  3498. </member>
  3499. <member name="M:NUnit.Framework.Constraints.CollectionOperator.#ctor">
  3500. <summary>
  3501. Constructs a CollectionOperator
  3502. </summary>
  3503. </member>
  3504. <member name="T:NUnit.Framework.Constraints.AllOperator">
  3505. <summary>
  3506. Represents a constraint that succeeds if all the
  3507. members of a collection match a base constraint.
  3508. </summary>
  3509. </member>
  3510. <member name="M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  3511. <summary>
  3512. Returns a constraint that will apply the argument
  3513. to the members of a collection, succeeding if
  3514. they all succeed.
  3515. </summary>
  3516. </member>
  3517. <member name="T:NUnit.Framework.Constraints.SomeOperator">
  3518. <summary>
  3519. Represents a constraint that succeeds if any of the
  3520. members of a collection match a base constraint.
  3521. </summary>
  3522. </member>
  3523. <member name="M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  3524. <summary>
  3525. Returns a constraint that will apply the argument
  3526. to the members of a collection, succeeding if
  3527. any of them succeed.
  3528. </summary>
  3529. </member>
  3530. <member name="T:NUnit.Framework.Constraints.NoneOperator">
  3531. <summary>
  3532. Represents a constraint that succeeds if none of the
  3533. members of a collection match a base constraint.
  3534. </summary>
  3535. </member>
  3536. <member name="M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  3537. <summary>
  3538. Returns a constraint that will apply the argument
  3539. to the members of a collection, succeeding if
  3540. none of them succeed.
  3541. </summary>
  3542. </member>
  3543. <member name="T:NUnit.Framework.Constraints.WithOperator">
  3544. <summary>
  3545. Represents a constraint that simply wraps the
  3546. constraint provided as an argument, without any
  3547. further functionality, but which modifes the
  3548. order of evaluation because of its precedence.
  3549. </summary>
  3550. </member>
  3551. <member name="M:NUnit.Framework.Constraints.WithOperator.#ctor">
  3552. <summary>
  3553. Constructor for the WithOperator
  3554. </summary>
  3555. </member>
  3556. <member name="M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
  3557. <summary>
  3558. Returns a constraint that wraps its argument
  3559. </summary>
  3560. </member>
  3561. <member name="T:NUnit.Framework.Constraints.SelfResolvingOperator">
  3562. <summary>
  3563. Abstract base class for operators that are able to reduce to a
  3564. constraint whether or not another syntactic element follows.
  3565. </summary>
  3566. </member>
  3567. <member name="T:NUnit.Framework.Constraints.PropOperator">
  3568. <summary>
  3569. Operator used to test for the presence of a named Property
  3570. on an object and optionally apply further tests to the
  3571. value of that property.
  3572. </summary>
  3573. </member>
  3574. <member name="M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)">
  3575. <summary>
  3576. Constructs a PropOperator for a particular named property
  3577. </summary>
  3578. </member>
  3579. <member name="M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  3580. <summary>
  3581. Reduce produces a constraint from the operator and
  3582. any arguments. It takes the arguments from the constraint
  3583. stack and pushes the resulting constraint on it.
  3584. </summary>
  3585. <param name="stack"></param>
  3586. </member>
  3587. <member name="P:NUnit.Framework.Constraints.PropOperator.Name">
  3588. <summary>
  3589. Gets the name of the property to which the operator applies
  3590. </summary>
  3591. </member>
  3592. <member name="T:NUnit.Framework.Constraints.AttributeOperator">
  3593. <summary>
  3594. Operator that tests for the presence of a particular attribute
  3595. on a type and optionally applies further tests to the attribute.
  3596. </summary>
  3597. </member>
  3598. <member name="M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)">
  3599. <summary>
  3600. Construct an AttributeOperator for a particular Type
  3601. </summary>
  3602. <param name="type">The Type of attribute tested</param>
  3603. </member>
  3604. <member name="M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  3605. <summary>
  3606. Reduce produces a constraint from the operator and
  3607. any arguments. It takes the arguments from the constraint
  3608. stack and pushes the resulting constraint on it.
  3609. </summary>
  3610. </member>
  3611. <member name="T:NUnit.Framework.Constraints.ThrowsOperator">
  3612. <summary>
  3613. Operator that tests that an exception is thrown and
  3614. optionally applies further tests to the exception.
  3615. </summary>
  3616. </member>
  3617. <member name="M:NUnit.Framework.Constraints.ThrowsOperator.#ctor">
  3618. <summary>
  3619. Construct a ThrowsOperator
  3620. </summary>
  3621. </member>
  3622. <member name="M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  3623. <summary>
  3624. Reduce produces a constraint from the operator and
  3625. any arguments. It takes the arguments from the constraint
  3626. stack and pushes the resulting constraint on it.
  3627. </summary>
  3628. </member>
  3629. <member name="T:NUnit.Framework.Constraints.BinaryOperator">
  3630. <summary>
  3631. Abstract base class for all binary operators
  3632. </summary>
  3633. </member>
  3634. <member name="M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
  3635. <summary>
  3636. Reduce produces a constraint from the operator and
  3637. any arguments. It takes the arguments from the constraint
  3638. stack and pushes the resulting constraint on it.
  3639. </summary>
  3640. <param name="stack"></param>
  3641. </member>
  3642. <member name="M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  3643. <summary>
  3644. Abstract method that produces a constraint by applying
  3645. the operator to its left and right constraint arguments.
  3646. </summary>
  3647. </member>
  3648. <member name="P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence">
  3649. <summary>
  3650. Gets the left precedence of the operator
  3651. </summary>
  3652. </member>
  3653. <member name="P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence">
  3654. <summary>
  3655. Gets the right precedence of the operator
  3656. </summary>
  3657. </member>
  3658. <member name="T:NUnit.Framework.Constraints.AndOperator">
  3659. <summary>
  3660. Operator that requires both it's arguments to succeed
  3661. </summary>
  3662. </member>
  3663. <member name="M:NUnit.Framework.Constraints.AndOperator.#ctor">
  3664. <summary>
  3665. Construct an AndOperator
  3666. </summary>
  3667. </member>
  3668. <member name="M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  3669. <summary>
  3670. Apply the operator to produce an AndConstraint
  3671. </summary>
  3672. </member>
  3673. <member name="T:NUnit.Framework.Constraints.OrOperator">
  3674. <summary>
  3675. Operator that requires at least one of it's arguments to succeed
  3676. </summary>
  3677. </member>
  3678. <member name="M:NUnit.Framework.Constraints.OrOperator.#ctor">
  3679. <summary>
  3680. Construct an OrOperator
  3681. </summary>
  3682. </member>
  3683. <member name="M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
  3684. <summary>
  3685. Apply the operator to produce an OrConstraint
  3686. </summary>
  3687. </member>
  3688. <member name="T:NUnit.Framework.Constraints.BinarySerializableConstraint">
  3689. <summary>
  3690. BinarySerializableConstraint tests whether
  3691. an object is serializable in binary format.
  3692. </summary>
  3693. </member>
  3694. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)">
  3695. <summary>
  3696. Test whether the constraint is satisfied by a given value
  3697. </summary>
  3698. <param name="actual">The value to be tested</param>
  3699. <returns>True for success, false for failure</returns>
  3700. </member>
  3701. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  3702. <summary>
  3703. Write the constraint description to a MessageWriter
  3704. </summary>
  3705. <param name="writer">The writer on which the description is displayed</param>
  3706. </member>
  3707. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  3708. <summary>
  3709. Write the actual value for a failing constraint test to a
  3710. MessageWriter. The default implementation simply writes
  3711. the raw value of actual, leaving it to the writer to
  3712. perform any formatting.
  3713. </summary>
  3714. <param name="writer">The writer on which the actual value is displayed</param>
  3715. </member>
  3716. <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.ToString">
  3717. <summary>
  3718. Returns the string representation
  3719. </summary>
  3720. </member>
  3721. <member name="T:NUnit.Framework.Constraints.XmlSerializableConstraint">
  3722. <summary>
  3723. BinarySerializableConstraint tests whether
  3724. an object is serializable in binary format.
  3725. </summary>
  3726. </member>
  3727. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)">
  3728. <summary>
  3729. Test whether the constraint is satisfied by a given value
  3730. </summary>
  3731. <param name="actual">The value to be tested</param>
  3732. <returns>True for success, false for failure</returns>
  3733. </member>
  3734. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  3735. <summary>
  3736. Write the constraint description to a MessageWriter
  3737. </summary>
  3738. <param name="writer">The writer on which the description is displayed</param>
  3739. </member>
  3740. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  3741. <summary>
  3742. Write the actual value for a failing constraint test to a
  3743. MessageWriter. The default implementation simply writes
  3744. the raw value of actual, leaving it to the writer to
  3745. perform any formatting.
  3746. </summary>
  3747. <param name="writer">The writer on which the actual value is displayed</param>
  3748. </member>
  3749. <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.ToString">
  3750. <summary>
  3751. Returns the string representation of this constraint
  3752. </summary>
  3753. </member>
  3754. <member name="T:NUnit.Framework.Constraints.ResolvableConstraintExpression">
  3755. <summary>
  3756. ResolvableConstraintExpression is used to represent a compound
  3757. constraint being constructed at a point where the last operator
  3758. may either terminate the expression or may have additional
  3759. qualifying constraints added to it.
  3760. It is used, for example, for a Property element or for
  3761. an Exception element, either of which may be optionally
  3762. followed by constraints that apply to the property or
  3763. exception.
  3764. </summary>
  3765. </member>
  3766. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor">
  3767. <summary>
  3768. Create a new instance of ResolvableConstraintExpression
  3769. </summary>
  3770. </member>
  3771. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
  3772. <summary>
  3773. Create a new instance of ResolvableConstraintExpression,
  3774. passing in a pre-populated ConstraintBuilder.
  3775. </summary>
  3776. </member>
  3777. <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve">
  3778. <summary>
  3779. Resolve the current expression to a Constraint
  3780. </summary>
  3781. </member>
  3782. <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
  3783. <summary>
  3784. Appends an And Operator to the expression
  3785. </summary>
  3786. </member>
  3787. <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or">
  3788. <summary>
  3789. Appends an Or operator to the expression.
  3790. </summary>
  3791. </member>
  3792. <member name="T:NUnit.Framework.Constraints.EqualityAdapter">
  3793. <summary>
  3794. EqualityAdapter class handles all equality comparisons
  3795. that use an IEqualityComparer, IEqualityComparer&lt;T&gt;
  3796. or a ComparisonAdapter.
  3797. </summary>
  3798. </member>
  3799. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.ObjectsEqual(System.Object,System.Object)">
  3800. <summary>
  3801. Compares two objects, returning true if they are equal
  3802. </summary>
  3803. </member>
  3804. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)">
  3805. <summary>
  3806. Returns an EqualityAdapter that wraps an IComparer.
  3807. </summary>
  3808. </member>
  3809. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)">
  3810. <summary>
  3811. Returns an EqualityAdapter that wraps an IEqualityComparer.
  3812. </summary>
  3813. </member>
  3814. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})">
  3815. <summary>
  3816. Returns an EqualityAdapter that wraps an IEqualityComparer&lt;T&gt;.
  3817. </summary>
  3818. </member>
  3819. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})">
  3820. <summary>
  3821. Returns an EqualityAdapter that wraps an IComparer&lt;T&gt;.
  3822. </summary>
  3823. </member>
  3824. <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})">
  3825. <summary>
  3826. Returns an EqualityAdapter that wraps a Comparison&lt;T&gt;.
  3827. </summary>
  3828. </member>
  3829. <member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
  3830. <summary>
  3831. AttributeExistsConstraint tests for the presence of a
  3832. specified attribute on a Type.
  3833. </summary>
  3834. </member>
  3835. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)">
  3836. <summary>
  3837. Constructs an AttributeExistsConstraint for a specific attribute Type
  3838. </summary>
  3839. <param name="type"></param>
  3840. </member>
  3841. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)">
  3842. <summary>
  3843. Tests whether the object provides the expected attribute.
  3844. </summary>
  3845. <param name="actual">A Type, MethodInfo, or other ICustomAttributeProvider</param>
  3846. <returns>True if the expected attribute is present, otherwise false</returns>
  3847. </member>
  3848. <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  3849. <summary>
  3850. Writes the description of the constraint to the specified writer
  3851. </summary>
  3852. </member>
  3853. <member name="T:NUnit.Framework.Constraints.AttributeConstraint">
  3854. <summary>
  3855. AttributeConstraint tests that a specified attribute is present
  3856. on a Type or other provider and that the value of the attribute
  3857. satisfies some other constraint.
  3858. </summary>
  3859. </member>
  3860. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)">
  3861. <summary>
  3862. Constructs an AttributeConstraint for a specified attriute
  3863. Type and base constraint.
  3864. </summary>
  3865. <param name="type"></param>
  3866. <param name="baseConstraint"></param>
  3867. </member>
  3868. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)">
  3869. <summary>
  3870. Determines whether the Type or other provider has the
  3871. expected attribute and if its value matches the
  3872. additional constraint specified.
  3873. </summary>
  3874. </member>
  3875. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  3876. <summary>
  3877. Writes a description of the attribute to the specified writer.
  3878. </summary>
  3879. </member>
  3880. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
  3881. <summary>
  3882. Writes the actual value supplied to the specified writer.
  3883. </summary>
  3884. </member>
  3885. <member name="M:NUnit.Framework.Constraints.AttributeConstraint.ToString">
  3886. <summary>
  3887. Returns a string representation of the constraint.
  3888. </summary>
  3889. </member>
  3890. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics">
  3891. <summary>Helper routines for working with floating point numbers</summary>
  3892. <remarks>
  3893. <para>
  3894. The floating point comparison code is based on this excellent article:
  3895. http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
  3896. </para>
  3897. <para>
  3898. "ULP" means Unit in the Last Place and in the context of this library refers to
  3899. the distance between two adjacent floating point numbers. IEEE floating point
  3900. numbers can only represent a finite subset of natural numbers, with greater
  3901. accuracy for smaller numbers and lower accuracy for very large numbers.
  3902. </para>
  3903. <para>
  3904. If a comparison is allowed "2 ulps" of deviation, that means the values are
  3905. allowed to deviate by up to 2 adjacent floating point values, which might be
  3906. as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.
  3907. </para>
  3908. </remarks>
  3909. </member>
  3910. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)">
  3911. <summary>Compares two floating point values for equality</summary>
  3912. <param name="left">First floating point value to be compared</param>
  3913. <param name="right">Second floating point value t be compared</param>
  3914. <param name="maxUlps">
  3915. Maximum number of representable floating point values that are allowed to
  3916. be between the left and the right floating point values
  3917. </param>
  3918. <returns>True if both numbers are equal or close to being equal</returns>
  3919. <remarks>
  3920. <para>
  3921. Floating point values can only represent a finite subset of natural numbers.
  3922. For example, the values 2.00000000 and 2.00000024 can be stored in a float,
  3923. but nothing inbetween them.
  3924. </para>
  3925. <para>
  3926. This comparison will count how many possible floating point values are between
  3927. the left and the right number. If the number of possible values between both
  3928. numbers is less than or equal to maxUlps, then the numbers are considered as
  3929. being equal.
  3930. </para>
  3931. <para>
  3932. Implementation partially follows the code outlined here:
  3933. http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
  3934. </para>
  3935. </remarks>
  3936. </member>
  3937. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)">
  3938. <summary>Compares two double precision floating point values for equality</summary>
  3939. <param name="left">First double precision floating point value to be compared</param>
  3940. <param name="right">Second double precision floating point value t be compared</param>
  3941. <param name="maxUlps">
  3942. Maximum number of representable double precision floating point values that are
  3943. allowed to be between the left and the right double precision floating point values
  3944. </param>
  3945. <returns>True if both numbers are equal or close to being equal</returns>
  3946. <remarks>
  3947. <para>
  3948. Double precision floating point values can only represent a limited series of
  3949. natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004
  3950. can be stored in a double, but nothing inbetween them.
  3951. </para>
  3952. <para>
  3953. This comparison will count how many possible double precision floating point
  3954. values are between the left and the right number. If the number of possible
  3955. values between both numbers is less than or equal to maxUlps, then the numbers
  3956. are considered as being equal.
  3957. </para>
  3958. <para>
  3959. Implementation partially follows the code outlined here:
  3960. http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
  3961. </para>
  3962. </remarks>
  3963. </member>
  3964. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)">
  3965. <summary>
  3966. Reinterprets the memory contents of a floating point value as an integer value
  3967. </summary>
  3968. <param name="value">
  3969. Floating point value whose memory contents to reinterpret
  3970. </param>
  3971. <returns>
  3972. The memory contents of the floating point value interpreted as an integer
  3973. </returns>
  3974. </member>
  3975. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)">
  3976. <summary>
  3977. Reinterprets the memory contents of a double precision floating point
  3978. value as an integer value
  3979. </summary>
  3980. <param name="value">
  3981. Double precision floating point value whose memory contents to reinterpret
  3982. </param>
  3983. <returns>
  3984. The memory contents of the double precision floating point value
  3985. interpreted as an integer
  3986. </returns>
  3987. </member>
  3988. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)">
  3989. <summary>
  3990. Reinterprets the memory contents of an integer as a floating point value
  3991. </summary>
  3992. <param name="value">Integer value whose memory contents to reinterpret</param>
  3993. <returns>
  3994. The memory contents of the integer value interpreted as a floating point value
  3995. </returns>
  3996. </member>
  3997. <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)">
  3998. <summary>
  3999. Reinterprets the memory contents of an integer value as a double precision
  4000. floating point value
  4001. </summary>
  4002. <param name="value">Integer whose memory contents to reinterpret</param>
  4003. <returns>
  4004. The memory contents of the integer interpreted as a double precision
  4005. floating point value
  4006. </returns>
  4007. </member>
  4008. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion">
  4009. <summary>Union of a floating point variable and an integer</summary>
  4010. </member>
  4011. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float">
  4012. <summary>The union's value as a floating point variable</summary>
  4013. </member>
  4014. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int">
  4015. <summary>The union's value as an integer</summary>
  4016. </member>
  4017. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt">
  4018. <summary>The union's value as an unsigned integer</summary>
  4019. </member>
  4020. <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion">
  4021. <summary>Union of a double precision floating point variable and a long</summary>
  4022. </member>
  4023. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double">
  4024. <summary>The union's value as a double precision floating point variable</summary>
  4025. </member>
  4026. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long">
  4027. <summary>The union's value as a long</summary>
  4028. </member>
  4029. <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong">
  4030. <summary>The union's value as an unsigned long</summary>
  4031. </member>
  4032. <member name="T:NUnit.Framework.Constraints.PredicateConstraint`1">
  4033. <summary>
  4034. Predicate constraint wraps a Predicate in a constraint,
  4035. returning success if the predicate is true.
  4036. </summary>
  4037. </member>
  4038. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
  4039. <summary>
  4040. Construct a PredicateConstraint from a predicate
  4041. </summary>
  4042. </member>
  4043. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)">
  4044. <summary>
  4045. Determines whether the predicate succeeds when applied
  4046. to the actual value.
  4047. </summary>
  4048. </member>
  4049. <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
  4050. <summary>
  4051. Writes the description to a MessageWriter
  4052. </summary>
  4053. </member>
  4054. <member name="T:NUnit.Framework.TestCaseData">
  4055. <summary>
  4056. The TestCaseData class represents a set of arguments
  4057. and other parameter info to be used for a parameterized
  4058. test case. It provides a number of instance modifiers
  4059. for use in initializing the test case.
  4060. Note: Instance modifiers are getters that return
  4061. the same instance after modifying it's state.
  4062. </summary>
  4063. </member>
  4064. <member name="T:NUnit.Framework.ITestCaseData">
  4065. <summary>
  4066. The ITestCaseData interface is implemented by a class
  4067. that is able to return complete testcases for use by
  4068. a parameterized test method.
  4069. NOTE: This interface is used in both the framework
  4070. and the core, even though that results in two different
  4071. types. However, sharing the source code guarantees that
  4072. the various implementations will be compatible and that
  4073. the core is able to reflect successfully over the
  4074. framework implementations of ITestCaseData.
  4075. </summary>
  4076. </member>
  4077. <member name="P:NUnit.Framework.ITestCaseData.Arguments">
  4078. <summary>
  4079. Gets the argument list to be provided to the test
  4080. </summary>
  4081. </member>
  4082. <member name="P:NUnit.Framework.ITestCaseData.Result">
  4083. <summary>
  4084. Gets the expected result
  4085. </summary>
  4086. </member>
  4087. <member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
  4088. <summary>
  4089. Gets the expected exception Type
  4090. </summary>
  4091. </member>
  4092. <member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
  4093. <summary>
  4094. Gets the FullName of the expected exception
  4095. </summary>
  4096. </member>
  4097. <member name="P:NUnit.Framework.ITestCaseData.TestName">
  4098. <summary>
  4099. Gets the name to be used for the test
  4100. </summary>
  4101. </member>
  4102. <member name="P:NUnit.Framework.ITestCaseData.Description">
  4103. <summary>
  4104. Gets the description of the test
  4105. </summary>
  4106. </member>
  4107. <member name="P:NUnit.Framework.ITestCaseData.Ignored">
  4108. <summary>
  4109. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
  4110. </summary>
  4111. <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
  4112. </member>
  4113. <member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
  4114. <summary>
  4115. Gets the ignore reason.
  4116. </summary>
  4117. <value>The ignore reason.</value>
  4118. </member>
  4119. <member name="F:NUnit.Framework.TestCaseData.arguments">
  4120. <summary>
  4121. The argument list to be provided to the test
  4122. </summary>
  4123. </member>
  4124. <member name="F:NUnit.Framework.TestCaseData.result">
  4125. <summary>
  4126. The expected result to be returned
  4127. </summary>
  4128. </member>
  4129. <member name="F:NUnit.Framework.TestCaseData.expectedExceptionType">
  4130. <summary>
  4131. The expected exception Type
  4132. </summary>
  4133. </member>
  4134. <member name="F:NUnit.Framework.TestCaseData.expectedExceptionName">
  4135. <summary>
  4136. The FullName of the expected exception
  4137. </summary>
  4138. </member>
  4139. <member name="F:NUnit.Framework.TestCaseData.testName">
  4140. <summary>
  4141. The name to be used for the test
  4142. </summary>
  4143. </member>
  4144. <member name="F:NUnit.Framework.TestCaseData.description">
  4145. <summary>
  4146. The description of the test
  4147. </summary>
  4148. </member>
  4149. <member name="F:NUnit.Framework.TestCaseData.properties">
  4150. <summary>
  4151. A dictionary of properties, used to add information
  4152. to tests without requiring the class to change.
  4153. </summary>
  4154. </member>
  4155. <member name="F:NUnit.Framework.TestCaseData.isIgnored">
  4156. <summary>
  4157. If true, indicates that the test case is to be ignored
  4158. </summary>
  4159. </member>
  4160. <member name="F:NUnit.Framework.TestCaseData.ignoreReason">
  4161. <summary>
  4162. The reason for ignoring a test case
  4163. </summary>
  4164. </member>
  4165. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object[])">
  4166. <summary>
  4167. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  4168. </summary>
  4169. <param name="args">The arguments.</param>
  4170. </member>
  4171. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object)">
  4172. <summary>
  4173. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  4174. </summary>
  4175. <param name="arg">The argument.</param>
  4176. </member>
  4177. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)">
  4178. <summary>
  4179. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  4180. </summary>
  4181. <param name="arg1">The first argument.</param>
  4182. <param name="arg2">The second argument.</param>
  4183. </member>
  4184. <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)">
  4185. <summary>
  4186. Initializes a new instance of the <see cref="T:TestCaseData"/> class.
  4187. </summary>
  4188. <param name="arg1">The first argument.</param>
  4189. <param name="arg2">The second argument.</param>
  4190. <param name="arg3">The third argument.</param>
  4191. </member>
  4192. <member name="M:NUnit.Framework.TestCaseData.Returns(System.Object)">
  4193. <summary>
  4194. Sets the expected result for the test
  4195. </summary>
  4196. <param name="result">The expected result</param>
  4197. <returns>A modified TestCaseData</returns>
  4198. </member>
  4199. <member name="M:NUnit.Framework.TestCaseData.Throws(System.Type)">
  4200. <summary>
  4201. Sets the expected exception type for the test
  4202. </summary>
  4203. <param name="exceptionType">Type of the expected exception.</param>
  4204. <returns>The modified TestCaseData instance</returns>
  4205. </member>
  4206. <member name="M:NUnit.Framework.TestCaseData.Throws(System.String)">
  4207. <summary>
  4208. Sets the expected exception type for the test
  4209. </summary>
  4210. <param name="exceptionName">FullName of the expected exception.</param>
  4211. <returns>The modified TestCaseData instance</returns>
  4212. </member>
  4213. <member name="M:NUnit.Framework.TestCaseData.SetName(System.String)">
  4214. <summary>
  4215. Sets the name of the test case
  4216. </summary>
  4217. <returns>The modified TestCaseData instance</returns>
  4218. </member>
  4219. <member name="M:NUnit.Framework.TestCaseData.SetDescription(System.String)">
  4220. <summary>
  4221. Sets the description for the test case
  4222. being constructed.
  4223. </summary>
  4224. <param name="description">The description.</param>
  4225. <returns>The modified TestCaseData instance.</returns>
  4226. </member>
  4227. <member name="M:NUnit.Framework.TestCaseData.SetCategory(System.String)">
  4228. <summary>
  4229. Applies a category to the test
  4230. </summary>
  4231. <param name="category"></param>
  4232. <returns></returns>
  4233. </member>
  4234. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)">
  4235. <summary>
  4236. Applies a named property to the test
  4237. </summary>
  4238. <param name="propName"></param>
  4239. <param name="propValue"></param>
  4240. <returns></returns>
  4241. </member>
  4242. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)">
  4243. <summary>
  4244. Applies a named property to the test
  4245. </summary>
  4246. <param name="propName"></param>
  4247. <param name="propValue"></param>
  4248. <returns></returns>
  4249. </member>
  4250. <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)">
  4251. <summary>
  4252. Applies a named property to the test
  4253. </summary>
  4254. <param name="propName"></param>
  4255. <param name="propValue"></param>
  4256. <returns></returns>
  4257. </member>
  4258. <member name="M:NUnit.Framework.TestCaseData.Ignore">
  4259. <summary>
  4260. Ignores this TestCase.
  4261. </summary>
  4262. <returns></returns>
  4263. </member>
  4264. <member name="M:NUnit.Framework.TestCaseData.Ignore(System.String)">
  4265. <summary>
  4266. Ignores this TestCase, specifying the reason.
  4267. </summary>
  4268. <param name="reason">The reason.</param>
  4269. <returns></returns>
  4270. </member>
  4271. <member name="P:NUnit.Framework.TestCaseData.Arguments">
  4272. <summary>
  4273. Gets the argument list to be provided to the test
  4274. </summary>
  4275. </member>
  4276. <member name="P:NUnit.Framework.TestCaseData.Result">
  4277. <summary>
  4278. Gets the expected result
  4279. </summary>
  4280. </member>
  4281. <member name="P:NUnit.Framework.TestCaseData.ExpectedException">
  4282. <summary>
  4283. Gets the expected exception Type
  4284. </summary>
  4285. </member>
  4286. <member name="P:NUnit.Framework.TestCaseData.ExpectedExceptionName">
  4287. <summary>
  4288. Gets the FullName of the expected exception
  4289. </summary>
  4290. </member>
  4291. <member name="P:NUnit.Framework.TestCaseData.TestName">
  4292. <summary>
  4293. Gets the name to be used for the test
  4294. </summary>
  4295. </member>
  4296. <member name="P:NUnit.Framework.TestCaseData.Description">
  4297. <summary>
  4298. Gets the description of the test
  4299. </summary>
  4300. </member>
  4301. <member name="P:NUnit.Framework.TestCaseData.Ignored">
  4302. <summary>
  4303. Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
  4304. </summary>
  4305. <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
  4306. </member>
  4307. <member name="P:NUnit.Framework.TestCaseData.IgnoreReason">
  4308. <summary>
  4309. Gets the ignore reason.
  4310. </summary>
  4311. <value>The ignore reason.</value>
  4312. </member>
  4313. <member name="P:NUnit.Framework.TestCaseData.Categories">
  4314. <summary>
  4315. Gets a list of categories associated with this test.
  4316. </summary>
  4317. </member>
  4318. <member name="P:NUnit.Framework.TestCaseData.Properties">
  4319. <summary>
  4320. Gets the property dictionary for this test
  4321. </summary>
  4322. </member>
  4323. <member name="T:NUnit.Framework.TestCaseSourceAttribute">
  4324. <summary>
  4325. FactoryAttribute indicates the source to be used to
  4326. provide test cases for a test method.
  4327. </summary>
  4328. </member>
  4329. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
  4330. <summary>
  4331. Construct with the name of the factory - for use with languages
  4332. that don't support params arrays.
  4333. </summary>
  4334. <param name="sourceName">An array of the names of the factories that will provide data</param>
  4335. </member>
  4336. <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
  4337. <summary>
  4338. Construct with a Type and name - for use with languages
  4339. that don't support params arrays.
  4340. </summary>
  4341. <param name="sourceType">The Type that will provide data</param>
  4342. <param name="sourceName">The name of the method, property or field that will provide data</param>
  4343. </member>
  4344. <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
  4345. <summary>
  4346. The name of a the method, property or fiend to be used as a source
  4347. </summary>
  4348. </member>
  4349. <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
  4350. <summary>
  4351. A Type to be used as a source
  4352. </summary>
  4353. </member>
  4354. <member name="T:NUnit.Framework.Has">
  4355. <summary>
  4356. Helper class with properties and methods that supply
  4357. a number of constraints used in Asserts.
  4358. </summary>
  4359. </member>
  4360. <member name="M:NUnit.Framework.Has.Property(System.String)">
  4361. <summary>
  4362. Returns a new PropertyConstraintExpression, which will either
  4363. test for the existence of the named property on the object
  4364. being tested or apply any following constraint to that property.
  4365. </summary>
  4366. </member>
  4367. <member name="M:NUnit.Framework.Has.Attribute(System.Type)">
  4368. <summary>
  4369. Returns a new AttributeConstraint checking for the
  4370. presence of a particular attribute on an object.
  4371. </summary>
  4372. </member>
  4373. <member name="M:NUnit.Framework.Has.Attribute``1">
  4374. <summary>
  4375. Returns a new AttributeConstraint checking for the
  4376. presence of a particular attribute on an object.
  4377. </summary>
  4378. </member>
  4379. <member name="M:NUnit.Framework.Has.Member(System.Object)">
  4380. <summary>
  4381. Returns a new CollectionContainsConstraint checking for the
  4382. presence of a particular object in the collection.
  4383. </summary>
  4384. </member>
  4385. <member name="P:NUnit.Framework.Has.No">
  4386. <summary>
  4387. Returns a ConstraintExpression that negates any
  4388. following constraint.
  4389. </summary>
  4390. </member>
  4391. <member name="P:NUnit.Framework.Has.All">
  4392. <summary>
  4393. Returns a ConstraintExpression, which will apply
  4394. the following constraint to all members of a collection,
  4395. succeeding if all of them succeed.
  4396. </summary>
  4397. </member>
  4398. <member name="P:NUnit.Framework.Has.Some">
  4399. <summary>
  4400. Returns a ConstraintExpression, which will apply
  4401. the following constraint to all members of a collection,
  4402. succeeding if at least one of them succeeds.
  4403. </summary>
  4404. </member>
  4405. <member name="P:NUnit.Framework.Has.None">
  4406. <summary>
  4407. Returns a ConstraintExpression, which will apply
  4408. the following constraint to all members of a collection,
  4409. succeeding if all of them fail.
  4410. </summary>
  4411. </member>
  4412. <member name="P:NUnit.Framework.Has.Length">
  4413. <summary>
  4414. Returns a new ConstraintExpression, which will apply the following
  4415. constraint to the Length property of the object being tested.
  4416. </summary>
  4417. </member>
  4418. <member name="P:NUnit.Framework.Has.Count">
  4419. <summary>
  4420. Returns a new ConstraintExpression, which will apply the following
  4421. constraint to the Count property of the object being tested.
  4422. </summary>
  4423. </member>
  4424. <member name="P:NUnit.Framework.Has.Message">
  4425. <summary>
  4426. Returns a new ConstraintExpression, which will apply the following
  4427. constraint to the Message property of the object being tested.
  4428. </summary>
  4429. </member>
  4430. <member name="P:NUnit.Framework.Has.InnerException">
  4431. <summary>
  4432. Returns a new ConstraintExpression, which will apply the following
  4433. constraint to the InnerException property of the object being tested.
  4434. </summary>
  4435. </member>
  4436. <member name="T:NUnit.Framework.List">
  4437. <summary>
  4438. The List class is a helper class with properties and methods
  4439. that supply a number of constraints used with lists and collections.
  4440. </summary>
  4441. </member>
  4442. <member name="M:NUnit.Framework.List.Map(System.Collections.ICollection)">
  4443. <summary>
  4444. List.Map returns a ListMapper, which can be used to map
  4445. the original collection to another collection.
  4446. </summary>
  4447. <param name="actual"></param>
  4448. <returns></returns>
  4449. </member>
  4450. <member name="T:NUnit.Framework.MessageMatch">
  4451. <summary>
  4452. Enumeration indicating how the expected message parameter is to be used
  4453. </summary>
  4454. </member>
  4455. <member name="F:NUnit.Framework.MessageMatch.Exact">
  4456. Expect an exact match
  4457. </member>
  4458. <member name="F:NUnit.Framework.MessageMatch.Contains">
  4459. Expect a message containing the parameter string
  4460. </member>
  4461. <member name="F:NUnit.Framework.MessageMatch.Regex">
  4462. Match the regular expression provided as a parameter
  4463. </member>
  4464. <member name="F:NUnit.Framework.MessageMatch.StartsWith">
  4465. Expect a message that starts with the parameter string
  4466. </member>
  4467. <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
  4468. <summary>
  4469. ExpectedExceptionAttribute
  4470. </summary>
  4471. </member>
  4472. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
  4473. <summary>
  4474. Constructor for a non-specific exception
  4475. </summary>
  4476. </member>
  4477. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
  4478. <summary>
  4479. Constructor for a given type of exception
  4480. </summary>
  4481. <param name="exceptionType">The type of the expected exception</param>
  4482. </member>
  4483. <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
  4484. <summary>
  4485. Constructor for a given exception name
  4486. </summary>
  4487. <param name="exceptionName">The full name of the expected exception</param>
  4488. </member>
  4489. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
  4490. <summary>
  4491. Gets or sets the expected exception type
  4492. </summary>
  4493. </member>
  4494. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
  4495. <summary>
  4496. Gets or sets the full Type name of the expected exception
  4497. </summary>
  4498. </member>
  4499. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
  4500. <summary>
  4501. Gets or sets the expected message text
  4502. </summary>
  4503. </member>
  4504. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
  4505. <summary>
  4506. Gets or sets the user message displayed in case of failure
  4507. </summary>
  4508. </member>
  4509. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
  4510. <summary>
  4511. Gets or sets the type of match to be performed on the expected message
  4512. </summary>
  4513. </member>
  4514. <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
  4515. <summary>
  4516. Gets the name of a method to be used as an exception handler
  4517. </summary>
  4518. </member>
  4519. <member name="T:NUnit.Framework.TestCaseAttribute">
  4520. <summary>
  4521. TestCaseAttribute is used to mark parameterized test cases
  4522. and provide them with their arguments.
  4523. </summary>
  4524. </member>
  4525. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
  4526. <summary>
  4527. Construct a TestCaseAttribute with a list of arguments.
  4528. This constructor is not CLS-Compliant
  4529. </summary>
  4530. <param name="arguments"></param>
  4531. </member>
  4532. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
  4533. <summary>
  4534. Construct a TestCaseAttribute with a single argument
  4535. </summary>
  4536. <param name="arg"></param>
  4537. </member>
  4538. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
  4539. <summary>
  4540. Construct a TestCaseAttribute with a two arguments
  4541. </summary>
  4542. <param name="arg1"></param>
  4543. <param name="arg2"></param>
  4544. </member>
  4545. <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
  4546. <summary>
  4547. Construct a TestCaseAttribute with a three arguments
  4548. </summary>
  4549. <param name="arg1"></param>
  4550. <param name="arg2"></param>
  4551. <param name="arg3"></param>
  4552. </member>
  4553. <member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
  4554. <summary>
  4555. Gets the list of arguments to a test case
  4556. </summary>
  4557. </member>
  4558. <member name="P:NUnit.Framework.TestCaseAttribute.Result">
  4559. <summary>
  4560. Gets or sets the expected result.
  4561. </summary>
  4562. <value>The result.</value>
  4563. </member>
  4564. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
  4565. <summary>
  4566. Gets or sets the expected exception.
  4567. </summary>
  4568. <value>The expected exception.</value>
  4569. </member>
  4570. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
  4571. <summary>
  4572. Gets or sets the name the expected exception.
  4573. </summary>
  4574. <value>The expected name of the exception.</value>
  4575. </member>
  4576. <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
  4577. <summary>
  4578. Gets or sets the expected message of the expected exception
  4579. </summary>
  4580. <value>The expected message of the exception.</value>
  4581. </member>
  4582. <member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
  4583. <summary>
  4584. Gets or sets the type of match to be performed on the expected message
  4585. </summary>
  4586. </member>
  4587. <member name="P:NUnit.Framework.TestCaseAttribute.Description">
  4588. <summary>
  4589. Gets or sets the description.
  4590. </summary>
  4591. <value>The description.</value>
  4592. </member>
  4593. <member name="P:NUnit.Framework.TestCaseAttribute.TestName">
  4594. <summary>
  4595. Gets or sets the name of the test.
  4596. </summary>
  4597. <value>The name of the test.</value>
  4598. </member>
  4599. <member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
  4600. <summary>
  4601. Gets or sets the ignored status of the test
  4602. </summary>
  4603. </member>
  4604. <member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
  4605. <summary>
  4606. Gets or sets the ignored status of the test
  4607. </summary>
  4608. </member>
  4609. <member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
  4610. <summary>
  4611. Gets the ignore reason.
  4612. </summary>
  4613. <value>The ignore reason.</value>
  4614. </member>
  4615. <member name="T:NUnit.Framework.SuccessException">
  4616. <summary>
  4617. Thrown when an assertion failed.
  4618. </summary>
  4619. </member>
  4620. <member name="M:NUnit.Framework.SuccessException.#ctor(System.String)">
  4621. <param name="message"></param>
  4622. </member>
  4623. <member name="M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)">
  4624. <param name="message">The error message that explains
  4625. the reason for the exception</param>
  4626. <param name="inner">The exception that caused the
  4627. current exception</param>
  4628. </member>
  4629. <member name="M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  4630. <summary>
  4631. Serialization Constructor
  4632. </summary>
  4633. </member>
  4634. <member name="T:NUnit.Framework.InconclusiveException">
  4635. <summary>
  4636. Thrown when a test executes inconclusively.
  4637. </summary>
  4638. </member>
  4639. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String)">
  4640. <param name="message">The error message that explains
  4641. the reason for the exception</param>
  4642. </member>
  4643. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)">
  4644. <param name="message">The error message that explains
  4645. the reason for the exception</param>
  4646. <param name="inner">The exception that caused the
  4647. current exception</param>
  4648. </member>
  4649. <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  4650. <summary>
  4651. Serialization Constructor
  4652. </summary>
  4653. </member>
  4654. <member name="T:NUnit.Framework.TestDelegate">
  4655. <summary>
  4656. Delegate used by tests that execute code and
  4657. capture any thrown exception.
  4658. </summary>
  4659. </member>
  4660. <member name="T:NUnit.Framework.Assert">
  4661. <summary>
  4662. The Assert class contains a collection of static methods that
  4663. implement the most common assertions used in NUnit.
  4664. </summary>
  4665. </member>
  4666. <member name="M:NUnit.Framework.Assert.#ctor">
  4667. <summary>
  4668. We don't actually want any instances of this object, but some people
  4669. like to inherit from it to add other static methods. Hence, the
  4670. protected constructor disallows any instances of this object.
  4671. </summary>
  4672. </member>
  4673. <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
  4674. <summary>
  4675. The Equals method throws an AssertionException. This is done
  4676. to make sure there is no mistake by calling this function.
  4677. </summary>
  4678. <param name="a"></param>
  4679. <param name="b"></param>
  4680. </member>
  4681. <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
  4682. <summary>
  4683. override the default ReferenceEquals to throw an AssertionException. This
  4684. implementation makes sure there is no mistake in calling this function
  4685. as part of Assert.
  4686. </summary>
  4687. <param name="a"></param>
  4688. <param name="b"></param>
  4689. </member>
  4690. <member name="M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  4691. <summary>
  4692. Helper for Assert.AreEqual(double expected, double actual, ...)
  4693. allowing code generation to work consistently.
  4694. </summary>
  4695. <param name="expected">The expected value</param>
  4696. <param name="actual">The actual value</param>
  4697. <param name="delta">The maximum acceptable difference between the
  4698. the expected and the actual</param>
  4699. <param name="message">The message to display in case of failure</param>
  4700. <param name="args">Array of objects to be used in formatting the message</param>
  4701. </member>
  4702. <member name="M:NUnit.Framework.Assert.Pass(System.String,System.Object[])">
  4703. <summary>
  4704. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  4705. that are passed in. This allows a test to be cut short, with a result
  4706. of success returned to NUnit.
  4707. </summary>
  4708. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  4709. <param name="args">Arguments to be used in formatting the message</param>
  4710. </member>
  4711. <member name="M:NUnit.Framework.Assert.Pass(System.String)">
  4712. <summary>
  4713. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  4714. that are passed in. This allows a test to be cut short, with a result
  4715. of success returned to NUnit.
  4716. </summary>
  4717. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  4718. </member>
  4719. <member name="M:NUnit.Framework.Assert.Pass">
  4720. <summary>
  4721. Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
  4722. that are passed in. This allows a test to be cut short, with a result
  4723. of success returned to NUnit.
  4724. </summary>
  4725. </member>
  4726. <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
  4727. <summary>
  4728. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
  4729. that are passed in. This is used by the other Assert functions.
  4730. </summary>
  4731. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  4732. <param name="args">Arguments to be used in formatting the message</param>
  4733. </member>
  4734. <member name="M:NUnit.Framework.Assert.Fail(System.String)">
  4735. <summary>
  4736. Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
  4737. passed in. This is used by the other Assert functions.
  4738. </summary>
  4739. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  4740. </member>
  4741. <member name="M:NUnit.Framework.Assert.Fail">
  4742. <summary>
  4743. Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
  4744. This is used by the other Assert functions.
  4745. </summary>
  4746. </member>
  4747. <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
  4748. <summary>
  4749. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
  4750. that are passed in. This causes the test to be reported as ignored.
  4751. </summary>
  4752. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  4753. <param name="args">Arguments to be used in formatting the message</param>
  4754. </member>
  4755. <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
  4756. <summary>
  4757. Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
  4758. passed in. This causes the test to be reported as ignored.
  4759. </summary>
  4760. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
  4761. </member>
  4762. <member name="M:NUnit.Framework.Assert.Ignore">
  4763. <summary>
  4764. Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
  4765. This causes the test to be reported as ignored.
  4766. </summary>
  4767. </member>
  4768. <member name="M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
  4769. <summary>
  4770. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message and arguments
  4771. that are passed in. This causes the test to be reported as inconclusive.
  4772. </summary>
  4773. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
  4774. <param name="args">Arguments to be used in formatting the message</param>
  4775. </member>
  4776. <member name="M:NUnit.Framework.Assert.Inconclusive(System.String)">
  4777. <summary>
  4778. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message that is
  4779. passed in. This causes the test to be reported as inconclusive.
  4780. </summary>
  4781. <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
  4782. </member>
  4783. <member name="M:NUnit.Framework.Assert.Inconclusive">
  4784. <summary>
  4785. Throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  4786. This causes the test to be reported as Inconclusive.
  4787. </summary>
  4788. </member>
  4789. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  4790. <summary>
  4791. Apply a constraint to an actual value, succeeding if the constraint
  4792. is satisfied and throwing an assertion exception on failure.
  4793. </summary>
  4794. <param name="expression">A Constraint to be applied</param>
  4795. <param name="actual">The actual value to test</param>
  4796. </member>
  4797. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  4798. <summary>
  4799. Apply a constraint to an actual value, succeeding if the constraint
  4800. is satisfied and throwing an assertion exception on failure.
  4801. </summary>
  4802. <param name="expression">A Constraint to be applied</param>
  4803. <param name="actual">The actual value to test</param>
  4804. <param name="message">The message that will be displayed on failure</param>
  4805. </member>
  4806. <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  4807. <summary>
  4808. Apply a constraint to an actual value, succeeding if the constraint
  4809. is satisfied and throwing an assertion exception on failure.
  4810. </summary>
  4811. <param name="expression">A Constraint expression to be applied</param>
  4812. <param name="actual">The actual value to test</param>
  4813. <param name="message">The message that will be displayed on failure</param>
  4814. <param name="args">Arguments to be used in formatting the message</param>
  4815. </member>
  4816. <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  4817. <summary>
  4818. Apply a constraint to an actual value, succeeding if the constraint
  4819. is satisfied and throwing an assertion exception on failure.
  4820. </summary>
  4821. <param name="expr">A Constraint expression to be applied</param>
  4822. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  4823. </member>
  4824. <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  4825. <summary>
  4826. Apply a constraint to an actual value, succeeding if the constraint
  4827. is satisfied and throwing an assertion exception on failure.
  4828. </summary>
  4829. <param name="expr">A Constraint expression to be applied</param>
  4830. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  4831. <param name="message">The message that will be displayed on failure</param>
  4832. </member>
  4833. <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  4834. <summary>
  4835. Apply a constraint to an actual value, succeeding if the constraint
  4836. is satisfied and throwing an assertion exception on failure.
  4837. </summary>
  4838. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  4839. <param name="expr">A Constraint expression to be applied</param>
  4840. <param name="message">The message that will be displayed on failure</param>
  4841. <param name="args">Arguments to be used in formatting the message</param>
  4842. </member>
  4843. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  4844. <summary>
  4845. Apply a constraint to a referenced value, succeeding if the constraint
  4846. is satisfied and throwing an assertion exception on failure.
  4847. </summary>
  4848. <param name="expression">A Constraint to be applied</param>
  4849. <param name="actual">The actual value to test</param>
  4850. </member>
  4851. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  4852. <summary>
  4853. Apply a constraint to a referenced value, succeeding if the constraint
  4854. is satisfied and throwing an assertion exception on failure.
  4855. </summary>
  4856. <param name="expression">A Constraint to be applied</param>
  4857. <param name="actual">The actual value to test</param>
  4858. <param name="message">The message that will be displayed on failure</param>
  4859. </member>
  4860. <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  4861. <summary>
  4862. Apply a constraint to a referenced value, succeeding if the constraint
  4863. is satisfied and throwing an assertion exception on failure.
  4864. </summary>
  4865. <param name="expression">A Constraint to be applied</param>
  4866. <param name="actual">The actual value to test</param>
  4867. <param name="message">The message that will be displayed on failure</param>
  4868. <param name="args">Arguments to be used in formatting the message</param>
  4869. </member>
  4870. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])">
  4871. <summary>
  4872. Asserts that a condition is true. If the condition is false the method throws
  4873. an <see cref="T:NUnit.Framework.AssertionException"/>.
  4874. </summary>
  4875. <param name="condition">The evaluated condition</param>
  4876. <param name="message">The message to display if the condition is false</param>
  4877. <param name="args">Arguments to be used in formatting the message</param>
  4878. </member>
  4879. <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
  4880. <summary>
  4881. Asserts that a condition is true. If the condition is false the method throws
  4882. an <see cref="T:NUnit.Framework.AssertionException"/>.
  4883. </summary>
  4884. <param name="condition">The evaluated condition</param>
  4885. <param name="message">The message to display if the condition is false</param>
  4886. </member>
  4887. <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
  4888. <summary>
  4889. Asserts that a condition is true. If the condition is false the method throws
  4890. an <see cref="T:NUnit.Framework.AssertionException"/>.
  4891. </summary>
  4892. <param name="condition">The evaluated condition</param>
  4893. </member>
  4894. <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  4895. <summary>
  4896. Asserts that the code represented by a delegate throws an exception
  4897. that satisfies the constraint provided.
  4898. </summary>
  4899. <param name="code">A TestDelegate to be executed</param>
  4900. <param name="constraint">A ThrowsConstraint used in the test</param>
  4901. </member>
  4902. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  4903. <summary>
  4904. Verifies that a delegate throws a particular exception when called.
  4905. </summary>
  4906. <param name="expression">A constraint to be satisfied by the exception</param>
  4907. <param name="code">A TestSnippet delegate</param>
  4908. <param name="message">The message that will be displayed on failure</param>
  4909. <param name="args">Arguments to be used in formatting the message</param>
  4910. </member>
  4911. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)">
  4912. <summary>
  4913. Verifies that a delegate throws a particular exception when called.
  4914. </summary>
  4915. <param name="expression">A constraint to be satisfied by the exception</param>
  4916. <param name="code">A TestSnippet delegate</param>
  4917. <param name="message">The message that will be displayed on failure</param>
  4918. </member>
  4919. <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)">
  4920. <summary>
  4921. Verifies that a delegate throws a particular exception when called.
  4922. </summary>
  4923. <param name="expression">A constraint to be satisfied by the exception</param>
  4924. <param name="code">A TestSnippet delegate</param>
  4925. </member>
  4926. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  4927. <summary>
  4928. Verifies that a delegate throws a particular exception when called.
  4929. </summary>
  4930. <param name="expectedExceptionType">The exception Type expected</param>
  4931. <param name="code">A TestSnippet delegate</param>
  4932. <param name="message">The message that will be displayed on failure</param>
  4933. <param name="args">Arguments to be used in formatting the message</param>
  4934. </member>
  4935. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)">
  4936. <summary>
  4937. Verifies that a delegate throws a particular exception when called.
  4938. </summary>
  4939. <param name="expectedExceptionType">The exception Type expected</param>
  4940. <param name="code">A TestSnippet delegate</param>
  4941. <param name="message">The message that will be displayed on failure</param>
  4942. </member>
  4943. <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)">
  4944. <summary>
  4945. Verifies that a delegate throws a particular exception when called.
  4946. </summary>
  4947. <param name="expectedExceptionType">The exception Type expected</param>
  4948. <param name="code">A TestSnippet delegate</param>
  4949. </member>
  4950. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  4951. <summary>
  4952. Verifies that a delegate throws a particular exception when called.
  4953. </summary>
  4954. <typeparam name="T">Type of the expected exception</typeparam>
  4955. <param name="code">A TestSnippet delegate</param>
  4956. <param name="message">The message that will be displayed on failure</param>
  4957. <param name="args">Arguments to be used in formatting the message</param>
  4958. </member>
  4959. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)">
  4960. <summary>
  4961. Verifies that a delegate throws a particular exception when called.
  4962. </summary>
  4963. <typeparam name="T">Type of the expected exception</typeparam>
  4964. <param name="code">A TestSnippet delegate</param>
  4965. <param name="message">The message that will be displayed on failure</param>
  4966. </member>
  4967. <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)">
  4968. <summary>
  4969. Verifies that a delegate throws a particular exception when called.
  4970. </summary>
  4971. <typeparam name="T">Type of the expected exception</typeparam>
  4972. <param name="code">A TestSnippet delegate</param>
  4973. </member>
  4974. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  4975. <summary>
  4976. Verifies that a delegate throws an exception when called
  4977. and returns it.
  4978. </summary>
  4979. <param name="code">A TestDelegate</param>
  4980. <param name="message">The message that will be displayed on failure</param>
  4981. <param name="args">Arguments to be used in formatting the message</param>
  4982. </member>
  4983. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String)">
  4984. <summary>
  4985. Verifies that a delegate throws an exception when called
  4986. and returns it.
  4987. </summary>
  4988. <param name="code">A TestDelegate</param>
  4989. <param name="message">The message that will be displayed on failure</param>
  4990. </member>
  4991. <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)">
  4992. <summary>
  4993. Verifies that a delegate throws an exception when called
  4994. and returns it.
  4995. </summary>
  4996. <param name="code">A TestDelegate</param>
  4997. </member>
  4998. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
  4999. <summary>
  5000. Verifies that a delegate throws an exception of a certain Type
  5001. or one derived from it when called and returns it.
  5002. </summary>
  5003. <param name="expectedExceptionType">The expected Exception Type</param>
  5004. <param name="code">A TestDelegate</param>
  5005. <param name="message">The message that will be displayed on failure</param>
  5006. <param name="args">Arguments to be used in formatting the message</param>
  5007. </member>
  5008. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)">
  5009. <summary>
  5010. Verifies that a delegate throws an exception of a certain Type
  5011. or one derived from it when called and returns it.
  5012. </summary>
  5013. <param name="expectedExceptionType">The expected Exception Type</param>
  5014. <param name="code">A TestDelegate</param>
  5015. <param name="message">The message that will be displayed on failure</param>
  5016. </member>
  5017. <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)">
  5018. <summary>
  5019. Verifies that a delegate throws an exception of a certain Type
  5020. or one derived from it when called and returns it.
  5021. </summary>
  5022. <param name="expectedExceptionType">The expected Exception Type</param>
  5023. <param name="code">A TestDelegate</param>
  5024. </member>
  5025. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  5026. <summary>
  5027. Verifies that a delegate throws an exception of a certain Type
  5028. or one derived from it when called and returns it.
  5029. </summary>
  5030. <typeparam name="T">The expected Exception Type</typeparam>
  5031. <param name="code">A TestDelegate</param>
  5032. <param name="message">The message that will be displayed on failure</param>
  5033. <param name="args">Arguments to be used in formatting the message</param>
  5034. </member>
  5035. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)">
  5036. <summary>
  5037. Verifies that a delegate throws an exception of a certain Type
  5038. or one derived from it when called and returns it.
  5039. </summary>
  5040. <typeparam name="T">The expected Exception Type</typeparam>
  5041. <param name="code">A TestDelegate</param>
  5042. <param name="message">The message that will be displayed on failure</param>
  5043. </member>
  5044. <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)">
  5045. <summary>
  5046. Verifies that a delegate throws an exception of a certain Type
  5047. or one derived from it when called and returns it.
  5048. </summary>
  5049. <typeparam name="T">The expected Exception Type</typeparam>
  5050. <param name="code">A TestDelegate</param>
  5051. </member>
  5052. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])">
  5053. <summary>
  5054. Verifies that a delegate does not throw an exception
  5055. </summary>
  5056. <param name="code">A TestSnippet delegate</param>
  5057. <param name="message">The message that will be displayed on failure</param>
  5058. <param name="args">Arguments to be used in formatting the message</param>
  5059. </member>
  5060. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)">
  5061. <summary>
  5062. Verifies that a delegate does not throw an exception.
  5063. </summary>
  5064. <param name="code">A TestSnippet delegate</param>
  5065. <param name="message">The message that will be displayed on failure</param>
  5066. </member>
  5067. <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)">
  5068. <summary>
  5069. Verifies that a delegate does not throw an exception.
  5070. </summary>
  5071. <param name="code">A TestSnippet delegate</param>
  5072. </member>
  5073. <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])">
  5074. <summary>
  5075. Asserts that a condition is true. If the condition is false the method throws
  5076. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5077. </summary>
  5078. <param name="condition">The evaluated condition</param>
  5079. <param name="message">The message to display in case of failure</param>
  5080. <param name="args">Array of objects to be used in formatting the message</param>
  5081. </member>
  5082. <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String)">
  5083. <summary>
  5084. Asserts that a condition is true. If the condition is false the method throws
  5085. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5086. </summary>
  5087. <param name="condition">The evaluated condition</param>
  5088. <param name="message">The message to display in case of failure</param>
  5089. </member>
  5090. <member name="M:NUnit.Framework.Assert.True(System.Boolean)">
  5091. <summary>
  5092. Asserts that a condition is true. If the condition is false the method throws
  5093. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5094. </summary>
  5095. <param name="condition">The evaluated condition</param>
  5096. </member>
  5097. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
  5098. <summary>
  5099. Asserts that a condition is true. If the condition is false the method throws
  5100. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5101. </summary>
  5102. <param name="condition">The evaluated condition</param>
  5103. <param name="message">The message to display in case of failure</param>
  5104. <param name="args">Array of objects to be used in formatting the message</param>
  5105. </member>
  5106. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
  5107. <summary>
  5108. Asserts that a condition is true. If the condition is false the method throws
  5109. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5110. </summary>
  5111. <param name="condition">The evaluated condition</param>
  5112. <param name="message">The message to display in case of failure</param>
  5113. </member>
  5114. <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
  5115. <summary>
  5116. Asserts that a condition is true. If the condition is false the method throws
  5117. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5118. </summary>
  5119. <param name="condition">The evaluated condition</param>
  5120. </member>
  5121. <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])">
  5122. <summary>
  5123. Asserts that a condition is false. If the condition is true the method throws
  5124. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5125. </summary>
  5126. <param name="condition">The evaluated condition</param>
  5127. <param name="message">The message to display in case of failure</param>
  5128. <param name="args">Array of objects to be used in formatting the message</param>
  5129. </member>
  5130. <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String)">
  5131. <summary>
  5132. Asserts that a condition is false. If the condition is true the method throws
  5133. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5134. </summary>
  5135. <param name="condition">The evaluated condition</param>
  5136. <param name="message">The message to display in case of failure</param>
  5137. </member>
  5138. <member name="M:NUnit.Framework.Assert.False(System.Boolean)">
  5139. <summary>
  5140. Asserts that a condition is false. If the condition is true the method throws
  5141. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5142. </summary>
  5143. <param name="condition">The evaluated condition</param>
  5144. </member>
  5145. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
  5146. <summary>
  5147. Asserts that a condition is false. If the condition is true the method throws
  5148. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5149. </summary>
  5150. <param name="condition">The evaluated condition</param>
  5151. <param name="message">The message to display in case of failure</param>
  5152. <param name="args">Array of objects to be used in formatting the message</param>
  5153. </member>
  5154. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
  5155. <summary>
  5156. Asserts that a condition is false. If the condition is true the method throws
  5157. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5158. </summary>
  5159. <param name="condition">The evaluated condition</param>
  5160. <param name="message">The message to display in case of failure</param>
  5161. </member>
  5162. <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
  5163. <summary>
  5164. Asserts that a condition is false. If the condition is true the method throws
  5165. an <see cref="T:NUnit.Framework.AssertionException"/>.
  5166. </summary>
  5167. <param name="condition">The evaluated condition</param>
  5168. </member>
  5169. <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])">
  5170. <summary>
  5171. Verifies that the object that is passed in is not equal to <code>null</code>
  5172. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5173. is thrown.
  5174. </summary>
  5175. <param name="anObject">The object that is to be tested</param>
  5176. <param name="message">The message to display in case of failure</param>
  5177. <param name="args">Array of objects to be used in formatting the message</param>
  5178. </member>
  5179. <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String)">
  5180. <summary>
  5181. Verifies that the object that is passed in is not equal to <code>null</code>
  5182. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5183. is thrown.
  5184. </summary>
  5185. <param name="anObject">The object that is to be tested</param>
  5186. <param name="message">The message to display in case of failure</param>
  5187. </member>
  5188. <member name="M:NUnit.Framework.Assert.NotNull(System.Object)">
  5189. <summary>
  5190. Verifies that the object that is passed in is not equal to <code>null</code>
  5191. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5192. is thrown.
  5193. </summary>
  5194. <param name="anObject">The object that is to be tested</param>
  5195. </member>
  5196. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
  5197. <summary>
  5198. Verifies that the object that is passed in is not equal to <code>null</code>
  5199. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5200. is thrown.
  5201. </summary>
  5202. <param name="anObject">The object that is to be tested</param>
  5203. <param name="message">The message to display in case of failure</param>
  5204. <param name="args">Array of objects to be used in formatting the message</param>
  5205. </member>
  5206. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
  5207. <summary>
  5208. Verifies that the object that is passed in is not equal to <code>null</code>
  5209. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5210. is thrown.
  5211. </summary>
  5212. <param name="anObject">The object that is to be tested</param>
  5213. <param name="message">The message to display in case of failure</param>
  5214. </member>
  5215. <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
  5216. <summary>
  5217. Verifies that the object that is passed in is not equal to <code>null</code>
  5218. If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5219. is thrown.
  5220. </summary>
  5221. <param name="anObject">The object that is to be tested</param>
  5222. </member>
  5223. <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])">
  5224. <summary>
  5225. Verifies that the object that is passed in is equal to <code>null</code>
  5226. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5227. is thrown.
  5228. </summary>
  5229. <param name="anObject">The object that is to be tested</param>
  5230. <param name="message">The message to display in case of failure</param>
  5231. <param name="args">Array of objects to be used in formatting the message</param>
  5232. </member>
  5233. <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String)">
  5234. <summary>
  5235. Verifies that the object that is passed in is equal to <code>null</code>
  5236. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5237. is thrown.
  5238. </summary>
  5239. <param name="anObject">The object that is to be tested</param>
  5240. <param name="message">The message to display in case of failure</param>
  5241. </member>
  5242. <member name="M:NUnit.Framework.Assert.Null(System.Object)">
  5243. <summary>
  5244. Verifies that the object that is passed in is equal to <code>null</code>
  5245. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5246. is thrown.
  5247. </summary>
  5248. <param name="anObject">The object that is to be tested</param>
  5249. </member>
  5250. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
  5251. <summary>
  5252. Verifies that the object that is passed in is equal to <code>null</code>
  5253. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5254. is thrown.
  5255. </summary>
  5256. <param name="anObject">The object that is to be tested</param>
  5257. <param name="message">The message to display in case of failure</param>
  5258. <param name="args">Array of objects to be used in formatting the message</param>
  5259. </member>
  5260. <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
  5261. <summary>
  5262. Verifies that the object that is passed in is equal to <code>null</code>
  5263. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5264. is thrown.
  5265. </summary>
  5266. <param name="anObject">The object that is to be tested</param>
  5267. <param name="message">The message to display in case of failure</param>
  5268. </member>
  5269. <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
  5270. <summary>
  5271. Verifies that the object that is passed in is equal to <code>null</code>
  5272. If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5273. is thrown.
  5274. </summary>
  5275. <param name="anObject">The object that is to be tested</param>
  5276. </member>
  5277. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
  5278. <summary>
  5279. Verifies that the double that is passed in is an <code>NaN</code> value.
  5280. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5281. is thrown.
  5282. </summary>
  5283. <param name="aDouble">The value that is to be tested</param>
  5284. <param name="message">The message to display in case of failure</param>
  5285. <param name="args">Array of objects to be used in formatting the message</param>
  5286. </member>
  5287. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
  5288. <summary>
  5289. Verifies that the double that is passed in is an <code>NaN</code> value.
  5290. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5291. is thrown.
  5292. </summary>
  5293. <param name="aDouble">The value that is to be tested</param>
  5294. <param name="message">The message to display in case of failure</param>
  5295. </member>
  5296. <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
  5297. <summary>
  5298. Verifies that the double that is passed in is an <code>NaN</code> value.
  5299. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5300. is thrown.
  5301. </summary>
  5302. <param name="aDouble">The value that is to be tested</param>
  5303. </member>
  5304. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])">
  5305. <summary>
  5306. Verifies that the double that is passed in is an <code>NaN</code> value.
  5307. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5308. is thrown.
  5309. </summary>
  5310. <param name="aDouble">The value that is to be tested</param>
  5311. <param name="message">The message to display in case of failure</param>
  5312. <param name="args">Array of objects to be used in formatting the message</param>
  5313. </member>
  5314. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)">
  5315. <summary>
  5316. Verifies that the double that is passed in is an <code>NaN</code> value.
  5317. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5318. is thrown.
  5319. </summary>
  5320. <param name="aDouble">The value that is to be tested</param>
  5321. <param name="message">The message to display in case of failure</param>
  5322. </member>
  5323. <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})">
  5324. <summary>
  5325. Verifies that the double that is passed in is an <code>NaN</code> value.
  5326. If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
  5327. is thrown.
  5328. </summary>
  5329. <param name="aDouble">The value that is to be tested</param>
  5330. </member>
  5331. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
  5332. <summary>
  5333. Assert that a string is empty - that is equal to string.Empty
  5334. </summary>
  5335. <param name="aString">The string to be tested</param>
  5336. <param name="message">The message to display in case of failure</param>
  5337. <param name="args">Array of objects to be used in formatting the message</param>
  5338. </member>
  5339. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
  5340. <summary>
  5341. Assert that a string is empty - that is equal to string.Empty
  5342. </summary>
  5343. <param name="aString">The string to be tested</param>
  5344. <param name="message">The message to display in case of failure</param>
  5345. </member>
  5346. <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
  5347. <summary>
  5348. Assert that a string is empty - that is equal to string.Empty
  5349. </summary>
  5350. <param name="aString">The string to be tested</param>
  5351. </member>
  5352. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
  5353. <summary>
  5354. Assert that an array, list or other collection is empty
  5355. </summary>
  5356. <param name="collection">An array, list or other collection implementing ICollection</param>
  5357. <param name="message">The message to display in case of failure</param>
  5358. <param name="args">Array of objects to be used in formatting the message</param>
  5359. </member>
  5360. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
  5361. <summary>
  5362. Assert that an array, list or other collection is empty
  5363. </summary>
  5364. <param name="collection">An array, list or other collection implementing ICollection</param>
  5365. <param name="message">The message to display in case of failure</param>
  5366. </member>
  5367. <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
  5368. <summary>
  5369. Assert that an array, list or other collection is empty
  5370. </summary>
  5371. <param name="collection">An array, list or other collection implementing ICollection</param>
  5372. </member>
  5373. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
  5374. <summary>
  5375. Assert that a string is not empty - that is not equal to string.Empty
  5376. </summary>
  5377. <param name="aString">The string to be tested</param>
  5378. <param name="message">The message to display in case of failure</param>
  5379. <param name="args">Array of objects to be used in formatting the message</param>
  5380. </member>
  5381. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
  5382. <summary>
  5383. Assert that a string is not empty - that is not equal to string.Empty
  5384. </summary>
  5385. <param name="aString">The string to be tested</param>
  5386. <param name="message">The message to display in case of failure</param>
  5387. </member>
  5388. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
  5389. <summary>
  5390. Assert that a string is not empty - that is not equal to string.Empty
  5391. </summary>
  5392. <param name="aString">The string to be tested</param>
  5393. </member>
  5394. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
  5395. <summary>
  5396. Assert that an array, list or other collection is not empty
  5397. </summary>
  5398. <param name="collection">An array, list or other collection implementing ICollection</param>
  5399. <param name="message">The message to display in case of failure</param>
  5400. <param name="args">Array of objects to be used in formatting the message</param>
  5401. </member>
  5402. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
  5403. <summary>
  5404. Assert that an array, list or other collection is not empty
  5405. </summary>
  5406. <param name="collection">An array, list or other collection implementing ICollection</param>
  5407. <param name="message">The message to display in case of failure</param>
  5408. </member>
  5409. <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
  5410. <summary>
  5411. Assert that an array, list or other collection is not empty
  5412. </summary>
  5413. <param name="collection">An array, list or other collection implementing ICollection</param>
  5414. </member>
  5415. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])">
  5416. <summary>
  5417. Assert that a string is either null or equal to string.Empty
  5418. </summary>
  5419. <param name="aString">The string to be tested</param>
  5420. <param name="message">The message to display in case of failure</param>
  5421. <param name="args">Array of objects to be used in formatting the message</param>
  5422. </member>
  5423. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)">
  5424. <summary>
  5425. Assert that a string is either null or equal to string.Empty
  5426. </summary>
  5427. <param name="aString">The string to be tested</param>
  5428. <param name="message">The message to display in case of failure</param>
  5429. </member>
  5430. <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)">
  5431. <summary>
  5432. Assert that a string is either null or equal to string.Empty
  5433. </summary>
  5434. <param name="aString">The string to be tested</param>
  5435. </member>
  5436. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])">
  5437. <summary>
  5438. Assert that a string is not null or empty
  5439. </summary>
  5440. <param name="aString">The string to be tested</param>
  5441. <param name="message">The message to display in case of failure</param>
  5442. <param name="args">Array of objects to be used in formatting the message</param>
  5443. </member>
  5444. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)">
  5445. <summary>
  5446. Assert that a string is not null or empty
  5447. </summary>
  5448. <param name="aString">The string to be tested</param>
  5449. <param name="message">The message to display in case of failure</param>
  5450. </member>
  5451. <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)">
  5452. <summary>
  5453. Assert that a string is not null or empty
  5454. </summary>
  5455. <param name="aString">The string to be tested</param>
  5456. </member>
  5457. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  5458. <summary>
  5459. Asserts that an object may be assigned a value of a given Type.
  5460. </summary>
  5461. <param name="expected">The expected Type.</param>
  5462. <param name="actual">The object under examination</param>
  5463. <param name="message">The message to display in case of failure</param>
  5464. <param name="args">Array of objects to be used in formatting the message</param>
  5465. </member>
  5466. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
  5467. <summary>
  5468. Asserts that an object may be assigned a value of a given Type.
  5469. </summary>
  5470. <param name="expected">The expected Type.</param>
  5471. <param name="actual">The object under examination</param>
  5472. <param name="message">The message to display in case of failure</param>
  5473. </member>
  5474. <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
  5475. <summary>
  5476. Asserts that an object may be assigned a value of a given Type.
  5477. </summary>
  5478. <param name="expected">The expected Type.</param>
  5479. <param name="actual">The object under examination</param>
  5480. </member>
  5481. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])">
  5482. <summary>
  5483. Asserts that an object may be assigned a value of a given Type.
  5484. </summary>
  5485. <typeparam name="T">The expected Type.</typeparam>
  5486. <param name="actual">The object under examination</param>
  5487. <param name="message">The message to display in case of failure</param>
  5488. <param name="args">Array of objects to be used in formatting the message</param>
  5489. </member>
  5490. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)">
  5491. <summary>
  5492. Asserts that an object may be assigned a value of a given Type.
  5493. </summary>
  5494. <typeparam name="T">The expected Type.</typeparam>
  5495. <param name="actual">The object under examination</param>
  5496. <param name="message">The message to display in case of failure</param>
  5497. </member>
  5498. <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)">
  5499. <summary>
  5500. Asserts that an object may be assigned a value of a given Type.
  5501. </summary>
  5502. <typeparam name="T">The expected Type.</typeparam>
  5503. <param name="actual">The object under examination</param>
  5504. </member>
  5505. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
  5506. <summary>
  5507. Asserts that an object may not be assigned a value of a given Type.
  5508. </summary>
  5509. <param name="expected">The expected Type.</param>
  5510. <param name="actual">The object under examination</param>
  5511. <param name="message">The message to display in case of failure</param>
  5512. <param name="args">Array of objects to be used in formatting the message</param>
  5513. </member>
  5514. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
  5515. <summary>
  5516. Asserts that an object may not be assigned a value of a given Type.
  5517. </summary>
  5518. <param name="expected">The expected Type.</param>
  5519. <param name="actual">The object under examination</param>
  5520. <param name="message">The message to display in case of failure</param>
  5521. </member>
  5522. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
  5523. <summary>
  5524. Asserts that an object may not be assigned a value of a given Type.
  5525. </summary>
  5526. <param name="expected">The expected Type.</param>
  5527. <param name="actual">The object under examination</param>
  5528. </member>
  5529. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])">
  5530. <summary>
  5531. Asserts that an object may not be assigned a value of a given Type.
  5532. </summary>
  5533. <typeparam name="T">The expected Type.</typeparam>
  5534. <param name="actual">The object under examination</param>
  5535. <param name="message">The message to display in case of failure</param>
  5536. <param name="args">Array of objects to be used in formatting the message</param>
  5537. </member>
  5538. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)">
  5539. <summary>
  5540. Asserts that an object may not be assigned a value of a given Type.
  5541. </summary>
  5542. <typeparam name="T">The expected Type.</typeparam>
  5543. <param name="actual">The object under examination</param>
  5544. <param name="message">The message to display in case of failure</param>
  5545. </member>
  5546. <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)">
  5547. <summary>
  5548. Asserts that an object may not be assigned a value of a given Type.
  5549. </summary>
  5550. <typeparam name="T">The expected Type.</typeparam>
  5551. <param name="actual">The object under examination</param>
  5552. </member>
  5553. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])">
  5554. <summary>
  5555. Asserts that an object is an instance of a given type.
  5556. </summary>
  5557. <param name="expected">The expected Type</param>
  5558. <param name="actual">The object being examined</param>
  5559. <param name="message">The message to display in case of failure</param>
  5560. <param name="args">Array of objects to be used in formatting the message</param>
  5561. </member>
  5562. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)">
  5563. <summary>
  5564. Asserts that an object is an instance of a given type.
  5565. </summary>
  5566. <param name="expected">The expected Type</param>
  5567. <param name="actual">The object being examined</param>
  5568. <param name="message">The message to display in case of failure</param>
  5569. </member>
  5570. <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)">
  5571. <summary>
  5572. Asserts that an object is an instance of a given type.
  5573. </summary>
  5574. <param name="expected">The expected Type</param>
  5575. <param name="actual">The object being examined</param>
  5576. </member>
  5577. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  5578. <summary>
  5579. Asserts that an object is an instance of a given type.
  5580. </summary>
  5581. <param name="expected">The expected Type</param>
  5582. <param name="actual">The object being examined</param>
  5583. <param name="message">The message to display in case of failure</param>
  5584. <param name="args">Array of objects to be used in formatting the message</param>
  5585. </member>
  5586. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
  5587. <summary>
  5588. Asserts that an object is an instance of a given type.
  5589. </summary>
  5590. <param name="expected">The expected Type</param>
  5591. <param name="actual">The object being examined</param>
  5592. <param name="message">The message to display in case of failure</param>
  5593. </member>
  5594. <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
  5595. <summary>
  5596. Asserts that an object is an instance of a given type.
  5597. </summary>
  5598. <param name="expected">The expected Type</param>
  5599. <param name="actual">The object being examined</param>
  5600. </member>
  5601. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])">
  5602. <summary>
  5603. Asserts that an object is an instance of a given type.
  5604. </summary>
  5605. <typeparam name="T">The expected Type</typeparam>
  5606. <param name="actual">The object being examined</param>
  5607. <param name="message">The message to display in case of failure</param>
  5608. <param name="args">Array of objects to be used in formatting the message</param>
  5609. </member>
  5610. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)">
  5611. <summary>
  5612. Asserts that an object is an instance of a given type.
  5613. </summary>
  5614. <typeparam name="T">The expected Type</typeparam>
  5615. <param name="actual">The object being examined</param>
  5616. <param name="message">The message to display in case of failure</param>
  5617. </member>
  5618. <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)">
  5619. <summary>
  5620. Asserts that an object is an instance of a given type.
  5621. </summary>
  5622. <typeparam name="T">The expected Type</typeparam>
  5623. <param name="actual">The object being examined</param>
  5624. </member>
  5625. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])">
  5626. <summary>
  5627. Asserts that an object is not an instance of a given type.
  5628. </summary>
  5629. <param name="expected">The expected Type</param>
  5630. <param name="actual">The object being examined</param>
  5631. <param name="message">The message to display in case of failure</param>
  5632. <param name="args">Array of objects to be used in formatting the message</param>
  5633. </member>
  5634. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)">
  5635. <summary>
  5636. Asserts that an object is not an instance of a given type.
  5637. </summary>
  5638. <param name="expected">The expected Type</param>
  5639. <param name="actual">The object being examined</param>
  5640. <param name="message">The message to display in case of failure</param>
  5641. </member>
  5642. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)">
  5643. <summary>
  5644. Asserts that an object is not an instance of a given type.
  5645. </summary>
  5646. <param name="expected">The expected Type</param>
  5647. <param name="actual">The object being examined</param>
  5648. </member>
  5649. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
  5650. <summary>
  5651. Asserts that an object is not an instance of a given type.
  5652. </summary>
  5653. <param name="expected">The expected Type</param>
  5654. <param name="actual">The object being examined</param>
  5655. <param name="message">The message to display in case of failure</param>
  5656. <param name="args">Array of objects to be used in formatting the message</param>
  5657. </member>
  5658. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
  5659. <summary>
  5660. Asserts that an object is not an instance of a given type.
  5661. </summary>
  5662. <param name="expected">The expected Type</param>
  5663. <param name="actual">The object being examined</param>
  5664. <param name="message">The message to display in case of failure</param>
  5665. </member>
  5666. <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
  5667. <summary>
  5668. Asserts that an object is not an instance of a given type.
  5669. </summary>
  5670. <param name="expected">The expected Type</param>
  5671. <param name="actual">The object being examined</param>
  5672. </member>
  5673. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])">
  5674. <summary>
  5675. Asserts that an object is not an instance of a given type.
  5676. </summary>
  5677. <typeparam name="T">The expected Type</typeparam>
  5678. <param name="actual">The object being examined</param>
  5679. <param name="message">The message to display in case of failure</param>
  5680. <param name="args">Array of objects to be used in formatting the message</param>
  5681. </member>
  5682. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)">
  5683. <summary>
  5684. Asserts that an object is not an instance of a given type.
  5685. </summary>
  5686. <typeparam name="T">The expected Type</typeparam>
  5687. <param name="actual">The object being examined</param>
  5688. <param name="message">The message to display in case of failure</param>
  5689. </member>
  5690. <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)">
  5691. <summary>
  5692. Asserts that an object is not an instance of a given type.
  5693. </summary>
  5694. <typeparam name="T">The expected Type</typeparam>
  5695. <param name="actual">The object being examined</param>
  5696. </member>
  5697. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
  5698. <summary>
  5699. Verifies that two values are equal. If they are not, then an
  5700. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5701. </summary>
  5702. <param name="expected">The expected value</param>
  5703. <param name="actual">The actual value</param>
  5704. <param name="message">The message to display in case of failure</param>
  5705. <param name="args">Array of objects to be used in formatting the message</param>
  5706. </member>
  5707. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
  5708. <summary>
  5709. Verifies that two values are equal. If they are not, then an
  5710. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5711. </summary>
  5712. <param name="expected">The expected value</param>
  5713. <param name="actual">The actual value</param>
  5714. <param name="message">The message to display in case of failure</param>
  5715. </member>
  5716. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
  5717. <summary>
  5718. Verifies that two values are equal. If they are not, then an
  5719. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5720. </summary>
  5721. <param name="expected">The expected value</param>
  5722. <param name="actual">The actual value</param>
  5723. </member>
  5724. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
  5725. <summary>
  5726. Verifies that two values are equal. If they are not, then an
  5727. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5728. </summary>
  5729. <param name="expected">The expected value</param>
  5730. <param name="actual">The actual value</param>
  5731. <param name="message">The message to display in case of failure</param>
  5732. <param name="args">Array of objects to be used in formatting the message</param>
  5733. </member>
  5734. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
  5735. <summary>
  5736. Verifies that two values are equal. If they are not, then an
  5737. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5738. </summary>
  5739. <param name="expected">The expected value</param>
  5740. <param name="actual">The actual value</param>
  5741. <param name="message">The message to display in case of failure</param>
  5742. </member>
  5743. <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
  5744. <summary>
  5745. Verifies that two values are equal. If they are not, then an
  5746. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5747. </summary>
  5748. <param name="expected">The expected value</param>
  5749. <param name="actual">The actual value</param>
  5750. </member>
  5751. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  5752. <summary>
  5753. Verifies that two values are equal. If they are not, then an
  5754. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5755. </summary>
  5756. <param name="expected">The expected value</param>
  5757. <param name="actual">The actual value</param>
  5758. <param name="message">The message to display in case of failure</param>
  5759. <param name="args">Array of objects to be used in formatting the message</param>
  5760. </member>
  5761. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
  5762. <summary>
  5763. Verifies that two values are equal. If they are not, then an
  5764. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5765. </summary>
  5766. <param name="expected">The expected value</param>
  5767. <param name="actual">The actual value</param>
  5768. <param name="message">The message to display in case of failure</param>
  5769. </member>
  5770. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
  5771. <summary>
  5772. Verifies that two values are equal. If they are not, then an
  5773. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5774. </summary>
  5775. <param name="expected">The expected value</param>
  5776. <param name="actual">The actual value</param>
  5777. </member>
  5778. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  5779. <summary>
  5780. Verifies that two values are equal. If they are not, then an
  5781. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5782. </summary>
  5783. <param name="expected">The expected value</param>
  5784. <param name="actual">The actual value</param>
  5785. <param name="message">The message to display in case of failure</param>
  5786. <param name="args">Array of objects to be used in formatting the message</param>
  5787. </member>
  5788. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
  5789. <summary>
  5790. Verifies that two values are equal. If they are not, then an
  5791. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5792. </summary>
  5793. <param name="expected">The expected value</param>
  5794. <param name="actual">The actual value</param>
  5795. <param name="message">The message to display in case of failure</param>
  5796. </member>
  5797. <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
  5798. <summary>
  5799. Verifies that two values are equal. If they are not, then an
  5800. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5801. </summary>
  5802. <param name="expected">The expected value</param>
  5803. <param name="actual">The actual value</param>
  5804. </member>
  5805. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  5806. <summary>
  5807. Verifies that two values are equal. If they are not, then an
  5808. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5809. </summary>
  5810. <param name="expected">The expected value</param>
  5811. <param name="actual">The actual value</param>
  5812. <param name="message">The message to display in case of failure</param>
  5813. <param name="args">Array of objects to be used in formatting the message</param>
  5814. </member>
  5815. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
  5816. <summary>
  5817. Verifies that two values are equal. If they are not, then an
  5818. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5819. </summary>
  5820. <param name="expected">The expected value</param>
  5821. <param name="actual">The actual value</param>
  5822. <param name="message">The message to display in case of failure</param>
  5823. </member>
  5824. <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
  5825. <summary>
  5826. Verifies that two values are equal. If they are not, then an
  5827. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5828. </summary>
  5829. <param name="expected">The expected value</param>
  5830. <param name="actual">The actual value</param>
  5831. </member>
  5832. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
  5833. <summary>
  5834. Verifies that two doubles are equal considering a delta. If the
  5835. expected value is infinity then the delta value is ignored. If
  5836. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  5837. thrown.
  5838. </summary>
  5839. <param name="expected">The expected value</param>
  5840. <param name="actual">The actual value</param>
  5841. <param name="delta">The maximum acceptable difference between the
  5842. the expected and the actual</param>
  5843. <param name="message">The message to display in case of failure</param>
  5844. <param name="args">Array of objects to be used in formatting the message</param>
  5845. </member>
  5846. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
  5847. <summary>
  5848. Verifies that two doubles are equal considering a delta. If the
  5849. expected value is infinity then the delta value is ignored. If
  5850. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  5851. thrown.
  5852. </summary>
  5853. <param name="expected">The expected value</param>
  5854. <param name="actual">The actual value</param>
  5855. <param name="delta">The maximum acceptable difference between the
  5856. the expected and the actual</param>
  5857. <param name="message">The message to display in case of failure</param>
  5858. </member>
  5859. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
  5860. <summary>
  5861. Verifies that two doubles are equal considering a delta. If the
  5862. expected value is infinity then the delta value is ignored. If
  5863. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  5864. thrown.
  5865. </summary>
  5866. <param name="expected">The expected value</param>
  5867. <param name="actual">The actual value</param>
  5868. <param name="delta">The maximum acceptable difference between the
  5869. the expected and the actual</param>
  5870. </member>
  5871. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])">
  5872. <summary>
  5873. Verifies that two doubles are equal considering a delta. If the
  5874. expected value is infinity then the delta value is ignored. If
  5875. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  5876. thrown.
  5877. </summary>
  5878. <param name="expected">The expected value</param>
  5879. <param name="actual">The actual value</param>
  5880. <param name="delta">The maximum acceptable difference between the
  5881. the expected and the actual</param>
  5882. <param name="message">The message to display in case of failure</param>
  5883. <param name="args">Array of objects to be used in formatting the message</param>
  5884. </member>
  5885. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)">
  5886. <summary>
  5887. Verifies that two doubles are equal considering a delta. If the
  5888. expected value is infinity then the delta value is ignored. If
  5889. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  5890. thrown.
  5891. </summary>
  5892. <param name="expected">The expected value</param>
  5893. <param name="actual">The actual value</param>
  5894. <param name="delta">The maximum acceptable difference between the
  5895. the expected and the actual</param>
  5896. <param name="message">The message to display in case of failure</param>
  5897. </member>
  5898. <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)">
  5899. <summary>
  5900. Verifies that two doubles are equal considering a delta. If the
  5901. expected value is infinity then the delta value is ignored. If
  5902. they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
  5903. thrown.
  5904. </summary>
  5905. <param name="expected">The expected value</param>
  5906. <param name="actual">The actual value</param>
  5907. <param name="delta">The maximum acceptable difference between the
  5908. the expected and the actual</param>
  5909. </member>
  5910. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
  5911. <summary>
  5912. Verifies that two objects are equal. Two objects are considered
  5913. equal if both are null, or if both have the same value. NUnit
  5914. has special semantics for some object types.
  5915. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5916. </summary>
  5917. <param name="expected">The value that is expected</param>
  5918. <param name="actual">The actual value</param>
  5919. <param name="message">The message to display in case of failure</param>
  5920. <param name="args">Array of objects to be used in formatting the message</param>
  5921. </member>
  5922. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
  5923. <summary>
  5924. Verifies that two objects are equal. Two objects are considered
  5925. equal if both are null, or if both have the same value. NUnit
  5926. has special semantics for some object types.
  5927. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5928. </summary>
  5929. <param name="expected">The value that is expected</param>
  5930. <param name="actual">The actual value</param>
  5931. <param name="message">The message to display in case of failure</param>
  5932. </member>
  5933. <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
  5934. <summary>
  5935. Verifies that two objects are equal. Two objects are considered
  5936. equal if both are null, or if both have the same value. NUnit
  5937. has special semantics for some object types.
  5938. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5939. </summary>
  5940. <param name="expected">The value that is expected</param>
  5941. <param name="actual">The actual value</param>
  5942. </member>
  5943. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
  5944. <summary>
  5945. Verifies that two values are not equal. If they are equal, then an
  5946. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5947. </summary>
  5948. <param name="expected">The expected value</param>
  5949. <param name="actual">The actual value</param>
  5950. <param name="message">The message to display in case of failure</param>
  5951. <param name="args">Array of objects to be used in formatting the message</param>
  5952. </member>
  5953. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
  5954. <summary>
  5955. Verifies that two values are not equal. If they are equal, then an
  5956. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5957. </summary>
  5958. <param name="expected">The expected value</param>
  5959. <param name="actual">The actual value</param>
  5960. <param name="message">The message to display in case of failure</param>
  5961. </member>
  5962. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
  5963. <summary>
  5964. Verifies that two values are not equal. If they are equal, then an
  5965. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5966. </summary>
  5967. <param name="expected">The expected value</param>
  5968. <param name="actual">The actual value</param>
  5969. </member>
  5970. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
  5971. <summary>
  5972. Verifies that two values are not equal. If they are equal, then an
  5973. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5974. </summary>
  5975. <param name="expected">The expected value</param>
  5976. <param name="actual">The actual value</param>
  5977. <param name="message">The message to display in case of failure</param>
  5978. <param name="args">Array of objects to be used in formatting the message</param>
  5979. </member>
  5980. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
  5981. <summary>
  5982. Verifies that two values are not equal. If they are equal, then an
  5983. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5984. </summary>
  5985. <param name="expected">The expected value</param>
  5986. <param name="actual">The actual value</param>
  5987. <param name="message">The message to display in case of failure</param>
  5988. </member>
  5989. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
  5990. <summary>
  5991. Verifies that two values are not equal. If they are equal, then an
  5992. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  5993. </summary>
  5994. <param name="expected">The expected value</param>
  5995. <param name="actual">The actual value</param>
  5996. </member>
  5997. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  5998. <summary>
  5999. Verifies that two values are not equal. If they are equal, then an
  6000. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6001. </summary>
  6002. <param name="expected">The expected value</param>
  6003. <param name="actual">The actual value</param>
  6004. <param name="message">The message to display in case of failure</param>
  6005. <param name="args">Array of objects to be used in formatting the message</param>
  6006. </member>
  6007. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
  6008. <summary>
  6009. Verifies that two values are not equal. If they are equal, then an
  6010. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6011. </summary>
  6012. <param name="expected">The expected value</param>
  6013. <param name="actual">The actual value</param>
  6014. <param name="message">The message to display in case of failure</param>
  6015. </member>
  6016. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
  6017. <summary>
  6018. Verifies that two values are not equal. If they are equal, then an
  6019. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6020. </summary>
  6021. <param name="expected">The expected value</param>
  6022. <param name="actual">The actual value</param>
  6023. </member>
  6024. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  6025. <summary>
  6026. Verifies that two values are not equal. If they are equal, then an
  6027. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6028. </summary>
  6029. <param name="expected">The expected value</param>
  6030. <param name="actual">The actual value</param>
  6031. <param name="message">The message to display in case of failure</param>
  6032. <param name="args">Array of objects to be used in formatting the message</param>
  6033. </member>
  6034. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
  6035. <summary>
  6036. Verifies that two values are not equal. If they are equal, then an
  6037. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6038. </summary>
  6039. <param name="expected">The expected value</param>
  6040. <param name="actual">The actual value</param>
  6041. <param name="message">The message to display in case of failure</param>
  6042. </member>
  6043. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
  6044. <summary>
  6045. Verifies that two values are not equal. If they are equal, then an
  6046. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6047. </summary>
  6048. <param name="expected">The expected value</param>
  6049. <param name="actual">The actual value</param>
  6050. </member>
  6051. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  6052. <summary>
  6053. Verifies that two values are not equal. If they are equal, then an
  6054. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6055. </summary>
  6056. <param name="expected">The expected value</param>
  6057. <param name="actual">The actual value</param>
  6058. <param name="message">The message to display in case of failure</param>
  6059. <param name="args">Array of objects to be used in formatting the message</param>
  6060. </member>
  6061. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
  6062. <summary>
  6063. Verifies that two values are not equal. If they are equal, then an
  6064. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6065. </summary>
  6066. <param name="expected">The expected value</param>
  6067. <param name="actual">The actual value</param>
  6068. <param name="message">The message to display in case of failure</param>
  6069. </member>
  6070. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
  6071. <summary>
  6072. Verifies that two values are not equal. If they are equal, then an
  6073. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6074. </summary>
  6075. <param name="expected">The expected value</param>
  6076. <param name="actual">The actual value</param>
  6077. </member>
  6078. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
  6079. <summary>
  6080. Verifies that two values are not equal. If they are equal, then an
  6081. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6082. </summary>
  6083. <param name="expected">The expected value</param>
  6084. <param name="actual">The actual value</param>
  6085. <param name="message">The message to display in case of failure</param>
  6086. <param name="args">Array of objects to be used in formatting the message</param>
  6087. </member>
  6088. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
  6089. <summary>
  6090. Verifies that two values are not equal. If they are equal, then an
  6091. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6092. </summary>
  6093. <param name="expected">The expected value</param>
  6094. <param name="actual">The actual value</param>
  6095. <param name="message">The message to display in case of failure</param>
  6096. </member>
  6097. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
  6098. <summary>
  6099. Verifies that two values are not equal. If they are equal, then an
  6100. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6101. </summary>
  6102. <param name="expected">The expected value</param>
  6103. <param name="actual">The actual value</param>
  6104. </member>
  6105. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
  6106. <summary>
  6107. Verifies that two values are not equal. If they are equal, then an
  6108. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6109. </summary>
  6110. <param name="expected">The expected value</param>
  6111. <param name="actual">The actual value</param>
  6112. <param name="message">The message to display in case of failure</param>
  6113. <param name="args">Array of objects to be used in formatting the message</param>
  6114. </member>
  6115. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
  6116. <summary>
  6117. Verifies that two values are not equal. If they are equal, then an
  6118. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6119. </summary>
  6120. <param name="expected">The expected value</param>
  6121. <param name="actual">The actual value</param>
  6122. <param name="message">The message to display in case of failure</param>
  6123. </member>
  6124. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
  6125. <summary>
  6126. Verifies that two values are not equal. If they are equal, then an
  6127. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6128. </summary>
  6129. <param name="expected">The expected value</param>
  6130. <param name="actual">The actual value</param>
  6131. </member>
  6132. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
  6133. <summary>
  6134. Verifies that two objects are not equal. Two objects are considered
  6135. equal if both are null, or if both have the same value. NUnit
  6136. has special semantics for some object types.
  6137. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6138. </summary>
  6139. <param name="expected">The value that is expected</param>
  6140. <param name="actual">The actual value</param>
  6141. <param name="message">The message to display in case of failure</param>
  6142. <param name="args">Array of objects to be used in formatting the message</param>
  6143. </member>
  6144. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
  6145. <summary>
  6146. Verifies that two objects are not equal. Two objects are considered
  6147. equal if both are null, or if both have the same value. NUnit
  6148. has special semantics for some object types.
  6149. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6150. </summary>
  6151. <param name="expected">The value that is expected</param>
  6152. <param name="actual">The actual value</param>
  6153. <param name="message">The message to display in case of failure</param>
  6154. </member>
  6155. <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
  6156. <summary>
  6157. Verifies that two objects are not equal. Two objects are considered
  6158. equal if both are null, or if both have the same value. NUnit
  6159. has special semantics for some object types.
  6160. If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6161. </summary>
  6162. <param name="expected">The value that is expected</param>
  6163. <param name="actual">The actual value</param>
  6164. </member>
  6165. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
  6166. <summary>
  6167. Asserts that two objects refer to the same object. If they
  6168. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6169. </summary>
  6170. <param name="expected">The expected object</param>
  6171. <param name="actual">The actual object</param>
  6172. <param name="message">The message to display in case of failure</param>
  6173. <param name="args">Array of objects to be used in formatting the message</param>
  6174. </member>
  6175. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
  6176. <summary>
  6177. Asserts that two objects refer to the same object. If they
  6178. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6179. </summary>
  6180. <param name="expected">The expected object</param>
  6181. <param name="actual">The actual object</param>
  6182. <param name="message">The message to display in case of failure</param>
  6183. </member>
  6184. <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
  6185. <summary>
  6186. Asserts that two objects refer to the same object. If they
  6187. are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6188. </summary>
  6189. <param name="expected">The expected object</param>
  6190. <param name="actual">The actual object</param>
  6191. </member>
  6192. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
  6193. <summary>
  6194. Asserts that two objects do not refer to the same object. If they
  6195. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6196. </summary>
  6197. <param name="expected">The expected object</param>
  6198. <param name="actual">The actual object</param>
  6199. <param name="message">The message to display in case of failure</param>
  6200. <param name="args">Array of objects to be used in formatting the message</param>
  6201. </member>
  6202. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
  6203. <summary>
  6204. Asserts that two objects do not refer to the same object. If they
  6205. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6206. </summary>
  6207. <param name="expected">The expected object</param>
  6208. <param name="actual">The actual object</param>
  6209. <param name="message">The message to display in case of failure</param>
  6210. </member>
  6211. <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
  6212. <summary>
  6213. Asserts that two objects do not refer to the same object. If they
  6214. are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6215. </summary>
  6216. <param name="expected">The expected object</param>
  6217. <param name="actual">The actual object</param>
  6218. </member>
  6219. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
  6220. <summary>
  6221. Verifies that the first value is greater than the second
  6222. value. If it is not, then an
  6223. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6224. </summary>
  6225. <param name="arg1">The first value, expected to be greater</param>
  6226. <param name="arg2">The second value, expected to be less</param>
  6227. <param name="message">The message to display in case of failure</param>
  6228. <param name="args">Array of objects to be used in formatting the message</param>
  6229. </member>
  6230. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
  6231. <summary>
  6232. Verifies that the first value is greater than the second
  6233. value. If it is not, then an
  6234. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6235. </summary>
  6236. <param name="arg1">The first value, expected to be greater</param>
  6237. <param name="arg2">The second value, expected to be less</param>
  6238. <param name="message">The message to display in case of failure</param>
  6239. </member>
  6240. <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
  6241. <summary>
  6242. Verifies that the first value is greater than the second
  6243. value. If it is not, then an
  6244. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6245. </summary>
  6246. <param name="arg1">The first value, expected to be greater</param>
  6247. <param name="arg2">The second value, expected to be less</param>
  6248. </member>
  6249. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
  6250. <summary>
  6251. Verifies that the first value is greater than the second
  6252. value. If it is not, then an
  6253. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6254. </summary>
  6255. <param name="arg1">The first value, expected to be greater</param>
  6256. <param name="arg2">The second value, expected to be less</param>
  6257. <param name="message">The message to display in case of failure</param>
  6258. <param name="args">Array of objects to be used in formatting the message</param>
  6259. </member>
  6260. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
  6261. <summary>
  6262. Verifies that the first value is greater than the second
  6263. value. If it is not, then an
  6264. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6265. </summary>
  6266. <param name="arg1">The first value, expected to be greater</param>
  6267. <param name="arg2">The second value, expected to be less</param>
  6268. <param name="message">The message to display in case of failure</param>
  6269. </member>
  6270. <member name="M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
  6271. <summary>
  6272. Verifies that the first value is greater than the second
  6273. value. If it is not, then an
  6274. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6275. </summary>
  6276. <param name="arg1">The first value, expected to be greater</param>
  6277. <param name="arg2">The second value, expected to be less</param>
  6278. </member>
  6279. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
  6280. <summary>
  6281. Verifies that the first value is greater than the second
  6282. value. If it is not, then an
  6283. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6284. </summary>
  6285. <param name="arg1">The first value, expected to be greater</param>
  6286. <param name="arg2">The second value, expected to be less</param>
  6287. <param name="message">The message to display in case of failure</param>
  6288. <param name="args">Array of objects to be used in formatting the message</param>
  6289. </member>
  6290. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
  6291. <summary>
  6292. Verifies that the first value is greater than the second
  6293. value. If it is not, then an
  6294. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6295. </summary>
  6296. <param name="arg1">The first value, expected to be greater</param>
  6297. <param name="arg2">The second value, expected to be less</param>
  6298. <param name="message">The message to display in case of failure</param>
  6299. </member>
  6300. <member name="M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
  6301. <summary>
  6302. Verifies that the first value is greater than the second
  6303. value. If it is not, then an
  6304. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6305. </summary>
  6306. <param name="arg1">The first value, expected to be greater</param>
  6307. <param name="arg2">The second value, expected to be less</param>
  6308. </member>
  6309. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
  6310. <summary>
  6311. Verifies that the first value is greater than the second
  6312. value. If it is not, then an
  6313. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6314. </summary>
  6315. <param name="arg1">The first value, expected to be greater</param>
  6316. <param name="arg2">The second value, expected to be less</param>
  6317. <param name="message">The message to display in case of failure</param>
  6318. <param name="args">Array of objects to be used in formatting the message</param>
  6319. </member>
  6320. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
  6321. <summary>
  6322. Verifies that the first value is greater than the second
  6323. value. If it is not, then an
  6324. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6325. </summary>
  6326. <param name="arg1">The first value, expected to be greater</param>
  6327. <param name="arg2">The second value, expected to be less</param>
  6328. <param name="message">The message to display in case of failure</param>
  6329. </member>
  6330. <member name="M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
  6331. <summary>
  6332. Verifies that the first value is greater than the second
  6333. value. If it is not, then an
  6334. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6335. </summary>
  6336. <param name="arg1">The first value, expected to be greater</param>
  6337. <param name="arg2">The second value, expected to be less</param>
  6338. </member>
  6339. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
  6340. <summary>
  6341. Verifies that the first value is greater than the second
  6342. value. If it is not, then an
  6343. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6344. </summary>
  6345. <param name="arg1">The first value, expected to be greater</param>
  6346. <param name="arg2">The second value, expected to be less</param>
  6347. <param name="message">The message to display in case of failure</param>
  6348. <param name="args">Array of objects to be used in formatting the message</param>
  6349. </member>
  6350. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
  6351. <summary>
  6352. Verifies that the first value is greater than the second
  6353. value. If it is not, then an
  6354. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6355. </summary>
  6356. <param name="arg1">The first value, expected to be greater</param>
  6357. <param name="arg2">The second value, expected to be less</param>
  6358. <param name="message">The message to display in case of failure</param>
  6359. </member>
  6360. <member name="M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
  6361. <summary>
  6362. Verifies that the first value is greater than the second
  6363. value. If it is not, then an
  6364. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6365. </summary>
  6366. <param name="arg1">The first value, expected to be greater</param>
  6367. <param name="arg2">The second value, expected to be less</param>
  6368. </member>
  6369. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
  6370. <summary>
  6371. Verifies that the first value is greater than the second
  6372. value. If it is not, then an
  6373. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6374. </summary>
  6375. <param name="arg1">The first value, expected to be greater</param>
  6376. <param name="arg2">The second value, expected to be less</param>
  6377. <param name="message">The message to display in case of failure</param>
  6378. <param name="args">Array of objects to be used in formatting the message</param>
  6379. </member>
  6380. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
  6381. <summary>
  6382. Verifies that the first value is greater than the second
  6383. value. If it is not, then an
  6384. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6385. </summary>
  6386. <param name="arg1">The first value, expected to be greater</param>
  6387. <param name="arg2">The second value, expected to be less</param>
  6388. <param name="message">The message to display in case of failure</param>
  6389. </member>
  6390. <member name="M:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
  6391. <summary>
  6392. Verifies that the first value is greater than the second
  6393. value. If it is not, then an
  6394. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6395. </summary>
  6396. <param name="arg1">The first value, expected to be greater</param>
  6397. <param name="arg2">The second value, expected to be less</param>
  6398. </member>
  6399. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
  6400. <summary>
  6401. Verifies that the first value is greater than the second
  6402. value. If it is not, then an
  6403. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6404. </summary>
  6405. <param name="arg1">The first value, expected to be greater</param>
  6406. <param name="arg2">The second value, expected to be less</param>
  6407. <param name="message">The message to display in case of failure</param>
  6408. <param name="args">Array of objects to be used in formatting the message</param>
  6409. </member>
  6410. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
  6411. <summary>
  6412. Verifies that the first value is greater than the second
  6413. value. If it is not, then an
  6414. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6415. </summary>
  6416. <param name="arg1">The first value, expected to be greater</param>
  6417. <param name="arg2">The second value, expected to be less</param>
  6418. <param name="message">The message to display in case of failure</param>
  6419. </member>
  6420. <member name="M:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
  6421. <summary>
  6422. Verifies that the first value is greater than the second
  6423. value. If it is not, then an
  6424. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6425. </summary>
  6426. <param name="arg1">The first value, expected to be greater</param>
  6427. <param name="arg2">The second value, expected to be less</param>
  6428. </member>
  6429. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
  6430. <summary>
  6431. Verifies that the first value is greater than the second
  6432. value. If it is not, then an
  6433. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6434. </summary>
  6435. <param name="arg1">The first value, expected to be greater</param>
  6436. <param name="arg2">The second value, expected to be less</param>
  6437. <param name="message">The message to display in case of failure</param>
  6438. <param name="args">Array of objects to be used in formatting the message</param>
  6439. </member>
  6440. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
  6441. <summary>
  6442. Verifies that the first value is greater than the second
  6443. value. If it is not, then an
  6444. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6445. </summary>
  6446. <param name="arg1">The first value, expected to be greater</param>
  6447. <param name="arg2">The second value, expected to be less</param>
  6448. <param name="message">The message to display in case of failure</param>
  6449. </member>
  6450. <member name="M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
  6451. <summary>
  6452. Verifies that the first value is greater than the second
  6453. value. If it is not, then an
  6454. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6455. </summary>
  6456. <param name="arg1">The first value, expected to be greater</param>
  6457. <param name="arg2">The second value, expected to be less</param>
  6458. </member>
  6459. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
  6460. <summary>
  6461. Verifies that the first value is less than the second
  6462. value. If it is not, then an
  6463. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6464. </summary>
  6465. <param name="arg1">The first value, expected to be less</param>
  6466. <param name="arg2">The second value, expected to be greater</param>
  6467. <param name="message">The message to display in case of failure</param>
  6468. <param name="args">Array of objects to be used in formatting the message</param>
  6469. </member>
  6470. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
  6471. <summary>
  6472. Verifies that the first value is less than the second
  6473. value. If it is not, then an
  6474. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6475. </summary>
  6476. <param name="arg1">The first value, expected to be less</param>
  6477. <param name="arg2">The second value, expected to be greater</param>
  6478. <param name="message">The message to display in case of failure</param>
  6479. </member>
  6480. <member name="M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
  6481. <summary>
  6482. Verifies that the first value is less than the second
  6483. value. If it is not, then an
  6484. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6485. </summary>
  6486. <param name="arg1">The first value, expected to be less</param>
  6487. <param name="arg2">The second value, expected to be greater</param>
  6488. </member>
  6489. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
  6490. <summary>
  6491. Verifies that the first value is less than the second
  6492. value. If it is not, then an
  6493. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6494. </summary>
  6495. <param name="arg1">The first value, expected to be less</param>
  6496. <param name="arg2">The second value, expected to be greater</param>
  6497. <param name="message">The message to display in case of failure</param>
  6498. <param name="args">Array of objects to be used in formatting the message</param>
  6499. </member>
  6500. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
  6501. <summary>
  6502. Verifies that the first value is less than the second
  6503. value. If it is not, then an
  6504. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6505. </summary>
  6506. <param name="arg1">The first value, expected to be less</param>
  6507. <param name="arg2">The second value, expected to be greater</param>
  6508. <param name="message">The message to display in case of failure</param>
  6509. </member>
  6510. <member name="M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
  6511. <summary>
  6512. Verifies that the first value is less than the second
  6513. value. If it is not, then an
  6514. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6515. </summary>
  6516. <param name="arg1">The first value, expected to be less</param>
  6517. <param name="arg2">The second value, expected to be greater</param>
  6518. </member>
  6519. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
  6520. <summary>
  6521. Verifies that the first value is less than the second
  6522. value. If it is not, then an
  6523. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6524. </summary>
  6525. <param name="arg1">The first value, expected to be less</param>
  6526. <param name="arg2">The second value, expected to be greater</param>
  6527. <param name="message">The message to display in case of failure</param>
  6528. <param name="args">Array of objects to be used in formatting the message</param>
  6529. </member>
  6530. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
  6531. <summary>
  6532. Verifies that the first value is less than the second
  6533. value. If it is not, then an
  6534. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6535. </summary>
  6536. <param name="arg1">The first value, expected to be less</param>
  6537. <param name="arg2">The second value, expected to be greater</param>
  6538. <param name="message">The message to display in case of failure</param>
  6539. </member>
  6540. <member name="M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
  6541. <summary>
  6542. Verifies that the first value is less than the second
  6543. value. If it is not, then an
  6544. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6545. </summary>
  6546. <param name="arg1">The first value, expected to be less</param>
  6547. <param name="arg2">The second value, expected to be greater</param>
  6548. </member>
  6549. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
  6550. <summary>
  6551. Verifies that the first value is less than the second
  6552. value. If it is not, then an
  6553. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6554. </summary>
  6555. <param name="arg1">The first value, expected to be less</param>
  6556. <param name="arg2">The second value, expected to be greater</param>
  6557. <param name="message">The message to display in case of failure</param>
  6558. <param name="args">Array of objects to be used in formatting the message</param>
  6559. </member>
  6560. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
  6561. <summary>
  6562. Verifies that the first value is less than the second
  6563. value. If it is not, then an
  6564. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6565. </summary>
  6566. <param name="arg1">The first value, expected to be less</param>
  6567. <param name="arg2">The second value, expected to be greater</param>
  6568. <param name="message">The message to display in case of failure</param>
  6569. </member>
  6570. <member name="M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
  6571. <summary>
  6572. Verifies that the first value is less than the second
  6573. value. If it is not, then an
  6574. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6575. </summary>
  6576. <param name="arg1">The first value, expected to be less</param>
  6577. <param name="arg2">The second value, expected to be greater</param>
  6578. </member>
  6579. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
  6580. <summary>
  6581. Verifies that the first value is less than the second
  6582. value. If it is not, then an
  6583. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6584. </summary>
  6585. <param name="arg1">The first value, expected to be less</param>
  6586. <param name="arg2">The second value, expected to be greater</param>
  6587. <param name="message">The message to display in case of failure</param>
  6588. <param name="args">Array of objects to be used in formatting the message</param>
  6589. </member>
  6590. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
  6591. <summary>
  6592. Verifies that the first value is less than the second
  6593. value. If it is not, then an
  6594. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6595. </summary>
  6596. <param name="arg1">The first value, expected to be less</param>
  6597. <param name="arg2">The second value, expected to be greater</param>
  6598. <param name="message">The message to display in case of failure</param>
  6599. </member>
  6600. <member name="M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
  6601. <summary>
  6602. Verifies that the first value is less than the second
  6603. value. If it is not, then an
  6604. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6605. </summary>
  6606. <param name="arg1">The first value, expected to be less</param>
  6607. <param name="arg2">The second value, expected to be greater</param>
  6608. </member>
  6609. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
  6610. <summary>
  6611. Verifies that the first value is less than the second
  6612. value. If it is not, then an
  6613. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6614. </summary>
  6615. <param name="arg1">The first value, expected to be less</param>
  6616. <param name="arg2">The second value, expected to be greater</param>
  6617. <param name="message">The message to display in case of failure</param>
  6618. <param name="args">Array of objects to be used in formatting the message</param>
  6619. </member>
  6620. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
  6621. <summary>
  6622. Verifies that the first value is less than the second
  6623. value. If it is not, then an
  6624. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6625. </summary>
  6626. <param name="arg1">The first value, expected to be less</param>
  6627. <param name="arg2">The second value, expected to be greater</param>
  6628. <param name="message">The message to display in case of failure</param>
  6629. </member>
  6630. <member name="M:NUnit.Framework.Assert.Less(System.Double,System.Double)">
  6631. <summary>
  6632. Verifies that the first value is less than the second
  6633. value. If it is not, then an
  6634. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6635. </summary>
  6636. <param name="arg1">The first value, expected to be less</param>
  6637. <param name="arg2">The second value, expected to be greater</param>
  6638. </member>
  6639. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
  6640. <summary>
  6641. Verifies that the first value is less than the second
  6642. value. If it is not, then an
  6643. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6644. </summary>
  6645. <param name="arg1">The first value, expected to be less</param>
  6646. <param name="arg2">The second value, expected to be greater</param>
  6647. <param name="message">The message to display in case of failure</param>
  6648. <param name="args">Array of objects to be used in formatting the message</param>
  6649. </member>
  6650. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
  6651. <summary>
  6652. Verifies that the first value is less than the second
  6653. value. If it is not, then an
  6654. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6655. </summary>
  6656. <param name="arg1">The first value, expected to be less</param>
  6657. <param name="arg2">The second value, expected to be greater</param>
  6658. <param name="message">The message to display in case of failure</param>
  6659. </member>
  6660. <member name="M:NUnit.Framework.Assert.Less(System.Single,System.Single)">
  6661. <summary>
  6662. Verifies that the first value is less than the second
  6663. value. If it is not, then an
  6664. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6665. </summary>
  6666. <param name="arg1">The first value, expected to be less</param>
  6667. <param name="arg2">The second value, expected to be greater</param>
  6668. </member>
  6669. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
  6670. <summary>
  6671. Verifies that the first value is less than the second
  6672. value. If it is not, then an
  6673. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6674. </summary>
  6675. <param name="arg1">The first value, expected to be less</param>
  6676. <param name="arg2">The second value, expected to be greater</param>
  6677. <param name="message">The message to display in case of failure</param>
  6678. <param name="args">Array of objects to be used in formatting the message</param>
  6679. </member>
  6680. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
  6681. <summary>
  6682. Verifies that the first value is less than the second
  6683. value. If it is not, then an
  6684. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6685. </summary>
  6686. <param name="arg1">The first value, expected to be less</param>
  6687. <param name="arg2">The second value, expected to be greater</param>
  6688. <param name="message">The message to display in case of failure</param>
  6689. </member>
  6690. <member name="M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
  6691. <summary>
  6692. Verifies that the first value is less than the second
  6693. value. If it is not, then an
  6694. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6695. </summary>
  6696. <param name="arg1">The first value, expected to be less</param>
  6697. <param name="arg2">The second value, expected to be greater</param>
  6698. </member>
  6699. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  6700. <summary>
  6701. Verifies that the first value is greater than or equal tothe second
  6702. value. If it is not, then an
  6703. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6704. </summary>
  6705. <param name="arg1">The first value, expected to be greater</param>
  6706. <param name="arg2">The second value, expected to be less</param>
  6707. <param name="message">The message to display in case of failure</param>
  6708. <param name="args">Array of objects to be used in formatting the message</param>
  6709. </member>
  6710. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
  6711. <summary>
  6712. Verifies that the first value is greater than or equal tothe second
  6713. value. If it is not, then an
  6714. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6715. </summary>
  6716. <param name="arg1">The first value, expected to be greater</param>
  6717. <param name="arg2">The second value, expected to be less</param>
  6718. <param name="message">The message to display in case of failure</param>
  6719. </member>
  6720. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
  6721. <summary>
  6722. Verifies that the first value is greater than or equal tothe second
  6723. value. If it is not, then an
  6724. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6725. </summary>
  6726. <param name="arg1">The first value, expected to be greater</param>
  6727. <param name="arg2">The second value, expected to be less</param>
  6728. </member>
  6729. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  6730. <summary>
  6731. Verifies that the first value is greater than or equal tothe second
  6732. value. If it is not, then an
  6733. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6734. </summary>
  6735. <param name="arg1">The first value, expected to be greater</param>
  6736. <param name="arg2">The second value, expected to be less</param>
  6737. <param name="message">The message to display in case of failure</param>
  6738. <param name="args">Array of objects to be used in formatting the message</param>
  6739. </member>
  6740. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
  6741. <summary>
  6742. Verifies that the first value is greater than or equal tothe second
  6743. value. If it is not, then an
  6744. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6745. </summary>
  6746. <param name="arg1">The first value, expected to be greater</param>
  6747. <param name="arg2">The second value, expected to be less</param>
  6748. <param name="message">The message to display in case of failure</param>
  6749. </member>
  6750. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
  6751. <summary>
  6752. Verifies that the first value is greater than or equal tothe second
  6753. value. If it is not, then an
  6754. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6755. </summary>
  6756. <param name="arg1">The first value, expected to be greater</param>
  6757. <param name="arg2">The second value, expected to be less</param>
  6758. </member>
  6759. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  6760. <summary>
  6761. Verifies that the first value is greater than or equal tothe second
  6762. value. If it is not, then an
  6763. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6764. </summary>
  6765. <param name="arg1">The first value, expected to be greater</param>
  6766. <param name="arg2">The second value, expected to be less</param>
  6767. <param name="message">The message to display in case of failure</param>
  6768. <param name="args">Array of objects to be used in formatting the message</param>
  6769. </member>
  6770. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
  6771. <summary>
  6772. Verifies that the first value is greater than or equal tothe second
  6773. value. If it is not, then an
  6774. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6775. </summary>
  6776. <param name="arg1">The first value, expected to be greater</param>
  6777. <param name="arg2">The second value, expected to be less</param>
  6778. <param name="message">The message to display in case of failure</param>
  6779. </member>
  6780. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
  6781. <summary>
  6782. Verifies that the first value is greater than or equal tothe second
  6783. value. If it is not, then an
  6784. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6785. </summary>
  6786. <param name="arg1">The first value, expected to be greater</param>
  6787. <param name="arg2">The second value, expected to be less</param>
  6788. </member>
  6789. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  6790. <summary>
  6791. Verifies that the first value is greater than or equal tothe second
  6792. value. If it is not, then an
  6793. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6794. </summary>
  6795. <param name="arg1">The first value, expected to be greater</param>
  6796. <param name="arg2">The second value, expected to be less</param>
  6797. <param name="message">The message to display in case of failure</param>
  6798. <param name="args">Array of objects to be used in formatting the message</param>
  6799. </member>
  6800. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
  6801. <summary>
  6802. Verifies that the first value is greater than or equal tothe second
  6803. value. If it is not, then an
  6804. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6805. </summary>
  6806. <param name="arg1">The first value, expected to be greater</param>
  6807. <param name="arg2">The second value, expected to be less</param>
  6808. <param name="message">The message to display in case of failure</param>
  6809. </member>
  6810. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
  6811. <summary>
  6812. Verifies that the first value is greater than or equal tothe second
  6813. value. If it is not, then an
  6814. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6815. </summary>
  6816. <param name="arg1">The first value, expected to be greater</param>
  6817. <param name="arg2">The second value, expected to be less</param>
  6818. </member>
  6819. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  6820. <summary>
  6821. Verifies that the first value is greater than or equal tothe second
  6822. value. If it is not, then an
  6823. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6824. </summary>
  6825. <param name="arg1">The first value, expected to be greater</param>
  6826. <param name="arg2">The second value, expected to be less</param>
  6827. <param name="message">The message to display in case of failure</param>
  6828. <param name="args">Array of objects to be used in formatting the message</param>
  6829. </member>
  6830. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
  6831. <summary>
  6832. Verifies that the first value is greater than or equal tothe second
  6833. value. If it is not, then an
  6834. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6835. </summary>
  6836. <param name="arg1">The first value, expected to be greater</param>
  6837. <param name="arg2">The second value, expected to be less</param>
  6838. <param name="message">The message to display in case of failure</param>
  6839. </member>
  6840. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
  6841. <summary>
  6842. Verifies that the first value is greater than or equal tothe second
  6843. value. If it is not, then an
  6844. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6845. </summary>
  6846. <param name="arg1">The first value, expected to be greater</param>
  6847. <param name="arg2">The second value, expected to be less</param>
  6848. </member>
  6849. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
  6850. <summary>
  6851. Verifies that the first value is greater than or equal tothe second
  6852. value. If it is not, then an
  6853. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6854. </summary>
  6855. <param name="arg1">The first value, expected to be greater</param>
  6856. <param name="arg2">The second value, expected to be less</param>
  6857. <param name="message">The message to display in case of failure</param>
  6858. <param name="args">Array of objects to be used in formatting the message</param>
  6859. </member>
  6860. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
  6861. <summary>
  6862. Verifies that the first value is greater than or equal tothe second
  6863. value. If it is not, then an
  6864. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6865. </summary>
  6866. <param name="arg1">The first value, expected to be greater</param>
  6867. <param name="arg2">The second value, expected to be less</param>
  6868. <param name="message">The message to display in case of failure</param>
  6869. </member>
  6870. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
  6871. <summary>
  6872. Verifies that the first value is greater than or equal tothe second
  6873. value. If it is not, then an
  6874. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6875. </summary>
  6876. <param name="arg1">The first value, expected to be greater</param>
  6877. <param name="arg2">The second value, expected to be less</param>
  6878. </member>
  6879. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
  6880. <summary>
  6881. Verifies that the first value is greater than or equal tothe second
  6882. value. If it is not, then an
  6883. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6884. </summary>
  6885. <param name="arg1">The first value, expected to be greater</param>
  6886. <param name="arg2">The second value, expected to be less</param>
  6887. <param name="message">The message to display in case of failure</param>
  6888. <param name="args">Array of objects to be used in formatting the message</param>
  6889. </member>
  6890. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
  6891. <summary>
  6892. Verifies that the first value is greater than or equal tothe second
  6893. value. If it is not, then an
  6894. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6895. </summary>
  6896. <param name="arg1">The first value, expected to be greater</param>
  6897. <param name="arg2">The second value, expected to be less</param>
  6898. <param name="message">The message to display in case of failure</param>
  6899. </member>
  6900. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
  6901. <summary>
  6902. Verifies that the first value is greater than or equal tothe second
  6903. value. If it is not, then an
  6904. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6905. </summary>
  6906. <param name="arg1">The first value, expected to be greater</param>
  6907. <param name="arg2">The second value, expected to be less</param>
  6908. </member>
  6909. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  6910. <summary>
  6911. Verifies that the first value is greater than or equal tothe second
  6912. value. If it is not, then an
  6913. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6914. </summary>
  6915. <param name="arg1">The first value, expected to be greater</param>
  6916. <param name="arg2">The second value, expected to be less</param>
  6917. <param name="message">The message to display in case of failure</param>
  6918. <param name="args">Array of objects to be used in formatting the message</param>
  6919. </member>
  6920. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
  6921. <summary>
  6922. Verifies that the first value is greater than or equal tothe second
  6923. value. If it is not, then an
  6924. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6925. </summary>
  6926. <param name="arg1">The first value, expected to be greater</param>
  6927. <param name="arg2">The second value, expected to be less</param>
  6928. <param name="message">The message to display in case of failure</param>
  6929. </member>
  6930. <member name="M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
  6931. <summary>
  6932. Verifies that the first value is greater than or equal tothe second
  6933. value. If it is not, then an
  6934. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6935. </summary>
  6936. <param name="arg1">The first value, expected to be greater</param>
  6937. <param name="arg2">The second value, expected to be less</param>
  6938. </member>
  6939. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
  6940. <summary>
  6941. Verifies that the first value is less than or equal to the second
  6942. value. If it is not, then an
  6943. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6944. </summary>
  6945. <param name="arg1">The first value, expected to be less</param>
  6946. <param name="arg2">The second value, expected to be greater</param>
  6947. <param name="message">The message to display in case of failure</param>
  6948. <param name="args">Array of objects to be used in formatting the message</param>
  6949. </member>
  6950. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
  6951. <summary>
  6952. Verifies that the first value is less than or equal to the second
  6953. value. If it is not, then an
  6954. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6955. </summary>
  6956. <param name="arg1">The first value, expected to be less</param>
  6957. <param name="arg2">The second value, expected to be greater</param>
  6958. <param name="message">The message to display in case of failure</param>
  6959. </member>
  6960. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
  6961. <summary>
  6962. Verifies that the first value is less than or equal to the second
  6963. value. If it is not, then an
  6964. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6965. </summary>
  6966. <param name="arg1">The first value, expected to be less</param>
  6967. <param name="arg2">The second value, expected to be greater</param>
  6968. </member>
  6969. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
  6970. <summary>
  6971. Verifies that the first value is less than or equal to the second
  6972. value. If it is not, then an
  6973. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6974. </summary>
  6975. <param name="arg1">The first value, expected to be less</param>
  6976. <param name="arg2">The second value, expected to be greater</param>
  6977. <param name="message">The message to display in case of failure</param>
  6978. <param name="args">Array of objects to be used in formatting the message</param>
  6979. </member>
  6980. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
  6981. <summary>
  6982. Verifies that the first value is less than or equal to the second
  6983. value. If it is not, then an
  6984. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6985. </summary>
  6986. <param name="arg1">The first value, expected to be less</param>
  6987. <param name="arg2">The second value, expected to be greater</param>
  6988. <param name="message">The message to display in case of failure</param>
  6989. </member>
  6990. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
  6991. <summary>
  6992. Verifies that the first value is less than or equal to the second
  6993. value. If it is not, then an
  6994. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  6995. </summary>
  6996. <param name="arg1">The first value, expected to be less</param>
  6997. <param name="arg2">The second value, expected to be greater</param>
  6998. </member>
  6999. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
  7000. <summary>
  7001. Verifies that the first value is less than or equal to the second
  7002. value. If it is not, then an
  7003. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7004. </summary>
  7005. <param name="arg1">The first value, expected to be less</param>
  7006. <param name="arg2">The second value, expected to be greater</param>
  7007. <param name="message">The message to display in case of failure</param>
  7008. <param name="args">Array of objects to be used in formatting the message</param>
  7009. </member>
  7010. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
  7011. <summary>
  7012. Verifies that the first value is less than or equal to the second
  7013. value. If it is not, then an
  7014. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7015. </summary>
  7016. <param name="arg1">The first value, expected to be less</param>
  7017. <param name="arg2">The second value, expected to be greater</param>
  7018. <param name="message">The message to display in case of failure</param>
  7019. </member>
  7020. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
  7021. <summary>
  7022. Verifies that the first value is less than or equal to the second
  7023. value. If it is not, then an
  7024. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7025. </summary>
  7026. <param name="arg1">The first value, expected to be less</param>
  7027. <param name="arg2">The second value, expected to be greater</param>
  7028. </member>
  7029. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
  7030. <summary>
  7031. Verifies that the first value is less than or equal to the second
  7032. value. If it is not, then an
  7033. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7034. </summary>
  7035. <param name="arg1">The first value, expected to be less</param>
  7036. <param name="arg2">The second value, expected to be greater</param>
  7037. <param name="message">The message to display in case of failure</param>
  7038. <param name="args">Array of objects to be used in formatting the message</param>
  7039. </member>
  7040. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
  7041. <summary>
  7042. Verifies that the first value is less than or equal to the second
  7043. value. If it is not, then an
  7044. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7045. </summary>
  7046. <param name="arg1">The first value, expected to be less</param>
  7047. <param name="arg2">The second value, expected to be greater</param>
  7048. <param name="message">The message to display in case of failure</param>
  7049. </member>
  7050. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
  7051. <summary>
  7052. Verifies that the first value is less than or equal to the second
  7053. value. If it is not, then an
  7054. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7055. </summary>
  7056. <param name="arg1">The first value, expected to be less</param>
  7057. <param name="arg2">The second value, expected to be greater</param>
  7058. </member>
  7059. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
  7060. <summary>
  7061. Verifies that the first value is less than or equal to the second
  7062. value. If it is not, then an
  7063. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7064. </summary>
  7065. <param name="arg1">The first value, expected to be less</param>
  7066. <param name="arg2">The second value, expected to be greater</param>
  7067. <param name="message">The message to display in case of failure</param>
  7068. <param name="args">Array of objects to be used in formatting the message</param>
  7069. </member>
  7070. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
  7071. <summary>
  7072. Verifies that the first value is less than or equal to the second
  7073. value. If it is not, then an
  7074. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7075. </summary>
  7076. <param name="arg1">The first value, expected to be less</param>
  7077. <param name="arg2">The second value, expected to be greater</param>
  7078. <param name="message">The message to display in case of failure</param>
  7079. </member>
  7080. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
  7081. <summary>
  7082. Verifies that the first value is less than or equal to the second
  7083. value. If it is not, then an
  7084. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7085. </summary>
  7086. <param name="arg1">The first value, expected to be less</param>
  7087. <param name="arg2">The second value, expected to be greater</param>
  7088. </member>
  7089. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])">
  7090. <summary>
  7091. Verifies that the first value is less than or equal to the second
  7092. value. If it is not, then an
  7093. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7094. </summary>
  7095. <param name="arg1">The first value, expected to be less</param>
  7096. <param name="arg2">The second value, expected to be greater</param>
  7097. <param name="message">The message to display in case of failure</param>
  7098. <param name="args">Array of objects to be used in formatting the message</param>
  7099. </member>
  7100. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
  7101. <summary>
  7102. Verifies that the first value is less than or equal to the second
  7103. value. If it is not, then an
  7104. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7105. </summary>
  7106. <param name="arg1">The first value, expected to be less</param>
  7107. <param name="arg2">The second value, expected to be greater</param>
  7108. <param name="message">The message to display in case of failure</param>
  7109. </member>
  7110. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
  7111. <summary>
  7112. Verifies that the first value is less than or equal to the second
  7113. value. If it is not, then an
  7114. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7115. </summary>
  7116. <param name="arg1">The first value, expected to be less</param>
  7117. <param name="arg2">The second value, expected to be greater</param>
  7118. </member>
  7119. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])">
  7120. <summary>
  7121. Verifies that the first value is less than or equal to the second
  7122. value. If it is not, then an
  7123. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7124. </summary>
  7125. <param name="arg1">The first value, expected to be less</param>
  7126. <param name="arg2">The second value, expected to be greater</param>
  7127. <param name="message">The message to display in case of failure</param>
  7128. <param name="args">Array of objects to be used in formatting the message</param>
  7129. </member>
  7130. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
  7131. <summary>
  7132. Verifies that the first value is less than or equal to the second
  7133. value. If it is not, then an
  7134. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7135. </summary>
  7136. <param name="arg1">The first value, expected to be less</param>
  7137. <param name="arg2">The second value, expected to be greater</param>
  7138. <param name="message">The message to display in case of failure</param>
  7139. </member>
  7140. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
  7141. <summary>
  7142. Verifies that the first value is less than or equal to the second
  7143. value. If it is not, then an
  7144. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7145. </summary>
  7146. <param name="arg1">The first value, expected to be less</param>
  7147. <param name="arg2">The second value, expected to be greater</param>
  7148. </member>
  7149. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
  7150. <summary>
  7151. Verifies that the first value is less than or equal to the second
  7152. value. If it is not, then an
  7153. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7154. </summary>
  7155. <param name="arg1">The first value, expected to be less</param>
  7156. <param name="arg2">The second value, expected to be greater</param>
  7157. <param name="message">The message to display in case of failure</param>
  7158. <param name="args">Array of objects to be used in formatting the message</param>
  7159. </member>
  7160. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
  7161. <summary>
  7162. Verifies that the first value is less than or equal to the second
  7163. value. If it is not, then an
  7164. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7165. </summary>
  7166. <param name="arg1">The first value, expected to be less</param>
  7167. <param name="arg2">The second value, expected to be greater</param>
  7168. <param name="message">The message to display in case of failure</param>
  7169. </member>
  7170. <member name="M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
  7171. <summary>
  7172. Verifies that the first value is less than or equal to the second
  7173. value. If it is not, then an
  7174. <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  7175. </summary>
  7176. <param name="arg1">The first value, expected to be less</param>
  7177. <param name="arg2">The second value, expected to be greater</param>
  7178. </member>
  7179. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])">
  7180. <summary>
  7181. Asserts that an object is contained in a list.
  7182. </summary>
  7183. <param name="expected">The expected object</param>
  7184. <param name="actual">The list to be examined</param>
  7185. <param name="message">The message to display in case of failure</param>
  7186. <param name="args">Array of objects to be used in formatting the message</param>
  7187. </member>
  7188. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)">
  7189. <summary>
  7190. Asserts that an object is contained in a list.
  7191. </summary>
  7192. <param name="expected">The expected object</param>
  7193. <param name="actual">The list to be examined</param>
  7194. <param name="message">The message to display in case of failure</param>
  7195. </member>
  7196. <member name="M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
  7197. <summary>
  7198. Asserts that an object is contained in a list.
  7199. </summary>
  7200. <param name="expected">The expected object</param>
  7201. <param name="actual">The list to be examined</param>
  7202. </member>
  7203. <member name="P:NUnit.Framework.Assert.Counter">
  7204. <summary>
  7205. Gets the number of assertions executed so far and
  7206. resets the counter to zero.
  7207. </summary>
  7208. </member>
  7209. <member name="T:NUnit.Framework.RequiredAddinAttribute">
  7210. <summary>
  7211. RequiredAddinAttribute may be used to indicate the names of any addins
  7212. that must be present in order to run some or all of the tests in an
  7213. assembly. If the addin is not loaded, the entire assembly is marked
  7214. as NotRunnable.
  7215. </summary>
  7216. </member>
  7217. <member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
  7218. <summary>
  7219. Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
  7220. </summary>
  7221. <param name="requiredAddin">The required addin.</param>
  7222. </member>
  7223. <member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
  7224. <summary>
  7225. Gets the name of required addin.
  7226. </summary>
  7227. <value>The required addin name.</value>
  7228. </member>
  7229. <member name="T:NUnit.Framework.CombinatorialAttribute">
  7230. <summary>
  7231. Marks a test to use a combinatorial join of any argument
  7232. data provided. Since this is the default, the attribute is
  7233. not needed.
  7234. </summary>
  7235. </member>
  7236. <member name="T:NUnit.Framework.PropertyAttribute">
  7237. <summary>
  7238. PropertyAttribute is used to attach information to a test as a name/value pair..
  7239. </summary>
  7240. </member>
  7241. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
  7242. <summary>
  7243. Construct a PropertyAttribute with a name and string value
  7244. </summary>
  7245. <param name="propertyName">The name of the property</param>
  7246. <param name="propertyValue">The property value</param>
  7247. </member>
  7248. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
  7249. <summary>
  7250. Construct a PropertyAttribute with a name and int value
  7251. </summary>
  7252. <param name="propertyName">The name of the property</param>
  7253. <param name="propertyValue">The property value</param>
  7254. </member>
  7255. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
  7256. <summary>
  7257. Construct a PropertyAttribute with a name and double value
  7258. </summary>
  7259. <param name="propertyName">The name of the property</param>
  7260. <param name="propertyValue">The property value</param>
  7261. </member>
  7262. <member name="M:NUnit.Framework.PropertyAttribute.#ctor">
  7263. <summary>
  7264. Constructor for derived classes that set the
  7265. property dictionary directly.
  7266. </summary>
  7267. </member>
  7268. <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
  7269. <summary>
  7270. Constructor for use by derived classes that use the
  7271. name of the type as the property name. Derived classes
  7272. must ensure that the Type of the property value is
  7273. a standard type supported by the BCL. Any custom
  7274. types will cause a serialization Exception when
  7275. in the client.
  7276. </summary>
  7277. </member>
  7278. <member name="P:NUnit.Framework.PropertyAttribute.Properties">
  7279. <summary>
  7280. Gets the property dictionary for this attribute
  7281. </summary>
  7282. </member>
  7283. <member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
  7284. <summary>
  7285. Default constructor
  7286. </summary>
  7287. </member>
  7288. <member name="T:NUnit.Framework.PairwiseAttribute">
  7289. <summary>
  7290. Marks a test to use a combinatorial join of any argument
  7291. data provided. Since this is the default, the attribute is
  7292. not needed.
  7293. </summary>
  7294. </member>
  7295. <member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
  7296. <summary>
  7297. Default constructor
  7298. </summary>
  7299. </member>
  7300. <member name="T:NUnit.Framework.SequentialAttribute">
  7301. <summary>
  7302. Marks a test to use a combinatorial join of any argument
  7303. data provided. Since this is the default, the attribute is
  7304. not needed.
  7305. </summary>
  7306. </member>
  7307. <member name="M:NUnit.Framework.SequentialAttribute.#ctor">
  7308. <summary>
  7309. Default constructor
  7310. </summary>
  7311. </member>
  7312. <member name="T:NUnit.Framework.TestAttribute">
  7313. <summary>
  7314. Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
  7315. class makes the method callable from the NUnit test runner. There is a property
  7316. called Description which is optional which you can provide a more detailed test
  7317. description. This class cannot be inherited.
  7318. </summary>
  7319. <example>
  7320. [TestFixture]
  7321. public class Fixture
  7322. {
  7323. [Test]
  7324. public void MethodToTest()
  7325. {}
  7326. [Test(Description = "more detailed description")]
  7327. publc void TestDescriptionMethod()
  7328. {}
  7329. }
  7330. </example>
  7331. </member>
  7332. <member name="P:NUnit.Framework.TestAttribute.Description">
  7333. <summary>
  7334. Descriptive text for this test
  7335. </summary>
  7336. </member>
  7337. <member name="T:NUnit.Framework.TestFixtureAttribute">
  7338. <example>
  7339. [TestFixture]
  7340. public class ExampleClass
  7341. {}
  7342. </example>
  7343. </member>
  7344. <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
  7345. <summary>
  7346. Default constructor
  7347. </summary>
  7348. </member>
  7349. <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
  7350. <summary>
  7351. Construct with a object[] representing a set of arguments.
  7352. In .NET 2.0, the arguments may later be separated into
  7353. type arguments and constructor arguments.
  7354. </summary>
  7355. <param name="arguments"></param>
  7356. </member>
  7357. <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
  7358. <summary>
  7359. Descriptive text for this fixture
  7360. </summary>
  7361. </member>
  7362. <member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
  7363. <summary>
  7364. The arguments originally provided to the attribute
  7365. </summary>
  7366. </member>
  7367. <member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
  7368. <summary>
  7369. Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
  7370. </summary>
  7371. <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
  7372. </member>
  7373. <member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
  7374. <summary>
  7375. Gets or sets the ignore reason. May set Ignored as a side effect.
  7376. </summary>
  7377. <value>The ignore reason.</value>
  7378. </member>
  7379. <member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
  7380. <summary>
  7381. Get or set the type arguments. If not set
  7382. explicitly, any leading arguments that are
  7383. Types are taken as type arguments.
  7384. </summary>
  7385. </member>
  7386. <member name="T:NUnit.Framework.CollectionAssert">
  7387. <summary>
  7388. A set of Assert methods operationg on one or more collections
  7389. </summary>
  7390. </member>
  7391. <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
  7392. <summary>
  7393. The Equals method throws an AssertionException. This is done
  7394. to make sure there is no mistake by calling this function.
  7395. </summary>
  7396. <param name="a"></param>
  7397. <param name="b"></param>
  7398. </member>
  7399. <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
  7400. <summary>
  7401. override the default ReferenceEquals to throw an AssertionException. This
  7402. implementation makes sure there is no mistake in calling this function
  7403. as part of Assert.
  7404. </summary>
  7405. <param name="a"></param>
  7406. <param name="b"></param>
  7407. </member>
  7408. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
  7409. <summary>
  7410. Asserts that all items contained in collection are of the type specified by expectedType.
  7411. </summary>
  7412. <param name="collection">IEnumerable containing objects to be considered</param>
  7413. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  7414. </member>
  7415. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
  7416. <summary>
  7417. Asserts that all items contained in collection are of the type specified by expectedType.
  7418. </summary>
  7419. <param name="collection">IEnumerable containing objects to be considered</param>
  7420. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  7421. <param name="message">The message that will be displayed on failure</param>
  7422. </member>
  7423. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
  7424. <summary>
  7425. Asserts that all items contained in collection are of the type specified by expectedType.
  7426. </summary>
  7427. <param name="collection">IEnumerable containing objects to be considered</param>
  7428. <param name="expectedType">System.Type that all objects in collection must be instances of</param>
  7429. <param name="message">The message that will be displayed on failure</param>
  7430. <param name="args">Arguments to be used in formatting the message</param>
  7431. </member>
  7432. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)">
  7433. <summary>
  7434. Asserts that all items contained in collection are not equal to null.
  7435. </summary>
  7436. <param name="collection">IEnumerable containing objects to be considered</param>
  7437. </member>
  7438. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
  7439. <summary>
  7440. Asserts that all items contained in collection are not equal to null.
  7441. </summary>
  7442. <param name="collection">IEnumerable containing objects to be considered</param>
  7443. <param name="message">The message that will be displayed on failure</param>
  7444. </member>
  7445. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
  7446. <summary>
  7447. Asserts that all items contained in collection are not equal to null.
  7448. </summary>
  7449. <param name="collection">IEnumerable of objects to be considered</param>
  7450. <param name="message">The message that will be displayed on failure</param>
  7451. <param name="args">Arguments to be used in formatting the message</param>
  7452. </member>
  7453. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)">
  7454. <summary>
  7455. Ensures that every object contained in collection exists within the collection
  7456. once and only once.
  7457. </summary>
  7458. <param name="collection">IEnumerable of objects to be considered</param>
  7459. </member>
  7460. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
  7461. <summary>
  7462. Ensures that every object contained in collection exists within the collection
  7463. once and only once.
  7464. </summary>
  7465. <param name="collection">IEnumerable of objects to be considered</param>
  7466. <param name="message">The message that will be displayed on failure</param>
  7467. </member>
  7468. <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
  7469. <summary>
  7470. Ensures that every object contained in collection exists within the collection
  7471. once and only once.
  7472. </summary>
  7473. <param name="collection">IEnumerable of objects to be considered</param>
  7474. <param name="message">The message that will be displayed on failure</param>
  7475. <param name="args">Arguments to be used in formatting the message</param>
  7476. </member>
  7477. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7478. <summary>
  7479. Asserts that expected and actual are exactly equal. The collections must have the same count,
  7480. and contain the exact same objects in the same order.
  7481. </summary>
  7482. <param name="expected">The first IEnumerable of objects to be considered</param>
  7483. <param name="actual">The second IEnumerable of objects to be considered</param>
  7484. </member>
  7485. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  7486. <summary>
  7487. Asserts that expected and actual are exactly equal. The collections must have the same count,
  7488. and contain the exact same objects in the same order.
  7489. If comparer is not null then it will be used to compare the objects.
  7490. </summary>
  7491. <param name="expected">The first IEnumerable of objects to be considered</param>
  7492. <param name="actual">The second IEnumerable of objects to be considered</param>
  7493. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  7494. </member>
  7495. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  7496. <summary>
  7497. Asserts that expected and actual are exactly equal. The collections must have the same count,
  7498. and contain the exact same objects in the same order.
  7499. </summary>
  7500. <param name="expected">The first IEnumerable of objects to be considered</param>
  7501. <param name="actual">The second IEnumerable of objects to be considered</param>
  7502. <param name="message">The message that will be displayed on failure</param>
  7503. </member>
  7504. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  7505. <summary>
  7506. Asserts that expected and actual are exactly equal. The collections must have the same count,
  7507. and contain the exact same objects in the same order.
  7508. If comparer is not null then it will be used to compare the objects.
  7509. </summary>
  7510. <param name="expected">The first IEnumerable of objects to be considered</param>
  7511. <param name="actual">The second IEnumerable of objects to be considered</param>
  7512. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  7513. <param name="message">The message that will be displayed on failure</param>
  7514. </member>
  7515. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  7516. <summary>
  7517. Asserts that expected and actual are exactly equal. The collections must have the same count,
  7518. and contain the exact same objects in the same order.
  7519. </summary>
  7520. <param name="expected">The first IEnumerable of objects to be considered</param>
  7521. <param name="actual">The second IEnumerable of objects to be considered</param>
  7522. <param name="message">The message that will be displayed on failure</param>
  7523. <param name="args">Arguments to be used in formatting the message</param>
  7524. </member>
  7525. <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  7526. <summary>
  7527. Asserts that expected and actual are exactly equal. The collections must have the same count,
  7528. and contain the exact same objects in the same order.
  7529. If comparer is not null then it will be used to compare the objects.
  7530. </summary>
  7531. <param name="expected">The first IEnumerable of objects to be considered</param>
  7532. <param name="actual">The second IEnumerable of objects to be considered</param>
  7533. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  7534. <param name="message">The message that will be displayed on failure</param>
  7535. <param name="args">Arguments to be used in formatting the message</param>
  7536. </member>
  7537. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7538. <summary>
  7539. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  7540. </summary>
  7541. <param name="expected">The first IEnumerable of objects to be considered</param>
  7542. <param name="actual">The second IEnumerable of objects to be considered</param>
  7543. </member>
  7544. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  7545. <summary>
  7546. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  7547. </summary>
  7548. <param name="expected">The first IEnumerable of objects to be considered</param>
  7549. <param name="actual">The second IEnumerable of objects to be considered</param>
  7550. <param name="message">The message that will be displayed on failure</param>
  7551. </member>
  7552. <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  7553. <summary>
  7554. Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
  7555. </summary>
  7556. <param name="expected">The first IEnumerable of objects to be considered</param>
  7557. <param name="actual">The second IEnumerable of objects to be considered</param>
  7558. <param name="message">The message that will be displayed on failure</param>
  7559. <param name="args">Arguments to be used in formatting the message</param>
  7560. </member>
  7561. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7562. <summary>
  7563. Asserts that expected and actual are not exactly equal.
  7564. </summary>
  7565. <param name="expected">The first IEnumerable of objects to be considered</param>
  7566. <param name="actual">The second IEnumerable of objects to be considered</param>
  7567. </member>
  7568. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
  7569. <summary>
  7570. Asserts that expected and actual are not exactly equal.
  7571. If comparer is not null then it will be used to compare the objects.
  7572. </summary>
  7573. <param name="expected">The first IEnumerable of objects to be considered</param>
  7574. <param name="actual">The second IEnumerable of objects to be considered</param>
  7575. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  7576. </member>
  7577. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  7578. <summary>
  7579. Asserts that expected and actual are not exactly equal.
  7580. </summary>
  7581. <param name="expected">The first IEnumerable of objects to be considered</param>
  7582. <param name="actual">The second IEnumerable of objects to be considered</param>
  7583. <param name="message">The message that will be displayed on failure</param>
  7584. </member>
  7585. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  7586. <summary>
  7587. Asserts that expected and actual are not exactly equal.
  7588. If comparer is not null then it will be used to compare the objects.
  7589. </summary>
  7590. <param name="expected">The first IEnumerable of objects to be considered</param>
  7591. <param name="actual">The second IEnumerable of objects to be considered</param>
  7592. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  7593. <param name="message">The message that will be displayed on failure</param>
  7594. </member>
  7595. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  7596. <summary>
  7597. Asserts that expected and actual are not exactly equal.
  7598. </summary>
  7599. <param name="expected">The first IEnumerable of objects to be considered</param>
  7600. <param name="actual">The second IEnumerable of objects to be considered</param>
  7601. <param name="message">The message that will be displayed on failure</param>
  7602. <param name="args">Arguments to be used in formatting the message</param>
  7603. </member>
  7604. <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  7605. <summary>
  7606. Asserts that expected and actual are not exactly equal.
  7607. If comparer is not null then it will be used to compare the objects.
  7608. </summary>
  7609. <param name="expected">The first IEnumerable of objects to be considered</param>
  7610. <param name="actual">The second IEnumerable of objects to be considered</param>
  7611. <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
  7612. <param name="message">The message that will be displayed on failure</param>
  7613. <param name="args">Arguments to be used in formatting the message</param>
  7614. </member>
  7615. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7616. <summary>
  7617. Asserts that expected and actual are not equivalent.
  7618. </summary>
  7619. <param name="expected">The first IEnumerable of objects to be considered</param>
  7620. <param name="actual">The second IEnumerable of objects to be considered</param>
  7621. </member>
  7622. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  7623. <summary>
  7624. Asserts that expected and actual are not equivalent.
  7625. </summary>
  7626. <param name="expected">The first IEnumerable of objects to be considered</param>
  7627. <param name="actual">The second IEnumerable of objects to be considered</param>
  7628. <param name="message">The message that will be displayed on failure</param>
  7629. </member>
  7630. <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  7631. <summary>
  7632. Asserts that expected and actual are not equivalent.
  7633. </summary>
  7634. <param name="expected">The first IEnumerable of objects to be considered</param>
  7635. <param name="actual">The second IEnumerable of objects to be considered</param>
  7636. <param name="message">The message that will be displayed on failure</param>
  7637. <param name="args">Arguments to be used in formatting the message</param>
  7638. </member>
  7639. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)">
  7640. <summary>
  7641. Asserts that collection contains actual as an item.
  7642. </summary>
  7643. <param name="collection">IEnumerable of objects to be considered</param>
  7644. <param name="actual">Object to be found within collection</param>
  7645. </member>
  7646. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
  7647. <summary>
  7648. Asserts that collection contains actual as an item.
  7649. </summary>
  7650. <param name="collection">IEnumerable of objects to be considered</param>
  7651. <param name="actual">Object to be found within collection</param>
  7652. <param name="message">The message that will be displayed on failure</param>
  7653. </member>
  7654. <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  7655. <summary>
  7656. Asserts that collection contains actual as an item.
  7657. </summary>
  7658. <param name="collection">IEnumerable of objects to be considered</param>
  7659. <param name="actual">Object to be found within collection</param>
  7660. <param name="message">The message that will be displayed on failure</param>
  7661. <param name="args">Arguments to be used in formatting the message</param>
  7662. </member>
  7663. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)">
  7664. <summary>
  7665. Asserts that collection does not contain actual as an item.
  7666. </summary>
  7667. <param name="collection">IEnumerable of objects to be considered</param>
  7668. <param name="actual">Object that cannot exist within collection</param>
  7669. </member>
  7670. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
  7671. <summary>
  7672. Asserts that collection does not contain actual as an item.
  7673. </summary>
  7674. <param name="collection">IEnumerable of objects to be considered</param>
  7675. <param name="actual">Object that cannot exist within collection</param>
  7676. <param name="message">The message that will be displayed on failure</param>
  7677. </member>
  7678. <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
  7679. <summary>
  7680. Asserts that collection does not contain actual as an item.
  7681. </summary>
  7682. <param name="collection">IEnumerable of objects to be considered</param>
  7683. <param name="actual">Object that cannot exist within collection</param>
  7684. <param name="message">The message that will be displayed on failure</param>
  7685. <param name="args">Arguments to be used in formatting the message</param>
  7686. </member>
  7687. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7688. <summary>
  7689. Asserts that superset is not a subject of subset.
  7690. </summary>
  7691. <param name="subset">The IEnumerable superset to be considered</param>
  7692. <param name="superset">The IEnumerable subset to be considered</param>
  7693. </member>
  7694. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  7695. <summary>
  7696. Asserts that superset is not a subject of subset.
  7697. </summary>
  7698. <param name="subset">The IEnumerable superset to be considered</param>
  7699. <param name="superset">The IEnumerable subset to be considered</param>
  7700. <param name="message">The message that will be displayed on failure</param>
  7701. </member>
  7702. <member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  7703. <summary>
  7704. Asserts that superset is not a subject of subset.
  7705. </summary>
  7706. <param name="subset">The IEnumerable superset to be considered</param>
  7707. <param name="superset">The IEnumerable subset to be considered</param>
  7708. <param name="message">The message that will be displayed on failure</param>
  7709. <param name="args">Arguments to be used in formatting the message</param>
  7710. </member>
  7711. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  7712. <summary>
  7713. Asserts that superset is a subset of subset.
  7714. </summary>
  7715. <param name="subset">The IEnumerable superset to be considered</param>
  7716. <param name="superset">The IEnumerable subset to be considered</param>
  7717. </member>
  7718. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
  7719. <summary>
  7720. Asserts that superset is a subset of subset.
  7721. </summary>
  7722. <param name="subset">The IEnumerable superset to be considered</param>
  7723. <param name="superset">The IEnumerable subset to be considered</param>
  7724. <param name="message">The message that will be displayed on failure</param>
  7725. </member>
  7726. <member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
  7727. <summary>
  7728. Asserts that superset is a subset of subset.
  7729. </summary>
  7730. <param name="subset">The IEnumerable superset to be considered</param>
  7731. <param name="superset">The IEnumerable subset to be considered</param>
  7732. <param name="message">The message that will be displayed on failure</param>
  7733. <param name="args">Arguments to be used in formatting the message</param>
  7734. </member>
  7735. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  7736. <summary>
  7737. Assert that an array, list or other collection is empty
  7738. </summary>
  7739. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7740. <param name="message">The message to be displayed on failure</param>
  7741. <param name="args">Arguments to be used in formatting the message</param>
  7742. </member>
  7743. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
  7744. <summary>
  7745. Assert that an array, list or other collection is empty
  7746. </summary>
  7747. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7748. <param name="message">The message to be displayed on failure</param>
  7749. </member>
  7750. <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
  7751. <summary>
  7752. Assert that an array,list or other collection is empty
  7753. </summary>
  7754. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7755. </member>
  7756. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
  7757. <summary>
  7758. Assert that an array, list or other collection is empty
  7759. </summary>
  7760. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7761. <param name="message">The message to be displayed on failure</param>
  7762. <param name="args">Arguments to be used in formatting the message</param>
  7763. </member>
  7764. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
  7765. <summary>
  7766. Assert that an array, list or other collection is empty
  7767. </summary>
  7768. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7769. <param name="message">The message to be displayed on failure</param>
  7770. </member>
  7771. <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
  7772. <summary>
  7773. Assert that an array,list or other collection is empty
  7774. </summary>
  7775. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7776. </member>
  7777. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])">
  7778. <summary>
  7779. Assert that an array, list or other collection is ordered
  7780. </summary>
  7781. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7782. <param name="message">The message to be displayed on failure</param>
  7783. <param name="args">Arguments to be used in formatting the message</param>
  7784. </member>
  7785. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)">
  7786. <summary>
  7787. Assert that an array, list or other collection is ordered
  7788. </summary>
  7789. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7790. <param name="message">The message to be displayed on failure</param>
  7791. </member>
  7792. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)">
  7793. <summary>
  7794. Assert that an array, list or other collection is ordered
  7795. </summary>
  7796. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7797. </member>
  7798. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
  7799. <summary>
  7800. Assert that an array, list or other collection is ordered
  7801. </summary>
  7802. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7803. <param name="comparer">A custom comparer to perform the comparisons</param>
  7804. <param name="message">The message to be displayed on failure</param>
  7805. <param name="args">Arguments to be used in formatting the message</param>
  7806. </member>
  7807. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
  7808. <summary>
  7809. Assert that an array, list or other collection is ordered
  7810. </summary>
  7811. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7812. <param name="comparer">A custom comparer to perform the comparisons</param>
  7813. <param name="message">The message to be displayed on failure</param>
  7814. </member>
  7815. <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)">
  7816. <summary>
  7817. Assert that an array, list or other collection is ordered
  7818. </summary>
  7819. <param name="collection">An array, list or other collection implementing IEnumerable</param>
  7820. <param name="comparer">A custom comparer to perform the comparisons</param>
  7821. </member>
  7822. <member name="T:NUnit.Framework.ParameterDataAttribute">
  7823. <summary>
  7824. Abstract base class for attributes that apply to parameters
  7825. and supply data for the parameter.
  7826. </summary>
  7827. </member>
  7828. <member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
  7829. <summary>
  7830. Gets the data to be provided to the specified parameter
  7831. </summary>
  7832. </member>
  7833. <member name="T:NUnit.Framework.ValuesAttribute">
  7834. <summary>
  7835. ValuesAttribute is used to provide literal arguments for
  7836. an individual parameter of a test.
  7837. </summary>
  7838. </member>
  7839. <member name="F:NUnit.Framework.ValuesAttribute.data">
  7840. <summary>
  7841. The collection of data to be returned. Must
  7842. be set by any derived attribute classes.
  7843. </summary>
  7844. </member>
  7845. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
  7846. <summary>
  7847. Construct with one argument
  7848. </summary>
  7849. <param name="arg1"></param>
  7850. </member>
  7851. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
  7852. <summary>
  7853. Construct with two arguments
  7854. </summary>
  7855. <param name="arg1"></param>
  7856. <param name="arg2"></param>
  7857. </member>
  7858. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
  7859. <summary>
  7860. Construct with three arguments
  7861. </summary>
  7862. <param name="arg1"></param>
  7863. <param name="arg2"></param>
  7864. <param name="arg3"></param>
  7865. </member>
  7866. <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
  7867. <summary>
  7868. Construct with an array of arguments
  7869. </summary>
  7870. <param name="args"></param>
  7871. </member>
  7872. <member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
  7873. <summary>
  7874. Get the collection of values to be used as arguments
  7875. </summary>
  7876. </member>
  7877. <member name="T:NUnit.Framework.AssertionException">
  7878. <summary>
  7879. Thrown when an assertion failed.
  7880. </summary>
  7881. </member>
  7882. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
  7883. <param name="message">The error message that explains
  7884. the reason for the exception</param>
  7885. </member>
  7886. <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
  7887. <param name="message">The error message that explains
  7888. the reason for the exception</param>
  7889. <param name="inner">The exception that caused the
  7890. current exception</param>
  7891. </member>
  7892. <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7893. <summary>
  7894. Serialization Constructor
  7895. </summary>
  7896. </member>
  7897. <member name="T:NUnit.Framework.TimeoutAttribute">
  7898. <summary>
  7899. WUsed on a method, marks the test with a timeout value in milliseconds.
  7900. The test will be run in a separate thread and is cancelled if the timeout
  7901. is exceeded. Used on a method or assembly, sets the default timeout
  7902. for all contained test methods.
  7903. </summary>
  7904. </member>
  7905. <member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
  7906. <summary>
  7907. Construct a TimeoutAttribute given a time in milliseconds
  7908. </summary>
  7909. <param name="timeout">The timeout value in milliseconds</param>
  7910. </member>
  7911. <member name="T:NUnit.Framework.RequiresSTAAttribute">
  7912. <summary>
  7913. Marks a test that must run in the STA, causing it
  7914. to run in a separate thread if necessary.
  7915. On methods, you may also use STAThreadAttribute
  7916. to serve the same purpose.
  7917. </summary>
  7918. </member>
  7919. <member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
  7920. <summary>
  7921. Construct a RequiresSTAAttribute
  7922. </summary>
  7923. </member>
  7924. <member name="T:NUnit.Framework.RequiresMTAAttribute">
  7925. <summary>
  7926. Marks a test that must run in the MTA, causing it
  7927. to run in a separate thread if necessary.
  7928. On methods, you may also use MTAThreadAttribute
  7929. to serve the same purpose.
  7930. </summary>
  7931. </member>
  7932. <member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
  7933. <summary>
  7934. Construct a RequiresMTAAttribute
  7935. </summary>
  7936. </member>
  7937. <member name="T:NUnit.Framework.RequiresThreadAttribute">
  7938. <summary>
  7939. Marks a test that must run on a separate thread.
  7940. </summary>
  7941. </member>
  7942. <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
  7943. <summary>
  7944. Construct a RequiresThreadAttribute
  7945. </summary>
  7946. </member>
  7947. <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
  7948. <summary>
  7949. Construct a RequiresThreadAttribute, specifying the apartment
  7950. </summary>
  7951. </member>
  7952. <member name="T:NUnit.Framework.AssertionHelper">
  7953. <summary>
  7954. AssertionHelper is an optional base class for user tests,
  7955. allowing the use of shorter names for constraints and
  7956. asserts and avoiding conflict with the definition of
  7957. <see cref="T:NUnit.Framework.Is"/>, from which it inherits much of its
  7958. behavior, in certain mock object frameworks.
  7959. </summary>
  7960. </member>
  7961. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  7962. <summary>
  7963. Apply a constraint to an actual value, succeeding if the constraint
  7964. is satisfied and throwing an assertion exception on failure. Works
  7965. identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)"/>
  7966. </summary>
  7967. <param name="constraint">A Constraint to be applied</param>
  7968. <param name="actual">The actual value to test</param>
  7969. </member>
  7970. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  7971. <summary>
  7972. Apply a constraint to an actual value, succeeding if the constraint
  7973. is satisfied and throwing an assertion exception on failure. Works
  7974. identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)"/>
  7975. </summary>
  7976. <param name="constraint">A Constraint to be applied</param>
  7977. <param name="actual">The actual value to test</param>
  7978. <param name="message">The message that will be displayed on failure</param>
  7979. </member>
  7980. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  7981. <summary>
  7982. Apply a constraint to an actual value, succeeding if the constraint
  7983. is satisfied and throwing an assertion exception on failure. Works
  7984. identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])"/>
  7985. </summary>
  7986. <param name="constraint">A Constraint to be applied</param>
  7987. <param name="actual">The actual value to test</param>
  7988. <param name="message">The message that will be displayed on failure</param>
  7989. <param name="args">Arguments to be used in formatting the message</param>
  7990. </member>
  7991. <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  7992. <summary>
  7993. Apply a constraint to an actual value, succeeding if the constraint
  7994. is satisfied and throwing an assertion exception on failure.
  7995. </summary>
  7996. <param name="expr">A Constraint expression to be applied</param>
  7997. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  7998. </member>
  7999. <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  8000. <summary>
  8001. Apply a constraint to an actual value, succeeding if the constraint
  8002. is satisfied and throwing an assertion exception on failure.
  8003. </summary>
  8004. <param name="expr">A Constraint expression to be applied</param>
  8005. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  8006. <param name="message">The message that will be displayed on failure</param>
  8007. </member>
  8008. <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  8009. <summary>
  8010. Apply a constraint to an actual value, succeeding if the constraint
  8011. is satisfied and throwing an assertion exception on failure.
  8012. </summary>
  8013. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  8014. <param name="expr">A Constraint expression to be applied</param>
  8015. <param name="message">The message that will be displayed on failure</param>
  8016. <param name="args">Arguments to be used in formatting the message</param>
  8017. </member>
  8018. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  8019. <summary>
  8020. Apply a constraint to a referenced value, succeeding if the constraint
  8021. is satisfied and throwing an assertion exception on failure.
  8022. </summary>
  8023. <param name="constraint">A Constraint to be applied</param>
  8024. <param name="actual">The actual value to test</param>
  8025. </member>
  8026. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  8027. <summary>
  8028. Apply a constraint to a referenced value, succeeding if the constraint
  8029. is satisfied and throwing an assertion exception on failure.
  8030. </summary>
  8031. <param name="constraint">A Constraint to be applied</param>
  8032. <param name="actual">The actual value to test</param>
  8033. <param name="message">The message that will be displayed on failure</param>
  8034. </member>
  8035. <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  8036. <summary>
  8037. Apply a constraint to a referenced value, succeeding if the constraint
  8038. is satisfied and throwing an assertion exception on failure.
  8039. </summary>
  8040. <param name="expression">A Constraint to be applied</param>
  8041. <param name="actual">The actual value to test</param>
  8042. <param name="message">The message that will be displayed on failure</param>
  8043. <param name="args">Arguments to be used in formatting the message</param>
  8044. </member>
  8045. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
  8046. <summary>
  8047. Asserts that a condition is true. If the condition is false the method throws
  8048. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  8049. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
  8050. </summary>
  8051. <param name="condition">The evaluated condition</param>
  8052. <param name="message">The message to display if the condition is false</param>
  8053. <param name="args">Arguments to be used in formatting the message</param>
  8054. </member>
  8055. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
  8056. <summary>
  8057. Asserts that a condition is true. If the condition is false the method throws
  8058. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
  8059. <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
  8060. </summary>
  8061. <param name="condition">The evaluated condition</param>
  8062. <param name="message">The message to display if the condition is false</param>
  8063. </member>
  8064. <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
  8065. <summary>
  8066. Asserts that a condition is true. If the condition is false the method throws
  8067. an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
  8068. </summary>
  8069. <param name="condition">The evaluated condition</param>
  8070. </member>
  8071. <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  8072. <summary>
  8073. Asserts that the code represented by a delegate throws an exception
  8074. that satisfies the constraint provided.
  8075. </summary>
  8076. <param name="code">A TestDelegate to be executed</param>
  8077. <param name="constraint">A ThrowsConstraint used in the test</param>
  8078. </member>
  8079. <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
  8080. <summary>
  8081. Returns a ListMapper based on a collection.
  8082. </summary>
  8083. <param name="original">The original collection</param>
  8084. <returns></returns>
  8085. </member>
  8086. <member name="T:NUnit.Framework.CategoryAttribute">
  8087. <summary>
  8088. Attribute used to apply a category to a test
  8089. </summary>
  8090. </member>
  8091. <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
  8092. <summary>
  8093. The name of the category
  8094. </summary>
  8095. </member>
  8096. <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
  8097. <summary>
  8098. Construct attribute for a given category
  8099. </summary>
  8100. <param name="name">The name of the category</param>
  8101. </member>
  8102. <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
  8103. <summary>
  8104. Protected constructor uses the Type name as the name
  8105. of the category.
  8106. </summary>
  8107. </member>
  8108. <member name="P:NUnit.Framework.CategoryAttribute.Name">
  8109. <summary>
  8110. The name of the category
  8111. </summary>
  8112. </member>
  8113. <member name="T:NUnit.Framework.RandomAttribute">
  8114. <summary>
  8115. RandomAttribute is used to supply a set of random values
  8116. to a single parameter of a parameterized test.
  8117. </summary>
  8118. </member>
  8119. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
  8120. <summary>
  8121. Construct a set of doubles from 0.0 to 1.0,
  8122. specifying only the count.
  8123. </summary>
  8124. <param name="count"></param>
  8125. </member>
  8126. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
  8127. <summary>
  8128. Construct a set of doubles from min to max
  8129. </summary>
  8130. <param name="min"></param>
  8131. <param name="max"></param>
  8132. <param name="count"></param>
  8133. </member>
  8134. <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
  8135. <summary>
  8136. Construct a set of ints from min to max
  8137. </summary>
  8138. <param name="min"></param>
  8139. <param name="max"></param>
  8140. <param name="count"></param>
  8141. </member>
  8142. <member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
  8143. <summary>
  8144. Get the collection of values to be used as arguments
  8145. </summary>
  8146. </member>
  8147. <member name="T:NUnit.Framework.DescriptionAttribute">
  8148. <summary>
  8149. Attribute used to provide descriptive text about a
  8150. test case or fixture.
  8151. </summary>
  8152. </member>
  8153. <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
  8154. <summary>
  8155. Construct the attribute
  8156. </summary>
  8157. <param name="description">Text describing the test</param>
  8158. </member>
  8159. <member name="P:NUnit.Framework.DescriptionAttribute.Description">
  8160. <summary>
  8161. Gets the test description
  8162. </summary>
  8163. </member>
  8164. <member name="T:NUnit.Framework.ExplicitAttribute">
  8165. <summary>
  8166. ExplicitAttribute marks a test or test fixture so that it will
  8167. only be run if explicitly executed from the gui or command line
  8168. or if it is included by use of a filter. The test will not be
  8169. run simply because an enclosing suite is run.
  8170. </summary>
  8171. </member>
  8172. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
  8173. <summary>
  8174. Default constructor
  8175. </summary>
  8176. </member>
  8177. <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
  8178. <summary>
  8179. Constructor with a reason
  8180. </summary>
  8181. <param name="reason">The reason test is marked explicit</param>
  8182. </member>
  8183. <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
  8184. <summary>
  8185. The reason test is marked explicit
  8186. </summary>
  8187. </member>
  8188. <member name="T:NUnit.Framework.Assume">
  8189. <summary>
  8190. Provides static methods to express the assumptions
  8191. that must be met for a test to give a meaningful
  8192. result. If an assumption is not met, the test
  8193. should produce an inconclusive result.
  8194. </summary>
  8195. </member>
  8196. <member name="M:NUnit.Framework.Assume.Equals(System.Object,System.Object)">
  8197. <summary>
  8198. The Equals method throws an AssertionException. This is done
  8199. to make sure there is no mistake by calling this function.
  8200. </summary>
  8201. <param name="a"></param>
  8202. <param name="b"></param>
  8203. </member>
  8204. <member name="M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)">
  8205. <summary>
  8206. override the default ReferenceEquals to throw an AssertionException. This
  8207. implementation makes sure there is no mistake in calling this function
  8208. as part of Assert.
  8209. </summary>
  8210. <param name="a"></param>
  8211. <param name="b"></param>
  8212. </member>
  8213. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
  8214. <summary>
  8215. Apply a constraint to an actual value, succeeding if the constraint
  8216. is satisfied and throwing an InconclusiveException on failure.
  8217. </summary>
  8218. <param name="expression">A Constraint expression to be applied</param>
  8219. <param name="actual">The actual value to test</param>
  8220. </member>
  8221. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  8222. <summary>
  8223. Apply a constraint to an actual value, succeeding if the constraint
  8224. is satisfied and throwing an InconclusiveException on failure.
  8225. </summary>
  8226. <param name="expression">A Constraint expression to be applied</param>
  8227. <param name="actual">The actual value to test</param>
  8228. <param name="message">The message that will be displayed on failure</param>
  8229. </member>
  8230. <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  8231. <summary>
  8232. Apply a constraint to an actual value, succeeding if the constraint
  8233. is satisfied and throwing an InconclusiveException on failure.
  8234. </summary>
  8235. <param name="expression">A Constraint expression to be applied</param>
  8236. <param name="actual">The actual value to test</param>
  8237. <param name="message">The message that will be displayed on failure</param>
  8238. <param name="args">Arguments to be used in formatting the message</param>
  8239. </member>
  8240. <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  8241. <summary>
  8242. Apply a constraint to an actual value, succeeding if the constraint
  8243. is satisfied and throwing an InconclusiveException on failure.
  8244. </summary>
  8245. <param name="expr">A Constraint expression to be applied</param>
  8246. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  8247. </member>
  8248. <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  8249. <summary>
  8250. Apply a constraint to an actual value, succeeding if the constraint
  8251. is satisfied and throwing an InconclusiveException on failure.
  8252. </summary>
  8253. <param name="expr">A Constraint expression to be applied</param>
  8254. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  8255. <param name="message">The message that will be displayed on failure</param>
  8256. </member>
  8257. <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  8258. <summary>
  8259. Apply a constraint to an actual value, succeeding if the constraint
  8260. is satisfied and throwing an InconclusiveException on failure.
  8261. </summary>
  8262. <param name="del">An ActualValueDelegate returning the value to be tested</param>
  8263. <param name="expr">A Constraint expression to be applied</param>
  8264. <param name="message">The message that will be displayed on failure</param>
  8265. <param name="args">Arguments to be used in formatting the message</param>
  8266. </member>
  8267. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
  8268. <summary>
  8269. Apply a constraint to a referenced value, succeeding if the constraint
  8270. is satisfied and throwing an InconclusiveException on failure.
  8271. </summary>
  8272. <param name="expression">A Constraint expression to be applied</param>
  8273. <param name="actual">The actual value to test</param>
  8274. </member>
  8275. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
  8276. <summary>
  8277. Apply a constraint to a referenced value, succeeding if the constraint
  8278. is satisfied and throwing an InconclusiveException on failure.
  8279. </summary>
  8280. <param name="expression">A Constraint expression to be applied</param>
  8281. <param name="actual">The actual value to test</param>
  8282. <param name="message">The message that will be displayed on failure</param>
  8283. </member>
  8284. <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
  8285. <summary>
  8286. Apply a constraint to a referenced value, succeeding if the constraint
  8287. is satisfied and throwing an InconclusiveException on failure.
  8288. </summary>
  8289. <param name="expression">A Constraint expression to be applied</param>
  8290. <param name="actual">The actual value to test</param>
  8291. <param name="message">The message that will be displayed on failure</param>
  8292. <param name="args">Arguments to be used in formatting the message</param>
  8293. </member>
  8294. <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String,System.Object[])">
  8295. <summary>
  8296. Asserts that a condition is true. If the condition is false the method throws
  8297. an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  8298. </summary>
  8299. <param name="condition">The evaluated condition</param>
  8300. <param name="message">The message to display if the condition is false</param>
  8301. <param name="args">Arguments to be used in formatting the message</param>
  8302. </member>
  8303. <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String)">
  8304. <summary>
  8305. Asserts that a condition is true. If the condition is false the method throws
  8306. an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  8307. </summary>
  8308. <param name="condition">The evaluated condition</param>
  8309. <param name="message">The message to display if the condition is false</param>
  8310. </member>
  8311. <member name="M:NUnit.Framework.Assume.That(System.Boolean)">
  8312. <summary>
  8313. Asserts that a condition is true. If the condition is false the
  8314. method throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
  8315. </summary>
  8316. <param name="condition">The evaluated condition</param>
  8317. </member>
  8318. <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
  8319. <summary>
  8320. Asserts that the code represented by a delegate throws an exception
  8321. that satisfies the constraint provided.
  8322. </summary>
  8323. <param name="code">A TestDelegate to be executed</param>
  8324. <param name="constraint">A ThrowsConstraint used in the test</param>
  8325. </member>
  8326. <member name="T:NUnit.Framework.GlobalSettings">
  8327. <summary>
  8328. GlobalSettings is a place for setting default values used
  8329. by the framework in performing asserts.
  8330. </summary>
  8331. </member>
  8332. <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
  8333. <summary>
  8334. Default tolerance for floating point equality
  8335. </summary>
  8336. </member>
  8337. <member name="T:NUnit.Framework.Is">
  8338. <summary>
  8339. Helper class with properties and methods that supply
  8340. a number of constraints used in Asserts.
  8341. </summary>
  8342. </member>
  8343. <member name="M:NUnit.Framework.Is.EqualTo(System.Object)">
  8344. <summary>
  8345. Returns a constraint that tests two items for equality
  8346. </summary>
  8347. </member>
  8348. <member name="M:NUnit.Framework.Is.SameAs(System.Object)">
  8349. <summary>
  8350. Returns a constraint that tests that two references are the same object
  8351. </summary>
  8352. </member>
  8353. <member name="M:NUnit.Framework.Is.GreaterThan(System.Object)">
  8354. <summary>
  8355. Returns a constraint that tests whether the
  8356. actual value is greater than the suppled argument
  8357. </summary>
  8358. </member>
  8359. <member name="M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)">
  8360. <summary>
  8361. Returns a constraint that tests whether the
  8362. actual value is greater than or equal to the suppled argument
  8363. </summary>
  8364. </member>
  8365. <member name="M:NUnit.Framework.Is.AtLeast(System.Object)">
  8366. <summary>
  8367. Returns a constraint that tests whether the
  8368. actual value is greater than or equal to the suppled argument
  8369. </summary>
  8370. </member>
  8371. <member name="M:NUnit.Framework.Is.LessThan(System.Object)">
  8372. <summary>
  8373. Returns a constraint that tests whether the
  8374. actual value is less than the suppled argument
  8375. </summary>
  8376. </member>
  8377. <member name="M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)">
  8378. <summary>
  8379. Returns a constraint that tests whether the
  8380. actual value is less than or equal to the suppled argument
  8381. </summary>
  8382. </member>
  8383. <member name="M:NUnit.Framework.Is.AtMost(System.Object)">
  8384. <summary>
  8385. Returns a constraint that tests whether the
  8386. actual value is less than or equal to the suppled argument
  8387. </summary>
  8388. </member>
  8389. <member name="M:NUnit.Framework.Is.TypeOf(System.Type)">
  8390. <summary>
  8391. Returns a constraint that tests whether the actual
  8392. value is of the exact type supplied as an argument.
  8393. </summary>
  8394. </member>
  8395. <member name="M:NUnit.Framework.Is.TypeOf``1">
  8396. <summary>
  8397. Returns a constraint that tests whether the actual
  8398. value is of the exact type supplied as an argument.
  8399. </summary>
  8400. </member>
  8401. <member name="M:NUnit.Framework.Is.InstanceOf(System.Type)">
  8402. <summary>
  8403. Returns a constraint that tests whether the actual value
  8404. is of the type supplied as an argument or a derived type.
  8405. </summary>
  8406. </member>
  8407. <member name="M:NUnit.Framework.Is.InstanceOf``1">
  8408. <summary>
  8409. Returns a constraint that tests whether the actual value
  8410. is of the type supplied as an argument or a derived type.
  8411. </summary>
  8412. </member>
  8413. <member name="M:NUnit.Framework.Is.InstanceOfType(System.Type)">
  8414. <summary>
  8415. Returns a constraint that tests whether the actual value
  8416. is of the type supplied as an argument or a derived type.
  8417. </summary>
  8418. </member>
  8419. <member name="M:NUnit.Framework.Is.InstanceOfType``1">
  8420. <summary>
  8421. Returns a constraint that tests whether the actual value
  8422. is of the type supplied as an argument or a derived type.
  8423. </summary>
  8424. </member>
  8425. <member name="M:NUnit.Framework.Is.AssignableFrom(System.Type)">
  8426. <summary>
  8427. Returns a constraint that tests whether the actual value
  8428. is assignable from the type supplied as an argument.
  8429. </summary>
  8430. </member>
  8431. <member name="M:NUnit.Framework.Is.AssignableFrom``1">
  8432. <summary>
  8433. Returns a constraint that tests whether the actual value
  8434. is assignable from the type supplied as an argument.
  8435. </summary>
  8436. </member>
  8437. <member name="M:NUnit.Framework.Is.AssignableTo(System.Type)">
  8438. <summary>
  8439. Returns a constraint that tests whether the actual value
  8440. is assignable from the type supplied as an argument.
  8441. </summary>
  8442. </member>
  8443. <member name="M:NUnit.Framework.Is.AssignableTo``1">
  8444. <summary>
  8445. Returns a constraint that tests whether the actual value
  8446. is assignable from the type supplied as an argument.
  8447. </summary>
  8448. </member>
  8449. <member name="M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)">
  8450. <summary>
  8451. Returns a constraint that tests whether the actual value
  8452. is a collection containing the same elements as the
  8453. collection supplied as an argument.
  8454. </summary>
  8455. </member>
  8456. <member name="M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)">
  8457. <summary>
  8458. Returns a constraint that tests whether the actual value
  8459. is a subset of the collection supplied as an argument.
  8460. </summary>
  8461. </member>
  8462. <member name="M:NUnit.Framework.Is.StringContaining(System.String)">
  8463. <summary>
  8464. Returns a constraint that succeeds if the actual
  8465. value contains the substring supplied as an argument.
  8466. </summary>
  8467. </member>
  8468. <member name="M:NUnit.Framework.Is.StringStarting(System.String)">
  8469. <summary>
  8470. Returns a constraint that succeeds if the actual
  8471. value starts with the substring supplied as an argument.
  8472. </summary>
  8473. </member>
  8474. <member name="M:NUnit.Framework.Is.StringEnding(System.String)">
  8475. <summary>
  8476. Returns a constraint that succeeds if the actual
  8477. value ends with the substring supplied as an argument.
  8478. </summary>
  8479. </member>
  8480. <member name="M:NUnit.Framework.Is.StringMatching(System.String)">
  8481. <summary>
  8482. Returns a constraint that succeeds if the actual
  8483. value matches the Regex pattern supplied as an argument.
  8484. </summary>
  8485. </member>
  8486. <member name="M:NUnit.Framework.Is.SamePath(System.String)">
  8487. <summary>
  8488. Returns a constraint that tests whether the path provided
  8489. is the same as an expected path after canonicalization.
  8490. </summary>
  8491. </member>
  8492. <member name="M:NUnit.Framework.Is.SamePathOrUnder(System.String)">
  8493. <summary>
  8494. Returns a constraint that tests whether the path provided
  8495. is the same path or under an expected path after canonicalization.
  8496. </summary>
  8497. </member>
  8498. <member name="M:NUnit.Framework.Is.InRange(System.IComparable,System.IComparable)">
  8499. <summary>
  8500. Returns a constraint that tests whether the actual value falls
  8501. within a specified range.
  8502. </summary>
  8503. </member>
  8504. <member name="P:NUnit.Framework.Is.Not">
  8505. <summary>
  8506. Returns a ConstraintExpression that negates any
  8507. following constraint.
  8508. </summary>
  8509. </member>
  8510. <member name="P:NUnit.Framework.Is.All">
  8511. <summary>
  8512. Returns a ConstraintExpression, which will apply
  8513. the following constraint to all members of a collection,
  8514. succeeding if all of them succeed.
  8515. </summary>
  8516. </member>
  8517. <member name="P:NUnit.Framework.Is.Null">
  8518. <summary>
  8519. Returns a constraint that tests for null
  8520. </summary>
  8521. </member>
  8522. <member name="P:NUnit.Framework.Is.True">
  8523. <summary>
  8524. Returns a constraint that tests for True
  8525. </summary>
  8526. </member>
  8527. <member name="P:NUnit.Framework.Is.False">
  8528. <summary>
  8529. Returns a constraint that tests for False
  8530. </summary>
  8531. </member>
  8532. <member name="P:NUnit.Framework.Is.NaN">
  8533. <summary>
  8534. Returns a constraint that tests for NaN
  8535. </summary>
  8536. </member>
  8537. <member name="P:NUnit.Framework.Is.Empty">
  8538. <summary>
  8539. Returns a constraint that tests for empty
  8540. </summary>
  8541. </member>
  8542. <member name="P:NUnit.Framework.Is.Unique">
  8543. <summary>
  8544. Returns a constraint that tests whether a collection
  8545. contains all unique items.
  8546. </summary>
  8547. </member>
  8548. <member name="P:NUnit.Framework.Is.BinarySerializable">
  8549. <summary>
  8550. Returns a constraint that tests whether an object graph is serializable in binary format.
  8551. </summary>
  8552. </member>
  8553. <member name="P:NUnit.Framework.Is.XmlSerializable">
  8554. <summary>
  8555. Returns a constraint that tests whether an object graph is serializable in xml format.
  8556. </summary>
  8557. </member>
  8558. <member name="P:NUnit.Framework.Is.Ordered">
  8559. <summary>
  8560. Returns a constraint that tests whether a collection is ordered
  8561. </summary>
  8562. </member>
  8563. <member name="T:NUnit.Framework.IExpectException">
  8564. <summary>
  8565. Interface implemented by a user fixture in order to
  8566. validate any expected exceptions. It is only called
  8567. for test methods marked with the ExpectedException
  8568. attribute.
  8569. </summary>
  8570. </member>
  8571. <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
  8572. <summary>
  8573. Method to handle an expected exception
  8574. </summary>
  8575. <param name="ex">The exception to be handled</param>
  8576. </member>
  8577. <member name="T:NUnit.Framework.IgnoreAttribute">
  8578. <summary>
  8579. Attribute used to mark a test that is to be ignored.
  8580. Ignored tests result in a warning message when the
  8581. tests are run.
  8582. </summary>
  8583. </member>
  8584. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
  8585. <summary>
  8586. Constructs the attribute without giving a reason
  8587. for ignoring the test.
  8588. </summary>
  8589. </member>
  8590. <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
  8591. <summary>
  8592. Constructs the attribute giving a reason for ignoring the test
  8593. </summary>
  8594. <param name="reason">The reason for ignoring the test</param>
  8595. </member>
  8596. <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
  8597. <summary>
  8598. The reason for ignoring a test
  8599. </summary>
  8600. </member>
  8601. <member name="T:NUnit.Framework.IgnoreException">
  8602. <summary>
  8603. Thrown when an assertion failed.
  8604. </summary>
  8605. </member>
  8606. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
  8607. <param name="message"></param>
  8608. </member>
  8609. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
  8610. <param name="message">The error message that explains
  8611. the reason for the exception</param>
  8612. <param name="inner">The exception that caused the
  8613. current exception</param>
  8614. </member>
  8615. <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  8616. <summary>
  8617. Serialization Constructor
  8618. </summary>
  8619. </member>
  8620. <member name="T:NUnit.Framework.IncludeExcludeAttribute">
  8621. <summary>
  8622. Abstract base for Attributes that are used to include tests
  8623. in the test run based on environmental settings.
  8624. </summary>
  8625. </member>
  8626. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
  8627. <summary>
  8628. Constructor with no included items specified, for use
  8629. with named property syntax.
  8630. </summary>
  8631. </member>
  8632. <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
  8633. <summary>
  8634. Constructor taking one or more included items
  8635. </summary>
  8636. <param name="include">Comma-delimited list of included items</param>
  8637. </member>
  8638. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
  8639. <summary>
  8640. Name of the item that is needed in order for
  8641. a test to run. Multiple itemss may be given,
  8642. separated by a comma.
  8643. </summary>
  8644. </member>
  8645. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
  8646. <summary>
  8647. Name of the item to be excluded. Multiple items
  8648. may be given, separated by a comma.
  8649. </summary>
  8650. </member>
  8651. <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
  8652. <summary>
  8653. The reason for including or excluding the test
  8654. </summary>
  8655. </member>
  8656. <member name="T:NUnit.Framework.PlatformAttribute">
  8657. <summary>
  8658. PlatformAttribute is used to mark a test fixture or an
  8659. individual method as applying to a particular platform only.
  8660. </summary>
  8661. </member>
  8662. <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
  8663. <summary>
  8664. Constructor with no platforms specified, for use
  8665. with named property syntax.
  8666. </summary>
  8667. </member>
  8668. <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
  8669. <summary>
  8670. Constructor taking one or more platforms
  8671. </summary>
  8672. <param name="platforms">Comma-deliminted list of platforms</param>
  8673. </member>
  8674. <member name="T:NUnit.Framework.CultureAttribute">
  8675. <summary>
  8676. CultureAttribute is used to mark a test fixture or an
  8677. individual method as applying to a particular Culture only.
  8678. </summary>
  8679. </member>
  8680. <member name="M:NUnit.Framework.CultureAttribute.#ctor">
  8681. <summary>
  8682. Constructor with no cultures specified, for use
  8683. with named property syntax.
  8684. </summary>
  8685. </member>
  8686. <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
  8687. <summary>
  8688. Constructor taking one or more cultures
  8689. </summary>
  8690. <param name="cultures">Comma-deliminted list of cultures</param>
  8691. </member>
  8692. <member name="T:NUnit.Framework.RangeAttribute">
  8693. <summary>
  8694. RangeAttribute is used to supply a range of values to an
  8695. individual parameter of a parameterized test.
  8696. </summary>
  8697. </member>
  8698. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
  8699. <summary>
  8700. Construct a range of ints using default step of 1
  8701. </summary>
  8702. <param name="from"></param>
  8703. <param name="to"></param>
  8704. </member>
  8705. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
  8706. <summary>
  8707. Construct a range of ints specifying the step size
  8708. </summary>
  8709. <param name="from"></param>
  8710. <param name="to"></param>
  8711. <param name="step"></param>
  8712. </member>
  8713. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
  8714. <summary>
  8715. Construct a range of longs
  8716. </summary>
  8717. <param name="from"></param>
  8718. <param name="to"></param>
  8719. <param name="step"></param>
  8720. </member>
  8721. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
  8722. <summary>
  8723. Construct a range of doubles
  8724. </summary>
  8725. <param name="from"></param>
  8726. <param name="to"></param>
  8727. <param name="step"></param>
  8728. </member>
  8729. <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
  8730. <summary>
  8731. Construct a range of floats
  8732. </summary>
  8733. <param name="from"></param>
  8734. <param name="to"></param>
  8735. <param name="step"></param>
  8736. </member>
  8737. <member name="T:NUnit.Framework.SetCultureAttribute">
  8738. <summary>
  8739. Summary description for SetCultureAttribute.
  8740. </summary>
  8741. </member>
  8742. <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
  8743. <summary>
  8744. Construct given the name of a culture
  8745. </summary>
  8746. <param name="culture"></param>
  8747. </member>
  8748. <member name="T:NUnit.Framework.ValueSourceAttribute">
  8749. <summary>
  8750. ValueSourceAttribute indicates the source to be used to
  8751. provide data for one parameter of a test method.
  8752. </summary>
  8753. </member>
  8754. <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
  8755. <summary>
  8756. Construct with the name of the factory - for use with languages
  8757. that don't support params arrays.
  8758. </summary>
  8759. <param name="sourceName">The name of the data source to be used</param>
  8760. </member>
  8761. <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
  8762. <summary>
  8763. Construct with a Type and name - for use with languages
  8764. that don't support params arrays.
  8765. </summary>
  8766. <param name="sourceType">The Type that will provide data</param>
  8767. <param name="sourceName">The name of the method, property or field that will provide data</param>
  8768. </member>
  8769. <member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
  8770. <summary>
  8771. The name of a the method, property or fiend to be used as a source
  8772. </summary>
  8773. </member>
  8774. <member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
  8775. <summary>
  8776. A Type to be used as a source
  8777. </summary>
  8778. </member>
  8779. <member name="T:NUnit.Framework.TextMessageWriter">
  8780. <summary>
  8781. TextMessageWriter writes constraint descriptions and messages
  8782. in displayable form as a text stream. It tailors the display
  8783. of individual message components to form the standard message
  8784. format of NUnit assertion failure messages.
  8785. </summary>
  8786. </member>
  8787. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
  8788. <summary>
  8789. Prefix used for the expected value line of a message
  8790. </summary>
  8791. </member>
  8792. <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
  8793. <summary>
  8794. Prefix used for the actual value line of a message
  8795. </summary>
  8796. </member>
  8797. <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
  8798. <summary>
  8799. Length of a message prefix
  8800. </summary>
  8801. </member>
  8802. <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
  8803. <summary>
  8804. Construct a TextMessageWriter
  8805. </summary>
  8806. </member>
  8807. <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
  8808. <summary>
  8809. Construct a TextMessageWriter, specifying a user message
  8810. and optional formatting arguments.
  8811. </summary>
  8812. <param name="userMessage"></param>
  8813. <param name="args"></param>
  8814. </member>
  8815. <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
  8816. <summary>
  8817. Method to write single line message with optional args, usually
  8818. written to precede the general failure message, at a givel
  8819. indentation level.
  8820. </summary>
  8821. <param name="level">The indentation level of the message</param>
  8822. <param name="message">The message to be written</param>
  8823. <param name="args">Any arguments used in formatting the message</param>
  8824. </member>
  8825. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
  8826. <summary>
  8827. Display Expected and Actual lines for a constraint. This
  8828. is called by MessageWriter's default implementation of
  8829. WriteMessageTo and provides the generic two-line display.
  8830. </summary>
  8831. <param name="constraint">The constraint that failed</param>
  8832. </member>
  8833. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
  8834. <summary>
  8835. Display Expected and Actual lines for given values. This
  8836. method may be called by constraints that need more control over
  8837. the display of actual and expected values than is provided
  8838. by the default implementation.
  8839. </summary>
  8840. <param name="expected">The expected value</param>
  8841. <param name="actual">The actual value causing the failure</param>
  8842. </member>
  8843. <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
  8844. <summary>
  8845. Display Expected and Actual lines for given values, including
  8846. a tolerance value on the expected line.
  8847. </summary>
  8848. <param name="expected">The expected value</param>
  8849. <param name="actual">The actual value causing the failure</param>
  8850. <param name="tolerance">The tolerance within which the test was made</param>
  8851. </member>
  8852. <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
  8853. <summary>
  8854. Display the expected and actual string values on separate lines.
  8855. If the mismatch parameter is >=0, an additional line is displayed
  8856. line containing a caret that points to the mismatch point.
  8857. </summary>
  8858. <param name="expected">The expected string value</param>
  8859. <param name="actual">The actual string value</param>
  8860. <param name="mismatch">The point at which the strings don't match or -1</param>
  8861. <param name="ignoreCase">If true, case is ignored in string comparisons</param>
  8862. <param name="clipping">If true, clip the strings to fit the max line length</param>
  8863. </member>
  8864. <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
  8865. <summary>
  8866. Writes the text for a connector.
  8867. </summary>
  8868. <param name="connector">The connector.</param>
  8869. </member>
  8870. <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
  8871. <summary>
  8872. Writes the text for a predicate.
  8873. </summary>
  8874. <param name="predicate">The predicate.</param>
  8875. </member>
  8876. <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
  8877. <summary>
  8878. Write the text for a modifier.
  8879. </summary>
  8880. <param name="modifier">The modifier.</param>
  8881. </member>
  8882. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
  8883. <summary>
  8884. Writes the text for an expected value.
  8885. </summary>
  8886. <param name="expected">The expected value.</param>
  8887. </member>
  8888. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
  8889. <summary>
  8890. Writes the text for an actual value.
  8891. </summary>
  8892. <param name="actual">The actual value.</param>
  8893. </member>
  8894. <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
  8895. <summary>
  8896. Writes the text for a generalized value.
  8897. </summary>
  8898. <param name="val">The value.</param>
  8899. </member>
  8900. <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
  8901. <summary>
  8902. Writes the text for a collection value,
  8903. starting at a particular point, to a max length
  8904. </summary>
  8905. <param name="collection">The collection containing elements to write.</param>
  8906. <param name="start">The starting point of the elements to write</param>
  8907. <param name="max">The maximum number of elements to write</param>
  8908. </member>
  8909. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
  8910. <summary>
  8911. Write the generic 'Expected' line for a constraint
  8912. </summary>
  8913. <param name="constraint">The constraint that failed</param>
  8914. </member>
  8915. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
  8916. <summary>
  8917. Write the generic 'Expected' line for a given value
  8918. </summary>
  8919. <param name="expected">The expected value</param>
  8920. </member>
  8921. <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)">
  8922. <summary>
  8923. Write the generic 'Expected' line for a given value
  8924. and tolerance.
  8925. </summary>
  8926. <param name="expected">The expected value</param>
  8927. <param name="tolerance">The tolerance within which the test was made</param>
  8928. </member>
  8929. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
  8930. <summary>
  8931. Write the generic 'Actual' line for a constraint
  8932. </summary>
  8933. <param name="constraint">The constraint for which the actual value is to be written</param>
  8934. </member>
  8935. <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
  8936. <summary>
  8937. Write the generic 'Actual' line for a given value
  8938. </summary>
  8939. <param name="actual">The actual value causing a failure</param>
  8940. </member>
  8941. <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
  8942. <summary>
  8943. Gets or sets the maximum line length for this writer
  8944. </summary>
  8945. </member>
  8946. <member name="T:NUnit.Framework.StringAssert">
  8947. <summary>
  8948. Basic Asserts on strings.
  8949. </summary>
  8950. </member>
  8951. <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
  8952. <summary>
  8953. The Equals method throws an AssertionException. This is done
  8954. to make sure there is no mistake by calling this function.
  8955. </summary>
  8956. <param name="a"></param>
  8957. <param name="b"></param>
  8958. </member>
  8959. <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
  8960. <summary>
  8961. override the default ReferenceEquals to throw an AssertionException. This
  8962. implementation makes sure there is no mistake in calling this function
  8963. as part of Assert.
  8964. </summary>
  8965. <param name="a"></param>
  8966. <param name="b"></param>
  8967. </member>
  8968. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
  8969. <summary>
  8970. Asserts that a string is found within another string.
  8971. </summary>
  8972. <param name="expected">The expected string</param>
  8973. <param name="actual">The string to be examined</param>
  8974. <param name="message">The message to display in case of failure</param>
  8975. <param name="args">Arguments used in formatting the message</param>
  8976. </member>
  8977. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
  8978. <summary>
  8979. Asserts that a string is found within another string.
  8980. </summary>
  8981. <param name="expected">The expected string</param>
  8982. <param name="actual">The string to be examined</param>
  8983. <param name="message">The message to display in case of failure</param>
  8984. </member>
  8985. <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
  8986. <summary>
  8987. Asserts that a string is found within another string.
  8988. </summary>
  8989. <param name="expected">The expected string</param>
  8990. <param name="actual">The string to be examined</param>
  8991. </member>
  8992. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
  8993. <summary>
  8994. Asserts that a string is not found within another string.
  8995. </summary>
  8996. <param name="expected">The expected string</param>
  8997. <param name="actual">The string to be examined</param>
  8998. <param name="message">The message to display in case of failure</param>
  8999. <param name="args">Arguments used in formatting the message</param>
  9000. </member>
  9001. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)">
  9002. <summary>
  9003. Asserts that a string is found within another string.
  9004. </summary>
  9005. <param name="expected">The expected string</param>
  9006. <param name="actual">The string to be examined</param>
  9007. <param name="message">The message to display in case of failure</param>
  9008. </member>
  9009. <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)">
  9010. <summary>
  9011. Asserts that a string is found within another string.
  9012. </summary>
  9013. <param name="expected">The expected string</param>
  9014. <param name="actual">The string to be examined</param>
  9015. </member>
  9016. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
  9017. <summary>
  9018. Asserts that a string starts with another string.
  9019. </summary>
  9020. <param name="expected">The expected string</param>
  9021. <param name="actual">The string to be examined</param>
  9022. <param name="message">The message to display in case of failure</param>
  9023. <param name="args">Arguments used in formatting the message</param>
  9024. </member>
  9025. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
  9026. <summary>
  9027. Asserts that a string starts with another string.
  9028. </summary>
  9029. <param name="expected">The expected string</param>
  9030. <param name="actual">The string to be examined</param>
  9031. <param name="message">The message to display in case of failure</param>
  9032. </member>
  9033. <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
  9034. <summary>
  9035. Asserts that a string starts with another string.
  9036. </summary>
  9037. <param name="expected">The expected string</param>
  9038. <param name="actual">The string to be examined</param>
  9039. </member>
  9040. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])">
  9041. <summary>
  9042. Asserts that a string does not start with another string.
  9043. </summary>
  9044. <param name="expected">The expected string</param>
  9045. <param name="actual">The string to be examined</param>
  9046. <param name="message">The message to display in case of failure</param>
  9047. <param name="args">Arguments used in formatting the message</param>
  9048. </member>
  9049. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)">
  9050. <summary>
  9051. Asserts that a string does not start with another string.
  9052. </summary>
  9053. <param name="expected">The expected string</param>
  9054. <param name="actual">The string to be examined</param>
  9055. <param name="message">The message to display in case of failure</param>
  9056. </member>
  9057. <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)">
  9058. <summary>
  9059. Asserts that a string does not start with another string.
  9060. </summary>
  9061. <param name="expected">The expected string</param>
  9062. <param name="actual">The string to be examined</param>
  9063. </member>
  9064. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
  9065. <summary>
  9066. Asserts that a string ends with another string.
  9067. </summary>
  9068. <param name="expected">The expected string</param>
  9069. <param name="actual">The string to be examined</param>
  9070. <param name="message">The message to display in case of failure</param>
  9071. <param name="args">Arguments used in formatting the message</param>
  9072. </member>
  9073. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
  9074. <summary>
  9075. Asserts that a string ends with another string.
  9076. </summary>
  9077. <param name="expected">The expected string</param>
  9078. <param name="actual">The string to be examined</param>
  9079. <param name="message">The message to display in case of failure</param>
  9080. </member>
  9081. <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
  9082. <summary>
  9083. Asserts that a string ends with another string.
  9084. </summary>
  9085. <param name="expected">The expected string</param>
  9086. <param name="actual">The string to be examined</param>
  9087. </member>
  9088. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])">
  9089. <summary>
  9090. Asserts that a string does not end with another string.
  9091. </summary>
  9092. <param name="expected">The expected string</param>
  9093. <param name="actual">The string to be examined</param>
  9094. <param name="message">The message to display in case of failure</param>
  9095. <param name="args">Arguments used in formatting the message</param>
  9096. </member>
  9097. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)">
  9098. <summary>
  9099. Asserts that a string does not end with another string.
  9100. </summary>
  9101. <param name="expected">The expected string</param>
  9102. <param name="actual">The string to be examined</param>
  9103. <param name="message">The message to display in case of failure</param>
  9104. </member>
  9105. <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)">
  9106. <summary>
  9107. Asserts that a string does not end with another string.
  9108. </summary>
  9109. <param name="expected">The expected string</param>
  9110. <param name="actual">The string to be examined</param>
  9111. </member>
  9112. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  9113. <summary>
  9114. Asserts that two strings are equal, without regard to case.
  9115. </summary>
  9116. <param name="expected">The expected string</param>
  9117. <param name="actual">The actual string</param>
  9118. <param name="message">The message to display in case of failure</param>
  9119. <param name="args">Arguments used in formatting the message</param>
  9120. </member>
  9121. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
  9122. <summary>
  9123. Asserts that two strings are equal, without regard to case.
  9124. </summary>
  9125. <param name="expected">The expected string</param>
  9126. <param name="actual">The actual string</param>
  9127. <param name="message">The message to display in case of failure</param>
  9128. </member>
  9129. <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
  9130. <summary>
  9131. Asserts that two strings are equal, without regard to case.
  9132. </summary>
  9133. <param name="expected">The expected string</param>
  9134. <param name="actual">The actual string</param>
  9135. </member>
  9136. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
  9137. <summary>
  9138. Asserts that two strings are not equal, without regard to case.
  9139. </summary>
  9140. <param name="expected">The expected string</param>
  9141. <param name="actual">The actual string</param>
  9142. <param name="message">The message to display in case of failure</param>
  9143. <param name="args">Arguments used in formatting the message</param>
  9144. </member>
  9145. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)">
  9146. <summary>
  9147. Asserts that two strings are Notequal, without regard to case.
  9148. </summary>
  9149. <param name="expected">The expected string</param>
  9150. <param name="actual">The actual string</param>
  9151. <param name="message">The message to display in case of failure</param>
  9152. </member>
  9153. <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)">
  9154. <summary>
  9155. Asserts that two strings are not equal, without regard to case.
  9156. </summary>
  9157. <param name="expected">The expected string</param>
  9158. <param name="actual">The actual string</param>
  9159. </member>
  9160. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
  9161. <summary>
  9162. Asserts that a string matches an expected regular expression pattern.
  9163. </summary>
  9164. <param name="pattern">The regex pattern to be matched</param>
  9165. <param name="actual">The actual string</param>
  9166. <param name="message">The message to display in case of failure</param>
  9167. <param name="args">Arguments used in formatting the message</param>
  9168. </member>
  9169. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
  9170. <summary>
  9171. Asserts that a string matches an expected regular expression pattern.
  9172. </summary>
  9173. <param name="pattern">The regex pattern to be matched</param>
  9174. <param name="actual">The actual string</param>
  9175. <param name="message">The message to display in case of failure</param>
  9176. </member>
  9177. <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
  9178. <summary>
  9179. Asserts that a string matches an expected regular expression pattern.
  9180. </summary>
  9181. <param name="pattern">The regex pattern to be matched</param>
  9182. <param name="actual">The actual string</param>
  9183. </member>
  9184. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])">
  9185. <summary>
  9186. Asserts that a string does not match an expected regular expression pattern.
  9187. </summary>
  9188. <param name="pattern">The regex pattern to be used</param>
  9189. <param name="actual">The actual string</param>
  9190. <param name="message">The message to display in case of failure</param>
  9191. <param name="args">Arguments used in formatting the message</param>
  9192. </member>
  9193. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)">
  9194. <summary>
  9195. Asserts that a string does not match an expected regular expression pattern.
  9196. </summary>
  9197. <param name="pattern">The regex pattern to be used</param>
  9198. <param name="actual">The actual string</param>
  9199. <param name="message">The message to display in case of failure</param>
  9200. </member>
  9201. <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)">
  9202. <summary>
  9203. Asserts that a string does not match an expected regular expression pattern.
  9204. </summary>
  9205. <param name="pattern">The regex pattern to be used</param>
  9206. <param name="actual">The actual string</param>
  9207. </member>
  9208. <member name="T:NUnit.Framework.SetUpAttribute">
  9209. <summary>
  9210. Attribute used to mark a class that contains one-time SetUp
  9211. and/or TearDown methods that apply to all the tests in a
  9212. namespace or an assembly.
  9213. </summary>
  9214. </member>
  9215. <member name="T:NUnit.Framework.SetUpFixtureAttribute">
  9216. <summary>
  9217. SetUpFixtureAttribute is used to identify a SetUpFixture
  9218. </summary>
  9219. </member>
  9220. <member name="T:NUnit.Framework.RepeatAttribute">
  9221. <summary>
  9222. RepeatAttribute may be applied to test case in order
  9223. to run it multiple times.
  9224. </summary>
  9225. </member>
  9226. <member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
  9227. <summary>
  9228. Construct a RepeatAttribute
  9229. </summary>
  9230. <param name="count">The number of times to run the test</param>
  9231. </member>
  9232. <member name="T:NUnit.Framework.SuiteAttribute">
  9233. <summary>
  9234. Attribute used to mark a static (shared in VB) property
  9235. that returns a list of tests.
  9236. </summary>
  9237. </member>
  9238. <member name="T:NUnit.Framework.TearDownAttribute">
  9239. <summary>
  9240. Attribute used to identify a method that is called
  9241. immediately after each test is run. The method is
  9242. guaranteed to be called, even if an exception is thrown.
  9243. </summary>
  9244. </member>
  9245. <member name="T:NUnit.Framework.Iz">
  9246. <summary>
  9247. The Iz class is a synonym for Is intended for use in VB,
  9248. which regards Is as a keyword.
  9249. </summary>
  9250. </member>
  9251. <member name="T:NUnit.Framework.Throws">
  9252. <summary>
  9253. Helper class with properties and methods that supply
  9254. constraints that operate on exceptions.
  9255. </summary>
  9256. </member>
  9257. <member name="M:NUnit.Framework.Throws.TypeOf(System.Type)">
  9258. <summary>
  9259. Creates a constraint specifying the exact type of exception expected
  9260. </summary>
  9261. </member>
  9262. <member name="M:NUnit.Framework.Throws.TypeOf``1">
  9263. <summary>
  9264. Creates a constraint specifying the exact type of exception expected
  9265. </summary>
  9266. </member>
  9267. <member name="M:NUnit.Framework.Throws.InstanceOf(System.Type)">
  9268. <summary>
  9269. Creates a constraint specifying the type of exception expected
  9270. </summary>
  9271. </member>
  9272. <member name="M:NUnit.Framework.Throws.InstanceOf``1">
  9273. <summary>
  9274. Creates a constraint specifying the type of exception expected
  9275. </summary>
  9276. </member>
  9277. <member name="P:NUnit.Framework.Throws.Exception">
  9278. <summary>
  9279. Creates a constraint specifying an expected exception
  9280. </summary>
  9281. </member>
  9282. <member name="P:NUnit.Framework.Throws.InnerException">
  9283. <summary>
  9284. Creates a constraint specifying an exception with a given InnerException
  9285. </summary>
  9286. </member>
  9287. <member name="P:NUnit.Framework.Throws.TargetInvocationException">
  9288. <summary>
  9289. Creates a constraint specifying an expected TargetInvocationException
  9290. </summary>
  9291. </member>
  9292. <member name="P:NUnit.Framework.Throws.ArgumentException">
  9293. <summary>
  9294. Creates a constraint specifying an expected TargetInvocationException
  9295. </summary>
  9296. </member>
  9297. <member name="P:NUnit.Framework.Throws.InvalidOperationException">
  9298. <summary>
  9299. Creates a constraint specifying an expected TargetInvocationException
  9300. </summary>
  9301. </member>
  9302. <member name="P:NUnit.Framework.Throws.Nothing">
  9303. <summary>
  9304. Creates a constraint specifying that no exception is thrown
  9305. </summary>
  9306. </member>
  9307. <member name="T:NUnit.Framework.ListMapper">
  9308. <summary>
  9309. ListMapper is used to transform a collection used as an actual argument
  9310. producing another collection to be used in the assertion.
  9311. </summary>
  9312. </member>
  9313. <member name="M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)">
  9314. <summary>
  9315. Construct a ListMapper based on a collection
  9316. </summary>
  9317. <param name="original">The collection to be transformed</param>
  9318. </member>
  9319. <member name="M:NUnit.Framework.ListMapper.Property(System.String)">
  9320. <summary>
  9321. Produces a collection containing all the values of a property
  9322. </summary>
  9323. <param name="name">The collection of property values</param>
  9324. <returns></returns>
  9325. </member>
  9326. <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
  9327. <summary>
  9328. Attribute used to identify a method that is
  9329. called before any tests in a fixture are run.
  9330. </summary>
  9331. </member>
  9332. <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
  9333. <summary>
  9334. Attribute used to identify a method that is called after
  9335. all the tests in a fixture have run. The method is
  9336. guaranteed to be called, even if an exception is thrown.
  9337. </summary>
  9338. </member>
  9339. <member name="T:NUnit.Framework.Text">
  9340. <summary>
  9341. Helper class with static methods used to supply constraints
  9342. that operate on strings.
  9343. </summary>
  9344. </member>
  9345. <member name="M:NUnit.Framework.Text.Contains(System.String)">
  9346. <summary>
  9347. Returns a constraint that succeeds if the actual
  9348. value contains the substring supplied as an argument.
  9349. </summary>
  9350. </member>
  9351. <member name="M:NUnit.Framework.Text.DoesNotContain(System.String)">
  9352. <summary>
  9353. Returns a constraint that fails if the actual
  9354. value contains the substring supplied as an argument.
  9355. </summary>
  9356. </member>
  9357. <member name="M:NUnit.Framework.Text.StartsWith(System.String)">
  9358. <summary>
  9359. Returns a constraint that succeeds if the actual
  9360. value starts with the substring supplied as an argument.
  9361. </summary>
  9362. </member>
  9363. <member name="M:NUnit.Framework.Text.DoesNotStartWith(System.String)">
  9364. <summary>
  9365. Returns a constraint that fails if the actual
  9366. value starts with the substring supplied as an argument.
  9367. </summary>
  9368. </member>
  9369. <member name="M:NUnit.Framework.Text.EndsWith(System.String)">
  9370. <summary>
  9371. Returns a constraint that succeeds if the actual
  9372. value ends with the substring supplied as an argument.
  9373. </summary>
  9374. </member>
  9375. <member name="M:NUnit.Framework.Text.DoesNotEndWith(System.String)">
  9376. <summary>
  9377. Returns a constraint that fails if the actual
  9378. value ends with the substring supplied as an argument.
  9379. </summary>
  9380. </member>
  9381. <member name="M:NUnit.Framework.Text.Matches(System.String)">
  9382. <summary>
  9383. Returns a constraint that succeeds if the actual
  9384. value matches the Regex pattern supplied as an argument.
  9385. </summary>
  9386. </member>
  9387. <member name="M:NUnit.Framework.Text.DoesNotMatch(System.String)">
  9388. <summary>
  9389. Returns a constraint that fails if the actual
  9390. value matches the pattern supplied as an argument.
  9391. </summary>
  9392. </member>
  9393. <member name="P:NUnit.Framework.Text.All">
  9394. <summary>
  9395. Returns a ConstraintExpression, which will apply
  9396. the following constraint to all members of a collection,
  9397. succeeding if all of them succeed.
  9398. </summary>
  9399. </member>
  9400. <member name="T:NUnit.Framework.MaxTimeAttribute">
  9401. <summary>
  9402. Summary description for MaxTimeAttribute.
  9403. </summary>
  9404. </member>
  9405. <member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
  9406. <summary>
  9407. Construct a MaxTimeAttribute, given a time in milliseconds.
  9408. </summary>
  9409. <param name="milliseconds">The maximum elapsed time in milliseconds</param>
  9410. </member>
  9411. <member name="T:NUnit.Framework.SetUICultureAttribute">
  9412. <summary>
  9413. Summary description for SetUICultureAttribute.
  9414. </summary>
  9415. </member>
  9416. <member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
  9417. <summary>
  9418. Construct given the name of a culture
  9419. </summary>
  9420. <param name="culture"></param>
  9421. </member>
  9422. <member name="T:NUnit.Framework.DirectoryAssert">
  9423. <summary>
  9424. Summary description for DirectoryAssert
  9425. </summary>
  9426. </member>
  9427. <member name="M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)">
  9428. <summary>
  9429. The Equals method throws an AssertionException. This is done
  9430. to make sure there is no mistake by calling this function.
  9431. </summary>
  9432. <param name="a"></param>
  9433. <param name="b"></param>
  9434. </member>
  9435. <member name="M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)">
  9436. <summary>
  9437. override the default ReferenceEquals to throw an AssertionException. This
  9438. implementation makes sure there is no mistake in calling this function
  9439. as part of Assert.
  9440. </summary>
  9441. <param name="a"></param>
  9442. <param name="b"></param>
  9443. </member>
  9444. <member name="M:NUnit.Framework.DirectoryAssert.#ctor">
  9445. <summary>
  9446. We don't actually want any instances of this object, but some people
  9447. like to inherit from it to add other static methods. Hence, the
  9448. protected constructor disallows any instances of this object.
  9449. </summary>
  9450. </member>
  9451. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  9452. <summary>
  9453. Verifies that two directories are equal. Two directories are considered
  9454. equal if both are null, or if both have the same value byte for byte.
  9455. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9456. </summary>
  9457. <param name="expected">A directory containing the value that is expected</param>
  9458. <param name="actual">A directory containing the actual value</param>
  9459. <param name="message">The message to display if directories are not equal</param>
  9460. <param name="args">Arguments to be used in formatting the message</param>
  9461. </member>
  9462. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  9463. <summary>
  9464. Verifies that two directories are equal. Two directories are considered
  9465. equal if both are null, or if both have the same value byte for byte.
  9466. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9467. </summary>
  9468. <param name="expected">A directory containing the value that is expected</param>
  9469. <param name="actual">A directory containing the actual value</param>
  9470. <param name="message">The message to display if directories are not equal</param>
  9471. </member>
  9472. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  9473. <summary>
  9474. Verifies that two directories are equal. Two directories are considered
  9475. equal if both are null, or if both have the same value byte for byte.
  9476. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9477. </summary>
  9478. <param name="expected">A directory containing the value that is expected</param>
  9479. <param name="actual">A directory containing the actual value</param>
  9480. </member>
  9481. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
  9482. <summary>
  9483. Verifies that two directories are equal. Two directories are considered
  9484. equal if both are null, or if both have the same value byte for byte.
  9485. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9486. </summary>
  9487. <param name="expected">A directory path string containing the value that is expected</param>
  9488. <param name="actual">A directory path string containing the actual value</param>
  9489. <param name="message">The message to display if directories are not equal</param>
  9490. <param name="args">Arguments to be used in formatting the message</param>
  9491. </member>
  9492. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)">
  9493. <summary>
  9494. Verifies that two directories are equal. Two directories are considered
  9495. equal if both are null, or if both have the same value byte for byte.
  9496. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9497. </summary>
  9498. <param name="expected">A directory path string containing the value that is expected</param>
  9499. <param name="actual">A directory path string containing the actual value</param>
  9500. <param name="message">The message to display if directories are not equal</param>
  9501. </member>
  9502. <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)">
  9503. <summary>
  9504. Verifies that two directories are equal. Two directories are considered
  9505. equal if both are null, or if both have the same value byte for byte.
  9506. If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9507. </summary>
  9508. <param name="expected">A directory path string containing the value that is expected</param>
  9509. <param name="actual">A directory path string containing the actual value</param>
  9510. </member>
  9511. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
  9512. <summary>
  9513. Asserts that two directories are not equal. If they are equal
  9514. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9515. </summary>
  9516. <param name="expected">A directory containing the value that is expected</param>
  9517. <param name="actual">A directory containing the actual value</param>
  9518. <param name="message">The message to display if directories are not equal</param>
  9519. <param name="args">Arguments to be used in formatting the message</param>
  9520. </member>
  9521. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
  9522. <summary>
  9523. Asserts that two directories are not equal. If they are equal
  9524. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9525. </summary>
  9526. <param name="expected">A directory containing the value that is expected</param>
  9527. <param name="actual">A directory containing the actual value</param>
  9528. <param name="message">The message to display if directories are not equal</param>
  9529. </member>
  9530. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
  9531. <summary>
  9532. Asserts that two directories are not equal. If they are equal
  9533. an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
  9534. </summary>
  9535. <param name="expected">A directory containing the value that is expected</param>
  9536. <param name="actual">A directory containing the actual value</param>
  9537. </member>
  9538. <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.