summaryrefslogtreecommitdiff
path: root/tools/nant/bin/NAnt.NUnit1Tasks.xml
blob: 5df983ded33c39a873b499bfd66c8bbf8bd3b31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>NAnt.NUnit1Tasks</name>
    </assembly>
    <members>
        <member name="M:NAnt.NUnit1.Types.IResultFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
            <summary>
            The whole test suite started.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
            <summary>
            The whole test suite ended.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatter.SetOutput(System.IO.TextWriter)">
            <summary>
            Sets the <see cref="T:System.IO.TextWriter"/> the formatter is supposed to write 
            its results to.
            </summary>
        </member>
        <member name="T:NAnt.NUnit1.Types.IResultFormatterCollection">
            <summary>
            Contains a strongly typed collection of <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> objects.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/> class.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.#ctor(NAnt.NUnit1.Types.IResultFormatterCollection)">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/> class
            with the specified <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/> instance.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.#ctor(NAnt.NUnit1.Types.IResultFormatter[])">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/> class
            with the specified array of <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> instances.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.Add(NAnt.NUnit1.Types.IResultFormatter)">
            <summary>
            Adds a <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> to the end of the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> to be added to the end of the collection.</param> 
            <returns>The position into which the new element was inserted.</returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.AddRange(NAnt.NUnit1.Types.IResultFormatter[])">
            <summary>
            Adds the elements of a <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> array to the end of the collection.
            </summary>
            <param name="items">The array of <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> elements to be added to the end of the collection.</param> 
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.AddRange(NAnt.NUnit1.Types.IResultFormatterCollection)">
            <summary>
            Adds the elements of a <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/> to the end of the collection.
            </summary>
            <param name="items">The <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/> to be added to the end of the collection.</param> 
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.Contains(NAnt.NUnit1.Types.IResultFormatter)">
            <summary>
            Determines whether a <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> is in the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> to locate in the collection.</param> 
            <returns>
            <see langword="true"/> if <paramref name="item"/> is found in the 
            collection; otherwise, <see langword="false"/>.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.CopyTo(NAnt.NUnit1.Types.IResultFormatter[],System.Int32)">
            <summary>
            Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.        
            </summary>
            <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param> 
            <param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.IndexOf(NAnt.NUnit1.Types.IResultFormatter)">
            <summary>
            Retrieves the index of a specified <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> object in the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> object for which the index is returned.</param> 
            <returns>
            The index of the specified <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/>. If the <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> is not currently a member of the collection, it returns -1.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.Insert(System.Int32,NAnt.NUnit1.Types.IResultFormatter)">
            <summary>
            Inserts a <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> into the collection at the specified index.
            </summary>
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> to insert.</param>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.GetEnumerator">
            <summary>
            Returns an enumerator that can iterate through the collection.
            </summary>
            <returns>
            A <see cref="T:NAnt.NUnit1.Types.IResultFormatterEnumerator"/> for the entire collection.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.Remove(NAnt.NUnit1.Types.IResultFormatter)">
            <summary>
            Removes a member from the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> to remove from the collection.</param>
        </member>
        <member name="P:NAnt.NUnit1.Types.IResultFormatterCollection.Item(System.Int32)">
            <summary>
            Gets or sets the element at the specified index.
            </summary>
            <param name="index">The zero-based index of the element to get or set.</param>
        </member>
        <member name="T:NAnt.NUnit1.Types.IResultFormatterEnumerator">
            <summary>
            Enumerates the <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> elements of a <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/>.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterEnumerator.#ctor(NAnt.NUnit1.Types.IResultFormatterCollection)">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.IResultFormatterEnumerator"/> class
            with the specified <see cref="T:NAnt.NUnit1.Types.IResultFormatterCollection"/>.
            </summary>
            <param name="arguments">The collection that should be enumerated.</param>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterEnumerator.MoveNext">
            <summary>
            Advances the enumerator to the next element of the collection.
            </summary>
            <returns>
            <see langword="true" /> if the enumerator was successfully advanced 
            to the next element; <see langword="false" /> if the enumerator has 
            passed the end of the collection.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.IResultFormatterEnumerator.Reset">
            <summary>
            Sets the enumerator to its initial position, which is before the 
            first element in the collection.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.IResultFormatterEnumerator.Current">
            <summary>
            Gets the current element in the collection.
            </summary>
            <returns>
            The current element in the collection.
            </returns>
        </member>
        <member name="T:NAnt.NUnit1.Types.LogFormatter">
            <summary>
            Prints information about running tests directly to the build log.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.LogFormatter.SetOutput(System.IO.TextWriter)">
            <summary>Not used, all output goes to Log class.</summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.LogFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
            <summary>Called when the whole test suite has started.</summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.LogFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
            <summary>Called when the whole test suite has ended.</summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.LogFormatter.FormatError(System.String,System.String)">
            <summary>Convert a stack trace line into something that can be clicked on in an IDE output window.</summary>
            <param name="trace">The StackTrace string, see <see cref="P:System.Exception.StackTrace"/>.</param>
            <param name="message">The string that gets appended to the end of file(line): portion.</param>
        </member>
        <member name="T:NAnt.NUnit1.Tasks.NUnitTask">
            <summary>
            Runs tests using the NUnit V1.0 framework.
            </summary>
            <remarks>
              <para>
              See the <see href="http://nunit.sf.net">NUnit home page</see> for more 
              information.
              </para>
              <para>
              The <see cref="P:NAnt.NUnit1.Tasks.NUnitTask.HaltOnFailure"/> or <see cref="P:NAnt.NUnit1.Tasks.NUnitTask.HaltOnError"/> 
              attributes are only used to stop more than one test suite to stop 
              running.  If any test suite fails a build error will be thrown.  
              Set <see cref="P:NAnt.Core.Task.FailOnError"/> to <see langword="false"/> to 
              ignore test errors and continue build.
              </para>
            </remarks>
            <example>
              <para>
              Run tests in the <c>MyProject.Tests.dll</c> assembly.
              </para>
              <para>
              The test results are logged in <c>results.xml</c> and <c>results.txt</c> 
              using the <see cref="F:NAnt.NUnit.Types.FormatterType.Xml"/> and <see cref="F:NAnt.NUnit.Types.FormatterType.Plain"/> 
              formatters, respectively.
              </para>
              <code>
                <![CDATA[
            <nunit basedir="build" verbose="false" haltonerror="true" haltonfailure="true">
                <formatter type="Xml" />
                <formatter type="Plain" />
                <test name="MyProject.Tests.AllTests" assembly="MyProject.Tests.dll" outfile="results"/>
            </nunit>
                ]]>
              </code>
            </example>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTask.HaltOnError">
            <summary>
            Stops running tests when a test causes an error. The default is 
            <see langword="false" />.
            </summary>
            <remarks>
            Implies haltonfailure.
            </remarks>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTask.HaltOnFailure">
            <summary>
            Stops running tests if a test fails (errors are considered failures 
            as well). The default is <see langword="false" />.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTask.Timeout">
            <summary>
            Cancel the individual tests if they do not finish in the specified 
            time (measured in milliseconds). Ignored if fork is disabled.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTask.Tests">
            <summary>
            Tests to run.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTask.FormatterElements">
            <summary>
            Formatters to output results of unit tests.
            </summary>
        </member>
        <member name="T:NAnt.NUnit1.Types.NUnitTest">
            <summary>
            Represents a test element of an <see cref="T:NAnt.NUnit1.Tasks.NUnitTask"/>.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.OutFile">
            <summary>
            Base name of the test result. The full filename is determined by this 
            attribute and the extension of formatter.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.ToDir">
            <summary>
            Directory to write the reports to.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.Class">
            <summary>
            Class name of the test.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.Assembly">
            <summary>
            Assembly to load the test from.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.Fork">
            <summary>
            Run the tests in a separate <see cref="T:System.AppDomain"/>.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.HaltOnError">
            <summary>
            Stop the build process if an error occurs during the test run.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.HaltOnFailure">
            <summary>
            Stop the build process if a test fails (errors are considered failures 
            as well).
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTest.AppConfigFile">
            <summary>
            The application configuration file to use for the NUnit test domain.
            </summary>
        </member>
        <member name="T:NAnt.NUnit1.Types.NUnitTestCollection">
            <summary>
            Contains a strongly typed collection of <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> objects.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/> class.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.#ctor(NAnt.NUnit1.Types.NUnitTestCollection)">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/> class
            with the specified <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/> instance.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.#ctor(NAnt.NUnit1.Types.NUnitTest[])">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/> class
            with the specified array of <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> instances.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.Add(NAnt.NUnit1.Types.NUnitTest)">
            <summary>
            Adds a <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> to the end of the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> to be added to the end of the collection.</param> 
            <returns>The position into which the new element was inserted.</returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.AddRange(NAnt.NUnit1.Types.NUnitTest[])">
            <summary>
            Adds the elements of a <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> array to the end of the collection.
            </summary>
            <param name="items">The array of <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> elements to be added to the end of the collection.</param> 
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.AddRange(NAnt.NUnit1.Types.NUnitTestCollection)">
            <summary>
            Adds the elements of a <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/> to the end of the collection.
            </summary>
            <param name="items">The <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/> to be added to the end of the collection.</param> 
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.Contains(NAnt.NUnit1.Types.NUnitTest)">
            <summary>
            Determines whether a <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> is in the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> to locate in the collection.</param> 
            <returns>
            <see langword="true"/> if <paramref name="item"/> is found in the 
            collection; otherwise, <see langword="false"/>.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.CopyTo(NAnt.NUnit1.Types.NUnitTest[],System.Int32)">
            <summary>
            Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.        
            </summary>
            <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param> 
            <param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.IndexOf(NAnt.NUnit1.Types.NUnitTest)">
            <summary>
            Retrieves the index of a specified <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> object in the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> object for which the index is returned.</param> 
            <returns>
            The index of the specified <see cref="T:NAnt.NUnit1.Types.NUnitTest"/>. If the <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> is not currently a member of the collection, it returns -1.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.Insert(System.Int32,NAnt.NUnit1.Types.NUnitTest)">
            <summary>
            Inserts a <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> into the collection at the specified index.
            </summary>
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> to insert.</param>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.GetEnumerator">
            <summary>
            Returns an enumerator that can iterate through the collection.
            </summary>
            <returns>
            A <see cref="T:NAnt.NUnit1.Types.NUnitTestEnumerator"/> for the entire collection.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestCollection.Remove(NAnt.NUnit1.Types.NUnitTest)">
            <summary>
            Removes a member from the collection.
            </summary>
            <param name="item">The <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> to remove from the collection.</param>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTestCollection.Item(System.Int32)">
            <summary>
            Gets or sets the element at the specified index.
            </summary>
            <param name="index">The zero-based index of the element to get or set.</param>
        </member>
        <member name="T:NAnt.NUnit1.Types.NUnitTestEnumerator">
            <summary>
            Enumerates the <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> elements of a <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/>.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestEnumerator.#ctor(NAnt.NUnit1.Types.NUnitTestCollection)">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.NUnitTestEnumerator"/> class
            with the specified <see cref="T:NAnt.NUnit1.Types.NUnitTestCollection"/>.
            </summary>
            <param name="arguments">The collection that should be enumerated.</param>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestEnumerator.MoveNext">
            <summary>
            Advances the enumerator to the next element of the collection.
            </summary>
            <returns>
            <see langword="true" /> if the enumerator was successfully advanced 
            to the next element; <see langword="false" /> if the enumerator has 
            passed the end of the collection.
            </returns>
        </member>
        <member name="M:NAnt.NUnit1.Types.NUnitTestEnumerator.Reset">
            <summary>
            Sets the enumerator to its initial position, which is before the 
            first element in the collection.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.NUnitTestEnumerator.Current">
            <summary>
            Gets the current element in the collection.
            </summary>
            <returns>
            The current element in the collection.
            </returns>
        </member>
        <member name="T:NAnt.NUnit1.Types.NUnitTestData">
            <summary>
            Carries data specified through the test element.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.NeedsRunning">
            <summary>
            Determines if the unit test needs running.
            </summary>
            <returns>
            <see langword="true" /> if unit test needs running, otherwise,
            <see langword="false" />.
            </returns>
            <remarks>
              <para>
              Determines if the test needs running by looking at the date stamp 
              of the test assembly and the test results log.
              </para>
            </remarks>
        </member>
        <member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.Run(System.String,System.Boolean)">
            <summary>
            Runs a Suite extracted from a TestCase subclass.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.CreateFormatters(NAnt.NUnit1.Types.NUnitTestData,System.String,System.Boolean)">
            <summary>
            Creates the formatters to be used when running this test.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.GetOutput(NAnt.NUnit.Types.FormatterData,NAnt.NUnit1.Types.NUnitTestData)">
            <summary>
            Returns the output file or null if does not use a file.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.GetSuite(System.String)">
            <summary>
            Returns the test suite from a given class.
            </summary>
            <remarks>
            The assemblyQualifiedName parameter needs to be in form:
            "full.qualified.class.name,Assembly"
            </remarks>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTestRunner.Formatters">
            <summary>
            Gets the collection of registered formatters.
            </summary>
            <value>Collection of registered formatters.</value>
        </member>
        <member name="P:NAnt.NUnit1.Tasks.NUnitTestRunner.ResultCode">
            <summary>
            Gets the result of the test.
            </summary>
            <value>The result of the test.</value>
        </member>
        <member name="T:NAnt.NUnit1.Types.PlainTextFormatter">
            <summary>
            Prints information about running tests in plain text.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.PlainTextFormatter.SetOutput(System.IO.TextWriter)">
            <summary>Sets the Writer the formatter is supposed to write its results to.</summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.PlainTextFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
            <summary>Called when the whole test suite has started.</summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.PlainTextFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
            <summary>Called when the whole test suite has ended.</summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.PlainTextFormatter.FormatError(System.String,System.String)">
            <summary>Convert a stack trace line into something that can be clicked on in an IDE output window.</summary>
            <param name="trace">The StackTrace string, see <see cref="P:System.Exception.StackTrace"/>.</param>
            <param name="message">The string that gets appended to the end of file(line): portion.</param>
        </member>
        <member name="T:NAnt.NUnit1.Types.TestResultExtra">
             <summary>
             Decorates NUnits <see cref="T:MBUnit.Framework.TestResult"/> with extra information such as 
             run-time.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.TestResultExtra.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.TestResultExtra"/>
            class.
            </summary>
        </member>
        <member name="P:NAnt.NUnit1.Types.TestResultExtra.RunTime">
            <summary>
            Gets or sets the total run-time of a test.
            </summary>
            <value>The total run-time of a test.</value>
        </member>
        <member name="T:NAnt.NUnit1.Types.XmlResultFormatter">
            <summary>
            Prints detailed information about running tests in XML format.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.XmlResultFormatter.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:NAnt.NUnit1.Types.XmlResultFormatter"/>
            class.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.XmlResultFormatter.SetOutput(System.IO.TextWriter)">
            <summary>
            Sets the <see cref="T:System.IO.TextWriter"/> the formatter is supposed to 
            write its results to.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.XmlResultFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
            <summary>
            Called when the whole test suite has started.
            </summary>
        </member>
        <member name="M:NAnt.NUnit1.Types.XmlResultFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
            <summary>
            Called when the whole test suite has ended.
            </summary>
        </member>
    </members>
</doc>