PageRenderTime 93ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 1ms

/ref/nunit.framework.xml

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