nunit.engine.api.xml 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>nunit.engine.api</name>
  5. </assembly>
  6. <members>
  7. <member name="T:NUnit.Engine.NUnitEngineUnloadException">
  8. <summary>
  9. NUnitEngineUnloadException is thrown when a test run has completed successfully
  10. but one or more errors were encountered when attempting to unload
  11. and shut down the test run cleanly.
  12. </summary>
  13. </member>
  14. <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String)">
  15. <summary>
  16. Construct with a message
  17. </summary>
  18. </member>
  19. <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.String,System.Exception)">
  20. <summary>
  21. Construct with a message and inner exception
  22. </summary>
  23. </member>
  24. <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Collections.Generic.ICollection{System.Exception})">
  25. <summary>
  26. Construct with a message and a collection of exceptions.
  27. </summary>
  28. </member>
  29. <member name="M:NUnit.Engine.NUnitEngineUnloadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  30. <summary>
  31. Serialization constructor.
  32. </summary>
  33. </member>
  34. <member name="P:NUnit.Engine.NUnitEngineUnloadException.AggregatedExceptions">
  35. <summary>
  36. Gets the collection of exceptions .
  37. </summary>
  38. </member>
  39. <member name="T:NUnit.Engine.Extensibility.TypeExtensionPointAttribute">
  40. <summary>
  41. TypeExtensionPointAttribute is used to bind an extension point
  42. to a class or interface.
  43. </summary>
  44. </member>
  45. <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor(System.String)">
  46. <summary>
  47. Construct a TypeExtensionPointAttribute, specifying the path.
  48. </summary>
  49. <param name="path">A unique string identifying the extension point.</param>
  50. </member>
  51. <member name="M:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.#ctor">
  52. <summary>
  53. Construct an TypeExtensionPointAttribute, without specifying the path.
  54. The extension point will use a path constructed based on the interface
  55. or class to which the attribute is applied.
  56. </summary>
  57. </member>
  58. <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Path">
  59. <summary>
  60. The unique string identifying this ExtensionPoint. This identifier
  61. is typically formatted as a path using '/' and the set of extension
  62. points is sometimes viewed as forming a tree.
  63. </summary>
  64. </member>
  65. <member name="P:NUnit.Engine.Extensibility.TypeExtensionPointAttribute.Description">
  66. <summary>
  67. An optional description of the purpose of the ExtensionPoint
  68. </summary>
  69. </member>
  70. <member name="T:NUnit.Engine.Extensibility.ExtensionPropertyAttribute">
  71. <summary>
  72. The ExtensionPropertyAttribute is used to specify named properties for an extension.
  73. </summary>
  74. </member>
  75. <member name="M:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.#ctor(System.String,System.String)">
  76. <summary>
  77. Construct an ExtensionPropertyAttribute
  78. </summary>
  79. <param name="name">The name of the property</param>
  80. <param name="value">The property value</param>
  81. </member>
  82. <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Name">
  83. <summary>
  84. The name of the property.
  85. </summary>
  86. </member>
  87. <member name="P:NUnit.Engine.Extensibility.ExtensionPropertyAttribute.Value">
  88. <summary>
  89. The property value
  90. </summary>
  91. </member>
  92. <member name="T:NUnit.Engine.Extensibility.ExtensionAttribute">
  93. <summary>
  94. The ExtensionAttribute is used to identify a class that is intended
  95. to serve as an extension.
  96. </summary>
  97. </member>
  98. <member name="M:NUnit.Engine.Extensibility.ExtensionAttribute.#ctor">
  99. <summary>
  100. Initializes a new instance of the <see cref="T:NUnit.Engine.Extensibility.ExtensionAttribute"/> class.
  101. </summary>
  102. </member>
  103. <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Path">
  104. <summary>
  105. A unique string identifying the ExtensionPoint for which this Extension is
  106. intended. This is an optional field provided NUnit is able to deduce the
  107. ExtensionPoint from the Type of the extension class.
  108. </summary>
  109. </member>
  110. <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Description">
  111. <summary>
  112. An optional description of what the extension does.
  113. </summary>
  114. </member>
  115. <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.Enabled">
  116. <summary>
  117. Flag indicating whether the extension is enabled.
  118. </summary>
  119. <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
  120. </member>
  121. <member name="P:NUnit.Engine.Extensibility.ExtensionAttribute.EngineVersion">
  122. <summary>
  123. The minimum Engine version for which this extension is designed
  124. </summary>
  125. </member>
  126. <member name="T:NUnit.Engine.Extensibility.ExtensionPointAttribute">
  127. <summary>
  128. ExtensionPointAttribute is used at the assembly level to identify and
  129. document any ExtensionPoints supported by the assembly.
  130. </summary>
  131. </member>
  132. <member name="M:NUnit.Engine.Extensibility.ExtensionPointAttribute.#ctor(System.String,System.Type)">
  133. <summary>
  134. Construct an ExtensionPointAttribute
  135. </summary>
  136. <param name="path">A unique string identifying the extension point.</param>
  137. <param name="type">The required Type of any extension that is installed at this extension point.</param>
  138. </member>
  139. <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Path">
  140. <summary>
  141. The unique string identifying this ExtensionPoint. This identifier
  142. is typically formatted as a path using '/' and the set of extension
  143. points is sometimes viewed as forming a tree.
  144. </summary>
  145. </member>
  146. <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Type">
  147. <summary>
  148. The required Type (usually an interface) of any extension that is
  149. installed at this ExtensionPoint.
  150. </summary>
  151. </member>
  152. <member name="P:NUnit.Engine.Extensibility.ExtensionPointAttribute.Description">
  153. <summary>
  154. An optional description of the purpose of the ExtensionPoint
  155. </summary>
  156. </member>
  157. <member name="T:NUnit.Engine.Extensibility.IDriverFactory">
  158. <summary>
  159. Interface implemented by a Type that knows how to create a driver for a test assembly.
  160. </summary>
  161. </member>
  162. <member name="M:NUnit.Engine.Extensibility.IDriverFactory.IsSupportedTestFramework(System.Reflection.AssemblyName)">
  163. <summary>
  164. Gets a flag indicating whether a given AssemblyName
  165. represents a test framework supported by this factory.
  166. </summary>
  167. <param name="reference">An AssemblyName referring to the possible test framework.</param>
  168. </member>
  169. <member name="M:NUnit.Engine.Extensibility.IDriverFactory.GetDriver(System.AppDomain,System.Reflection.AssemblyName)">
  170. <summary>
  171. Gets a driver for a given test assembly and a framework
  172. which the assembly is already known to reference.
  173. </summary>
  174. <param name="domain">The domain in which the assembly will be loaded</param>
  175. <param name="reference">An AssemblyName referring to the test framework.</param>
  176. <returns></returns>
  177. </member>
  178. <member name="T:NUnit.Engine.Extensibility.IProject">
  179. <summary>
  180. Interface for the various project types that the engine can load.
  181. </summary>
  182. </member>
  183. <member name="P:NUnit.Engine.Extensibility.IProject.ProjectPath">
  184. <summary>
  185. Gets the path to the file storing this project, if any.
  186. If the project has not been saved, this is null.
  187. </summary>
  188. </member>
  189. <member name="P:NUnit.Engine.Extensibility.IProject.ActiveConfigName">
  190. <summary>
  191. Gets the active configuration, as defined
  192. by the particular project.
  193. </summary>
  194. </member>
  195. <member name="P:NUnit.Engine.Extensibility.IProject.ConfigNames">
  196. <summary>
  197. Gets a list of the configs for this project
  198. </summary>
  199. </member>
  200. <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage">
  201. <summary>
  202. Gets a test package for the primary or active
  203. configuration within the project. The package
  204. includes all the assemblies and any settings
  205. specified in the project format.
  206. </summary>
  207. <returns>A TestPackage</returns>
  208. </member>
  209. <member name="M:NUnit.Engine.Extensibility.IProject.GetTestPackage(System.String)">
  210. <summary>
  211. Gets a TestPackage for a specific configuration
  212. within the project. The package includes all the
  213. assemblies and any settings specified in the
  214. project format.
  215. </summary>
  216. <param name="configName">The name of the config to use</param>
  217. <returns>A TestPackage for the named configuration.</returns>
  218. </member>
  219. <member name="T:NUnit.Engine.Extensibility.IProjectLoader">
  220. <summary>
  221. The IProjectLoader interface is implemented by any class
  222. that knows how to load projects in a specific format.
  223. </summary>
  224. </member>
  225. <member name="M:NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom(System.String)">
  226. <summary>
  227. Returns true if the file indicated is one that this
  228. loader knows how to load.
  229. </summary>
  230. <param name="path">The path of the project file</param>
  231. <returns>True if the loader knows how to load this file, otherwise false</returns>
  232. </member>
  233. <member name="M:NUnit.Engine.Extensibility.IProjectLoader.LoadFrom(System.String)">
  234. <summary>
  235. Loads a project of a known format.
  236. </summary>
  237. <param name="path">The path of the project file</param>
  238. <returns>An IProject interface to the loaded project or null if the project cannot be loaded</returns>
  239. </member>
  240. <member name="T:NUnit.Engine.Extensibility.IResultWriter">
  241. <summary>
  242. Common interface for objects that process and write out test results
  243. </summary>
  244. </member>
  245. <member name="M:NUnit.Engine.Extensibility.IResultWriter.CheckWritability(System.String)">
  246. <summary>
  247. Checks if the output path is writable. If the output is not
  248. writable, this method should throw an exception.
  249. </summary>
  250. <param name="outputPath"></param>
  251. </member>
  252. <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.String)">
  253. <summary>
  254. Writes result to the specified output path.
  255. </summary>
  256. <param name="resultNode">XmlNode for the result</param>
  257. <param name="outputPath">Path to which it should be written</param>
  258. </member>
  259. <member name="M:NUnit.Engine.Extensibility.IResultWriter.WriteResultFile(System.Xml.XmlNode,System.IO.TextWriter)">
  260. <summary>
  261. Writes result to a TextWriter.
  262. </summary>
  263. <param name="resultNode">XmlNode for the result</param>
  264. <param name="writer">TextWriter to which it should be written</param>
  265. </member>
  266. <member name="T:NUnit.Engine.Extensibility.IFrameworkDriver">
  267. <summary>
  268. The IFrameworkDriver interface is implemented by a class that
  269. is able to use an external framework to explore or run tests
  270. under the engine.
  271. </summary>
  272. </member>
  273. <member name="P:NUnit.Engine.Extensibility.IFrameworkDriver.ID">
  274. <summary>
  275. Gets and sets the unique identifier for this driver,
  276. used to ensure that test ids are unique across drivers.
  277. </summary>
  278. </member>
  279. <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Load(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
  280. <summary>
  281. Loads the tests in an assembly.
  282. </summary>
  283. <returns>An Xml string representing the loaded test</returns>
  284. </member>
  285. <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.CountTestCases(System.String)">
  286. <summary>
  287. Count the test cases that would be executed.
  288. </summary>
  289. <param name="filter">An XML string representing the TestFilter to use in counting the tests</param>
  290. <returns>The number of test cases counted</returns>
  291. </member>
  292. <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Run(NUnit.Engine.ITestEventListener,System.String)">
  293. <summary>
  294. Executes the tests in an assembly.
  295. </summary>
  296. <param name="listener">An ITestEventHandler that receives progress notices</param>
  297. <param name="filter">A XML string representing the filter that controls which tests are executed</param>
  298. <returns>An Xml string representing the result</returns>
  299. </member>
  300. <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.Explore(System.String)">
  301. <summary>
  302. Returns information about the tests in an assembly.
  303. </summary>
  304. <param name="filter">An XML string representing the filter that controls which tests are included</param>
  305. <returns>An Xml string representing the tests</returns>
  306. </member>
  307. <member name="M:NUnit.Engine.Extensibility.IFrameworkDriver.StopRun(System.Boolean)">
  308. <summary>
  309. Cancel the ongoing test run. If no test is running, the call is ignored.
  310. </summary>
  311. <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
  312. </member>
  313. <member name="T:NUnit.Engine.Extensibility.IExtensionPoint">
  314. <summary>
  315. An ExtensionPoint represents a single point in the TestEngine
  316. that may be extended by user addins and extensions.
  317. </summary>
  318. </member>
  319. <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Path">
  320. <summary>
  321. Gets the unique path identifying this extension point.
  322. </summary>
  323. </member>
  324. <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Description">
  325. <summary>
  326. Gets the description of this extension point. May be null.
  327. </summary>
  328. </member>
  329. <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.TypeName">
  330. <summary>
  331. Gets the FullName of the Type required for any extension to be installed at this extension point.
  332. </summary>
  333. </member>
  334. <member name="P:NUnit.Engine.Extensibility.IExtensionPoint.Extensions">
  335. <summary>
  336. Gets an enumeration of IExtensionNodes for extensions installed on this extension point.
  337. </summary>
  338. </member>
  339. <member name="T:NUnit.Engine.Extensibility.IExtensionNode">
  340. <summary>
  341. The IExtensionNode interface is implemented by a class that represents a
  342. single extension being installed on a particular extension point.
  343. </summary>
  344. </member>
  345. <member name="P:NUnit.Engine.Extensibility.IExtensionNode.TypeName">
  346. <summary>
  347. Gets the full name of the Type of the extension object.
  348. </summary>
  349. </member>
  350. <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Enabled">
  351. <summary>
  352. Gets a value indicating whether this <see cref="T:NUnit.Engine.Extensibility.IExtensionNode"/> is enabled.
  353. </summary>
  354. <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
  355. </member>
  356. <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Path">
  357. <summary>
  358. Gets the unique string identifying the ExtensionPoint for which
  359. this Extension is intended. This identifier may be supplied by the attribute
  360. marking the extension or deduced by NUnit from the Type of the extension class.
  361. </summary>
  362. </member>
  363. <member name="P:NUnit.Engine.Extensibility.IExtensionNode.Description">
  364. <summary>
  365. Gets an optional description of what the extension does.
  366. </summary>
  367. </member>
  368. <member name="P:NUnit.Engine.Extensibility.IExtensionNode.PropertyNames">
  369. <summary>
  370. Gets a collection of the names of all this extension's properties
  371. </summary>
  372. </member>
  373. <member name="M:NUnit.Engine.Extensibility.IExtensionNode.GetValues(System.String)">
  374. <summary>
  375. Gets a collection of the values of a particular named property
  376. If none are present, returns an empty enumerator.
  377. </summary>
  378. <param name="name">The property name</param>
  379. <returns>A collection of values</returns>
  380. </member>
  381. <member name="T:NUnit.Engine.ILogger">
  382. <summary>
  383. Interface for logging within the engine
  384. </summary>
  385. </member>
  386. <member name="M:NUnit.Engine.ILogger.Error(System.String)">
  387. <summary>
  388. Logs the specified message at the error level.
  389. </summary>
  390. <param name="message">The message.</param>
  391. </member>
  392. <member name="M:NUnit.Engine.ILogger.Error(System.String,System.Object[])">
  393. <summary>
  394. Logs the specified message at the error level.
  395. </summary>
  396. <param name="message">The message.</param>
  397. <param name="args">The arguments.</param>
  398. </member>
  399. <member name="M:NUnit.Engine.ILogger.Warning(System.String)">
  400. <summary>
  401. Logs the specified message at the warning level.
  402. </summary>
  403. <param name="message">The message.</param>
  404. </member>
  405. <member name="M:NUnit.Engine.ILogger.Warning(System.String,System.Object[])">
  406. <summary>
  407. Logs the specified message at the warning level.
  408. </summary>
  409. <param name="message">The message.</param>
  410. <param name="args">The arguments.</param>
  411. </member>
  412. <member name="M:NUnit.Engine.ILogger.Info(System.String)">
  413. <summary>
  414. Logs the specified message at the info level.
  415. </summary>
  416. <param name="message">The message.</param>
  417. </member>
  418. <member name="M:NUnit.Engine.ILogger.Info(System.String,System.Object[])">
  419. <summary>
  420. Logs the specified message at the info level.
  421. </summary>
  422. <param name="message">The message.</param>
  423. <param name="args">The arguments.</param>
  424. </member>
  425. <member name="M:NUnit.Engine.ILogger.Debug(System.String)">
  426. <summary>
  427. Logs the specified message at the debug level.
  428. </summary>
  429. <param name="message">The message.</param>
  430. </member>
  431. <member name="M:NUnit.Engine.ILogger.Debug(System.String,System.Object[])">
  432. <summary>
  433. Logs the specified message at the debug level.
  434. </summary>
  435. <param name="message">The message.</param>
  436. <param name="args">The arguments.</param>
  437. </member>
  438. <member name="T:NUnit.Engine.InternalTraceLevel">
  439. <summary>
  440. InternalTraceLevel is an enumeration controlling the
  441. level of detailed presented in the internal log.
  442. </summary>
  443. </member>
  444. <member name="F:NUnit.Engine.InternalTraceLevel.Default">
  445. <summary>
  446. Use the default settings as specified by the user.
  447. </summary>
  448. </member>
  449. <member name="F:NUnit.Engine.InternalTraceLevel.Off">
  450. <summary>
  451. Do not display any trace messages
  452. </summary>
  453. </member>
  454. <member name="F:NUnit.Engine.InternalTraceLevel.Error">
  455. <summary>
  456. Display Error messages only
  457. </summary>
  458. </member>
  459. <member name="F:NUnit.Engine.InternalTraceLevel.Warning">
  460. <summary>
  461. Display Warning level and higher messages
  462. </summary>
  463. </member>
  464. <member name="F:NUnit.Engine.InternalTraceLevel.Info">
  465. <summary>
  466. Display informational and higher messages
  467. </summary>
  468. </member>
  469. <member name="F:NUnit.Engine.InternalTraceLevel.Debug">
  470. <summary>
  471. Display debug messages and higher - i.e. all messages
  472. </summary>
  473. </member>
  474. <member name="F:NUnit.Engine.InternalTraceLevel.Verbose">
  475. <summary>
  476. Display debug messages and higher - i.e. all messages
  477. </summary>
  478. </member>
  479. <member name="T:NUnit.Engine.IRuntimeFramework">
  480. <summary>
  481. Interface implemented by objects representing a runtime framework.
  482. </summary>
  483. </member>
  484. <member name="P:NUnit.Engine.IRuntimeFramework.Id">
  485. <summary>
  486. Gets the inique Id for this runtime, such as "net-4.5"
  487. </summary>
  488. </member>
  489. <member name="P:NUnit.Engine.IRuntimeFramework.DisplayName">
  490. <summary>
  491. Gets the display name of the framework, such as ".NET 4.5"
  492. </summary>
  493. </member>
  494. <member name="P:NUnit.Engine.IRuntimeFramework.FrameworkVersion">
  495. <summary>
  496. Gets the framework version: usually contains two components, Major
  497. and Minor, which match the corresponding CLR components, but not always.
  498. </summary>
  499. </member>
  500. <member name="P:NUnit.Engine.IRuntimeFramework.ClrVersion">
  501. <summary>
  502. Gets the Version of the CLR for this framework
  503. </summary>
  504. </member>
  505. <member name="P:NUnit.Engine.IRuntimeFramework.Profile">
  506. <summary>
  507. Gets a string representing the particular profile installed,
  508. or null if there is no profile. Currently. the only defined
  509. values are Full and Client.
  510. </summary>
  511. </member>
  512. <member name="T:NUnit.Engine.IAvailableRuntimes">
  513. <summary>
  514. Interface that returns a list of available runtime frameworks.
  515. </summary>
  516. </member>
  517. <member name="P:NUnit.Engine.IAvailableRuntimes.AvailableRuntimes">
  518. <summary>
  519. Gets a list of available runtime frameworks.
  520. </summary>
  521. </member>
  522. <member name="T:NUnit.Engine.IResultService">
  523. <summary>
  524. IResultWriterService provides result writers for a specified
  525. well-known format.
  526. </summary>
  527. </member>
  528. <member name="P:NUnit.Engine.IResultService.Formats">
  529. <summary>
  530. Gets an array of the available formats
  531. </summary>
  532. </member>
  533. <member name="M:NUnit.Engine.IResultService.GetResultWriter(System.String,System.Object[])">
  534. <summary>
  535. Gets a ResultWriter for a given format and set of arguments.
  536. </summary>
  537. <param name="format">The name of the format to be used</param>
  538. <param name="args">A set of arguments to be used in constructing the writer or null if non arguments are needed</param>
  539. <returns>An IResultWriter</returns>
  540. </member>
  541. <member name="T:NUnit.Engine.IRuntimeFrameworkService">
  542. <summary>
  543. Implemented by a type that provides information about the
  544. current and other available runtimes.
  545. </summary>
  546. </member>
  547. <member name="M:NUnit.Engine.IRuntimeFrameworkService.IsAvailable(System.String)">
  548. <summary>
  549. Returns true if the runtime framework represented by
  550. the string passed as an argument is available.
  551. </summary>
  552. <param name="framework">A string representing a framework, like 'net-4.0'</param>
  553. <returns>True if the framework is available, false if unavailable or nonexistent</returns>
  554. </member>
  555. <member name="M:NUnit.Engine.IRuntimeFrameworkService.SelectRuntimeFramework(NUnit.Engine.TestPackage)">
  556. <summary>
  557. Selects a target runtime framework for a TestPackage based on
  558. the settings in the package and the assemblies themselves.
  559. The package RuntimeFramework setting may be updated as a
  560. result and the selected runtime is returned.
  561. </summary>
  562. <param name="package">A TestPackage</param>
  563. <returns>The selected RuntimeFramework</returns>
  564. </member>
  565. <member name="T:NUnit.Engine.ServiceStatus">
  566. <summary>
  567. Enumeration representing the status of a service
  568. </summary>
  569. </member>
  570. <member name="F:NUnit.Engine.ServiceStatus.Stopped">
  571. <summary>Service was never started or has been stopped</summary>
  572. </member>
  573. <member name="F:NUnit.Engine.ServiceStatus.Started">
  574. <summary>Started successfully</summary>
  575. </member>
  576. <member name="F:NUnit.Engine.ServiceStatus.Error">
  577. <summary>Service failed to start and is unavailable</summary>
  578. </member>
  579. <member name="T:NUnit.Engine.IService">
  580. <summary>
  581. The IService interface is implemented by all Services. Although it
  582. is extensible, it does not reside in the Extensibility namespace
  583. because it is so widely used by the engine.
  584. </summary>
  585. </member>
  586. <member name="P:NUnit.Engine.IService.ServiceContext">
  587. <summary>
  588. The ServiceContext
  589. </summary>
  590. </member>
  591. <member name="P:NUnit.Engine.IService.Status">
  592. <summary>
  593. Gets the ServiceStatus of this service
  594. </summary>
  595. </member>
  596. <member name="M:NUnit.Engine.IService.StartService">
  597. <summary>
  598. Initialize the Service
  599. </summary>
  600. </member>
  601. <member name="M:NUnit.Engine.IService.StopService">
  602. <summary>
  603. Do any cleanup needed before terminating the service
  604. </summary>
  605. </member>
  606. <member name="T:NUnit.Engine.ITestFilterBuilder">
  607. <summary>
  608. Interface to a TestFilterBuilder, which is used to create TestFilters
  609. </summary>
  610. </member>
  611. <member name="M:NUnit.Engine.ITestFilterBuilder.AddTest(System.String)">
  612. <summary>
  613. Add a test to be selected
  614. </summary>
  615. <param name="fullName">The full name of the test, as created by NUnit</param>
  616. </member>
  617. <member name="M:NUnit.Engine.ITestFilterBuilder.SelectWhere(System.String)">
  618. <summary>
  619. Specify what is to be included by the filter using a where clause.
  620. </summary>
  621. <param name="whereClause">A where clause that will be parsed by NUnit to create the filter.</param>
  622. </member>
  623. <member name="M:NUnit.Engine.ITestFilterBuilder.GetFilter">
  624. <summary>
  625. Get a TestFilter constructed according to the criteria specified by the other calls.
  626. </summary>
  627. <returns>A TestFilter.</returns>
  628. </member>
  629. <member name="T:NUnit.Engine.ITestFilterService">
  630. <summary>
  631. The TestFilterService provides builders that can create TestFilters
  632. </summary>
  633. </member>
  634. <member name="M:NUnit.Engine.ITestFilterService.GetTestFilterBuilder">
  635. <summary>
  636. Get an uninitialized TestFilterBuilder
  637. </summary>
  638. </member>
  639. <member name="T:NUnit.Engine.NUnitEngineNotFoundException">
  640. <summary>
  641. The exception that is thrown if a valid test engine is not found
  642. </summary>
  643. </member>
  644. <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor">
  645. <summary>
  646. Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
  647. </summary>
  648. </member>
  649. <member name="M:NUnit.Engine.NUnitEngineNotFoundException.#ctor(System.Version)">
  650. <summary>
  651. Initializes a new instance of the <see cref="T:NUnit.Engine.NUnitEngineNotFoundException"/> class.
  652. </summary>
  653. <param name="minVersion">The minimum version.</param>
  654. </member>
  655. <member name="T:NUnit.Engine.ILogging">
  656. <summary>
  657. Interface to abstract getting loggers
  658. </summary>
  659. </member>
  660. <member name="M:NUnit.Engine.ILogging.GetLogger(System.String)">
  661. <summary>
  662. Gets the logger.
  663. </summary>
  664. <param name="name">The name of the logger to get.</param>
  665. <returns></returns>
  666. </member>
  667. <member name="T:NUnit.Engine.IServiceLocator">
  668. <summary>
  669. IServiceLocator allows clients to locate any NUnit services
  670. for which the interface is referenced. In normal use, this
  671. linits it to those services using interfaces defined in the
  672. nunit.engine.api assembly.
  673. </summary>
  674. </member>
  675. <member name="M:NUnit.Engine.IServiceLocator.GetService``1">
  676. <summary>
  677. Return a specified type of service
  678. </summary>
  679. </member>
  680. <member name="M:NUnit.Engine.IServiceLocator.GetService(System.Type)">
  681. <summary>
  682. Return a specified type of service
  683. </summary>
  684. </member>
  685. <member name="T:NUnit.Engine.SettingsEventHandler">
  686. <summary>
  687. Event handler for settings changes
  688. </summary>
  689. <param name="sender">The sender.</param>
  690. <param name="args">The <see cref="T:NUnit.Engine.SettingsEventArgs"/> instance containing the event data.</param>
  691. </member>
  692. <member name="T:NUnit.Engine.SettingsEventArgs">
  693. <summary>
  694. Event argument for settings changes
  695. </summary>
  696. </member>
  697. <member name="M:NUnit.Engine.SettingsEventArgs.#ctor(System.String)">
  698. <summary>
  699. Initializes a new instance of the <see cref="T:NUnit.Engine.SettingsEventArgs"/> class.
  700. </summary>
  701. <param name="settingName">Name of the setting that has changed.</param>
  702. </member>
  703. <member name="P:NUnit.Engine.SettingsEventArgs.SettingName">
  704. <summary>
  705. Gets the name of the setting that has changed
  706. </summary>
  707. </member>
  708. <member name="T:NUnit.Engine.ISettings">
  709. <summary>
  710. The ISettings interface is used to access all user
  711. settings and options.
  712. </summary>
  713. </member>
  714. <member name="E:NUnit.Engine.ISettings.Changed">
  715. <summary>
  716. Occurs when the settings are changed.
  717. </summary>
  718. </member>
  719. <member name="M:NUnit.Engine.ISettings.GetSetting(System.String)">
  720. <summary>
  721. Load a setting from the storage.
  722. </summary>
  723. <param name="settingName">Name of the setting to load</param>
  724. <returns>Value of the setting or null</returns>
  725. </member>
  726. <member name="M:NUnit.Engine.ISettings.GetSetting``1(System.String,``0)">
  727. <summary>
  728. Load a setting from the storage or return a default value
  729. </summary>
  730. <param name="settingName">Name of the setting to load</param>
  731. <param name="defaultValue">Value to return if the setting is missing</param>
  732. <returns>Value of the setting or the default value</returns>
  733. </member>
  734. <member name="M:NUnit.Engine.ISettings.RemoveSetting(System.String)">
  735. <summary>
  736. Remove a setting from the storage
  737. </summary>
  738. <param name="settingName">Name of the setting to remove</param>
  739. </member>
  740. <member name="M:NUnit.Engine.ISettings.RemoveGroup(System.String)">
  741. <summary>
  742. Remove an entire group of settings from the storage
  743. </summary>
  744. <param name="groupName">Name of the group to remove</param>
  745. </member>
  746. <member name="M:NUnit.Engine.ISettings.SaveSetting(System.String,System.Object)">
  747. <summary>
  748. Save a setting in the storage
  749. </summary>
  750. <param name="settingName">Name of the setting to save</param>
  751. <param name="settingValue">Value to be saved</param>
  752. </member>
  753. <member name="T:NUnit.Engine.ITestEngine">
  754. <summary>
  755. ITestEngine represents an instance of the test engine.
  756. Clients wanting to discover, explore or run tests start
  757. require an instance of the engine, which is generally
  758. acquired from the TestEngineActivator class.
  759. </summary>
  760. </member>
  761. <member name="P:NUnit.Engine.ITestEngine.Services">
  762. <summary>
  763. Gets the IServiceLocator interface, which gives access to
  764. certain services provided by the engine.
  765. </summary>
  766. </member>
  767. <member name="P:NUnit.Engine.ITestEngine.WorkDirectory">
  768. <summary>
  769. Gets and sets the directory path used by the engine for saving files.
  770. Some services may ignore changes to this path made after initialization.
  771. The default value is the current directory.
  772. </summary>
  773. </member>
  774. <member name="P:NUnit.Engine.ITestEngine.InternalTraceLevel">
  775. <summary>
  776. Gets and sets the InternalTraceLevel used by the engine. Changing this
  777. setting after initialization will have no effect. The default value
  778. is the value saved in the NUnit settings.
  779. </summary>
  780. </member>
  781. <member name="M:NUnit.Engine.ITestEngine.Initialize">
  782. <summary>
  783. Initialize the engine. This includes initializing mono addins,
  784. setting the trace level and creating the standard set of services
  785. used in the Engine.
  786. This interface is not normally called by user code. Programs linking
  787. only to the nunit.engine.api assembly are given a
  788. pre-initialized instance of TestEngine. Programs
  789. that link directly to nunit.engine usually do so
  790. in order to perform custom initialization.
  791. </summary>
  792. </member>
  793. <member name="M:NUnit.Engine.ITestEngine.GetRunner(NUnit.Engine.TestPackage)">
  794. <summary>
  795. Returns a test runner instance for use by clients in discovering,
  796. exploring and executing tests.
  797. </summary>
  798. <param name="package">The TestPackage for which the runner is intended.</param>
  799. <returns>An ITestRunner.</returns>
  800. </member>
  801. <member name="T:NUnit.Engine.ITestEventListener">
  802. <summary>
  803. The ITestListener interface is used to receive notices of significant
  804. events while a test is running. It's single method accepts an Xml string,
  805. which may represent any event generated by the test framework, the driver
  806. or any of the runners internal to the engine. Use of Xml means that
  807. any driver and framework may add additional events and the engine will
  808. simply pass them on through this interface.
  809. </summary>
  810. </member>
  811. <member name="M:NUnit.Engine.ITestEventListener.OnTestEvent(System.String)">
  812. <summary>
  813. Handle a progress report or other event.
  814. </summary>
  815. <param name="report">An XML progress report.</param>
  816. </member>
  817. <member name="T:NUnit.Engine.ITestRunner">
  818. <summary>
  819. Interface implemented by all test runners.
  820. </summary>
  821. </member>
  822. <member name="P:NUnit.Engine.ITestRunner.IsTestRunning">
  823. <summary>
  824. Get a flag indicating whether a test is running
  825. </summary>
  826. </member>
  827. <member name="M:NUnit.Engine.ITestRunner.Load">
  828. <summary>
  829. Load a TestPackage for possible execution
  830. </summary>
  831. <returns>An XmlNode representing the loaded package.</returns>
  832. <remarks>
  833. This method is normally optional, since Explore and Run call
  834. it automatically when necessary. The method is kept in order
  835. to make it easier to convert older programs that use it.
  836. </remarks>
  837. </member>
  838. <member name="M:NUnit.Engine.ITestRunner.Unload">
  839. <summary>
  840. Unload any loaded TestPackage. If none is loaded,
  841. the call is ignored.
  842. </summary>
  843. </member>
  844. <member name="M:NUnit.Engine.ITestRunner.Reload">
  845. <summary>
  846. Reload the current TestPackage
  847. </summary>
  848. <returns>An XmlNode representing the loaded package.</returns>
  849. </member>
  850. <member name="M:NUnit.Engine.ITestRunner.CountTestCases(NUnit.Engine.TestFilter)">
  851. <summary>
  852. Count the test cases that would be run under
  853. the specified filter.
  854. </summary>
  855. <param name="filter">A TestFilter</param>
  856. <returns>The count of test cases</returns>
  857. </member>
  858. <member name="M:NUnit.Engine.ITestRunner.Run(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
  859. <summary>
  860. Run the tests in the loaded TestPackage and return a test result. The tests
  861. are run synchronously and the listener interface is notified as it progresses.
  862. </summary>
  863. <param name="listener">The listener that is notified as the run progresses</param>
  864. <param name="filter">A TestFilter used to select tests</param>
  865. <returns>An XmlNode giving the result of the test execution</returns>
  866. </member>
  867. <member name="M:NUnit.Engine.ITestRunner.RunAsync(NUnit.Engine.ITestEventListener,NUnit.Engine.TestFilter)">
  868. <summary>
  869. Start a run of the tests in the loaded TestPackage. The tests are run
  870. asynchronously and the listener interface is notified as it progresses.
  871. </summary>
  872. <param name="listener">The listener that is notified as the run progresses</param>
  873. <param name="filter">A TestFilter used to select tests</param>
  874. <returns></returns>
  875. </member>
  876. <member name="M:NUnit.Engine.ITestRunner.StopRun(System.Boolean)">
  877. <summary>
  878. Cancel the ongoing test run. If no test is running, the call is ignored.
  879. </summary>
  880. <param name="force">If true, cancel any ongoing test threads, otherwise wait for them to complete.</param>
  881. </member>
  882. <member name="M:NUnit.Engine.ITestRunner.Explore(NUnit.Engine.TestFilter)">
  883. <summary>
  884. Explore a loaded TestPackage and return information about the tests found.
  885. </summary>
  886. <param name="filter">The TestFilter to be used in selecting tests to explore.</param>
  887. <returns>An XmlNode representing the tests found.</returns>
  888. </member>
  889. <member name="T:NUnit.Engine.NUnitEngineException">
  890. <summary>
  891. NUnitEngineException is thrown when the engine has been
  892. called with improper values or when a particular facility
  893. is not available.
  894. </summary>
  895. </member>
  896. <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String)">
  897. <summary>
  898. Construct with a message
  899. </summary>
  900. </member>
  901. <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.String,System.Exception)">
  902. <summary>
  903. Construct with a message and inner exception
  904. </summary>
  905. </member>
  906. <member name="M:NUnit.Engine.NUnitEngineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  907. <summary>
  908. Serialization constructor
  909. </summary>
  910. </member>
  911. <member name="T:NUnit.Engine.IRecentFiles">
  912. <summary>
  913. The IRecentFiles interface is used to isolate the app
  914. from various implementations of recent files.
  915. </summary>
  916. </member>
  917. <member name="P:NUnit.Engine.IRecentFiles.MaxFiles">
  918. <summary>
  919. The max number of files saved
  920. </summary>
  921. </member>
  922. <member name="P:NUnit.Engine.IRecentFiles.Entries">
  923. <summary>
  924. Get a list of all the file entries
  925. </summary>
  926. <returns>The most recent file list</returns>
  927. </member>
  928. <member name="M:NUnit.Engine.IRecentFiles.SetMostRecent(System.String)">
  929. <summary>
  930. Set the most recent file name, reordering
  931. the saved names as needed and removing the oldest
  932. if the max number of files would be exceeded.
  933. The current CLR version is used to create the entry.
  934. </summary>
  935. </member>
  936. <member name="M:NUnit.Engine.IRecentFiles.Remove(System.String)">
  937. <summary>
  938. Remove a file from the list
  939. </summary>
  940. <param name="fileName">The name of the file to remove</param>
  941. </member>
  942. <member name="T:NUnit.Engine.TestEngineActivator">
  943. <summary>
  944. TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface.
  945. </summary>
  946. </member>
  947. <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Boolean)">
  948. <summary>
  949. Create an instance of the test engine.
  950. </summary>
  951. <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
  952. <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
  953. <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
  954. </member>
  955. <member name="M:NUnit.Engine.TestEngineActivator.CreateInstance(System.Version,System.Boolean)">
  956. <summary>
  957. Create an instance of the test engine with a minimum version.
  958. </summary>
  959. <param name="minVersion">The minimum version of the engine to return inclusive.</param>
  960. <param name="unused">This parameter is no longer used but has not been removed to ensure API compatibility.</param>
  961. <exception cref="T:NUnit.Engine.NUnitEngineNotFoundException">Thrown when a test engine of the required minimum version is not found</exception>
  962. <returns>An <see cref="T:NUnit.Engine.ITestEngine"/></returns>
  963. </member>
  964. <member name="T:NUnit.Engine.TestFilter">
  965. <summary>
  966. Abstract base for all test filters. A filter is represented
  967. by an XmlNode with &lt;filter&gt; as it's topmost element.
  968. In the console runner, filters serve only to carry this
  969. XML representation, as all filtering is done by the engine.
  970. </summary>
  971. </member>
  972. <member name="M:NUnit.Engine.TestFilter.#ctor(System.String)">
  973. <summary>
  974. Initializes a new instance of the <see cref="T:NUnit.Engine.TestFilter"/> class.
  975. </summary>
  976. <param name="xmlText">The XML text that specifies the filter.</param>
  977. </member>
  978. <member name="F:NUnit.Engine.TestFilter.Empty">
  979. <summary>
  980. The empty filter - one that always passes.
  981. </summary>
  982. </member>
  983. <member name="P:NUnit.Engine.TestFilter.Text">
  984. <summary>
  985. Gets the XML representation of this filter as a string.
  986. </summary>
  987. </member>
  988. <member name="T:NUnit.Engine.TestPackage">
  989. <summary>
  990. TestPackage holds information about a set of test files to
  991. be loaded by a TestRunner. Each TestPackage represents
  992. tests for one or more test files. TestPackages may be named
  993. or anonymous, depending on how they are constructed.
  994. </summary>
  995. </member>
  996. <member name="M:NUnit.Engine.TestPackage.#ctor(System.String)">
  997. <summary>
  998. Construct a named TestPackage, specifying a file path for
  999. the assembly or project to be used.
  1000. </summary>
  1001. <param name="filePath">The file path.</param>
  1002. </member>
  1003. <member name="M:NUnit.Engine.TestPackage.#ctor(System.Collections.Generic.IList{System.String})">
  1004. <summary>
  1005. Construct an anonymous TestPackage that wraps test files.
  1006. </summary>
  1007. <param name="testFiles"></param>
  1008. </member>
  1009. <member name="P:NUnit.Engine.TestPackage.ID">
  1010. <summary>
  1011. Every test package gets a unique ID used to prefix test IDs within that package.
  1012. </summary>
  1013. <remarks>
  1014. The generated ID is only unique for packages created within the same application domain.
  1015. For that reason, NUnit pre-creates all test packages that will be needed.
  1016. </remarks>
  1017. </member>
  1018. <member name="P:NUnit.Engine.TestPackage.Name">
  1019. <summary>
  1020. Gets the name of the package
  1021. </summary>
  1022. </member>
  1023. <member name="P:NUnit.Engine.TestPackage.FullName">
  1024. <summary>
  1025. Gets the path to the file containing tests. It may be
  1026. an assembly or a recognized project type.
  1027. </summary>
  1028. </member>
  1029. <member name="P:NUnit.Engine.TestPackage.SubPackages">
  1030. <summary>
  1031. Gets the list of SubPackages contained in this package
  1032. </summary>
  1033. </member>
  1034. <member name="P:NUnit.Engine.TestPackage.Settings">
  1035. <summary>
  1036. Gets the settings dictionary for this package.
  1037. </summary>
  1038. </member>
  1039. <member name="M:NUnit.Engine.TestPackage.AddSubPackage(NUnit.Engine.TestPackage)">
  1040. <summary>
  1041. Add a subproject to the package.
  1042. </summary>
  1043. <param name="subPackage">The subpackage to be added</param>
  1044. </member>
  1045. <member name="M:NUnit.Engine.TestPackage.AddSetting(System.String,System.Object)">
  1046. <summary>
  1047. Add a setting to a package and all of its subpackages.
  1048. </summary>
  1049. <param name="name">The name of the setting</param>
  1050. <param name="value">The value of the setting</param>
  1051. <remarks>
  1052. Once a package is created, subpackages may have been created
  1053. as well. If you add a setting directly to the Settings dictionary
  1054. of the package, the subpackages are not updated. This method is
  1055. used when the settings are intended to be reflected to all the
  1056. subpackages under the package.
  1057. </remarks>
  1058. </member>
  1059. <member name="M:NUnit.Engine.TestPackage.GetSetting``1(System.String,``0)">
  1060. <summary>
  1061. Return the value of a setting or a default.
  1062. </summary>
  1063. <param name="name">The name of the setting</param>
  1064. <param name="defaultSetting">The default value</param>
  1065. <returns></returns>
  1066. </member>
  1067. <member name="T:NUnit.Engine.ITestRun">
  1068. <summary>
  1069. The ITestRun class represents an ongoing test run.
  1070. </summary>
  1071. </member>
  1072. <member name="P:NUnit.Engine.ITestRun.Result">
  1073. <summary>
  1074. Get the result of the test.
  1075. </summary>
  1076. <returns>An XmlNode representing the test run result</returns>
  1077. </member>
  1078. <member name="M:NUnit.Engine.ITestRun.Wait(System.Int32)">
  1079. <summary>
  1080. Blocks the current thread until the current test run completes
  1081. or the timeout is reached
  1082. </summary>
  1083. <param name="timeout">A <see cref="T:System.Int32"/> that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. </param>
  1084. <returns>True if the run completed</returns>
  1085. </member>
  1086. <member name="T:NUnit.Engine.IExtensionService">
  1087. <summary>
  1088. The IExtensionService interface allows a runner to manage extensions.
  1089. </summary>
  1090. </member>
  1091. <member name="P:NUnit.Engine.IExtensionService.ExtensionPoints">
  1092. <summary>
  1093. Gets an enumeration of all ExtensionPoints in the engine.
  1094. </summary>
  1095. </member>
  1096. <member name="P:NUnit.Engine.IExtensionService.Extensions">
  1097. <summary>
  1098. Gets an enumeration of all installed Extensions.
  1099. </summary>
  1100. </member>
  1101. <member name="M:NUnit.Engine.IExtensionService.GetExtensionPoint(System.String)">
  1102. <summary>
  1103. Get an ExtensionPoint based on it's unique identifying path.
  1104. </summary>
  1105. </member>
  1106. <member name="M:NUnit.Engine.IExtensionService.GetExtensionNodes(System.String)">
  1107. <summary>
  1108. Get an enumeration of ExtensionNodes based on their identifying path.
  1109. </summary>
  1110. </member>
  1111. <member name="M:NUnit.Engine.IExtensionService.EnableExtension(System.String,System.Boolean)">
  1112. <summary>
  1113. Enable or disable an extension
  1114. </summary>
  1115. <param name="typeName"></param>
  1116. <param name="enabled"></param>
  1117. </member>
  1118. <member name="T:NUnit.Engine.TestSelectionParserException">
  1119. <summary>
  1120. TestSelectionParserException is thrown when an error
  1121. is found while parsing the selection expression.
  1122. </summary>
  1123. </member>
  1124. <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String)">
  1125. <summary>
  1126. Construct with a message
  1127. </summary>
  1128. </member>
  1129. <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.String,System.Exception)">
  1130. <summary>
  1131. Construct with a message and inner exception
  1132. </summary>
  1133. <param name="message"></param>
  1134. <param name="innerException"></param>
  1135. </member>
  1136. <member name="M:NUnit.Engine.TestSelectionParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  1137. <summary>
  1138. Serialization constructor
  1139. </summary>
  1140. </member>
  1141. </members>
  1142. </doc>