xunitnet 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/HTML.xslt +117 -0
- data/lib/NUnitXml.xslt +121 -0
- data/lib/xunit.console.clr4.exe +0 -0
- data/lib/xunit.console.clr4.exe.config +21 -0
- data/lib/xunit.console.clr4.x86.exe +0 -0
- data/lib/xunit.console.clr4.x86.exe.config +21 -0
- data/lib/xunit.console.exe +0 -0
- data/lib/xunit.console.exe.config +21 -0
- data/lib/xunit.console.x86.exe +0 -0
- data/lib/xunit.console.x86.exe.config +21 -0
- data/lib/xunit.dll +0 -0
- data/lib/xunit.dll.tdnet +5 -0
- data/lib/xunit.extensions.dll +0 -0
- data/lib/xunit.extensions.xml +787 -0
- data/lib/xunit.gui.clr4.exe +0 -0
- data/lib/xunit.gui.clr4.x86.exe +0 -0
- data/lib/xunit.gui.exe +0 -0
- data/lib/xunit.gui.x86.exe +0 -0
- data/lib/xunit.installer.exe +0 -0
- data/lib/xunit.runner.msbuild.dll +0 -0
- data/lib/xunit.runner.tdnet.dll +0 -0
- data/lib/xunit.runner.utility.dll +0 -0
- data/lib/xunit.runner.utility.xml +1173 -0
- data/lib/xunit.xml +2437 -0
- metadata +91 -0
Binary file
|
Binary file
|
data/lib/xunit.gui.exe
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,1173 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>xunit.runner.utility</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:Xunit.Sdk.Guard">
|
8
|
+
<summary>
|
9
|
+
Guard class, used for guard clauses and argument validation
|
10
|
+
</summary>
|
11
|
+
</member>
|
12
|
+
<member name="M:Xunit.Sdk.Guard.ArgumentNotNull(System.String,System.Object)">
|
13
|
+
<summary/>
|
14
|
+
</member>
|
15
|
+
<member name="M:Xunit.Sdk.Guard.ArgumentNotNullOrEmpty(System.String,System.Collections.IEnumerable)">
|
16
|
+
<summary/>
|
17
|
+
</member>
|
18
|
+
<member name="M:Xunit.Sdk.Guard.ArgumentValid(System.String,System.String,System.Boolean)">
|
19
|
+
<summary/>
|
20
|
+
</member>
|
21
|
+
<member name="T:Xunit.ExecutorWrapper">
|
22
|
+
<summary>
|
23
|
+
Wraps calls to the Executor. Used by runners to perform version-resilient test
|
24
|
+
enumeration and execution.
|
25
|
+
</summary>
|
26
|
+
</member>
|
27
|
+
<member name="T:Xunit.IExecutorWrapper">
|
28
|
+
<summary>
|
29
|
+
Wraps calls to the Executor. Used by runners to perform version-resilient test
|
30
|
+
enumeration and execution.
|
31
|
+
</summary>
|
32
|
+
</member>
|
33
|
+
<member name="M:Xunit.IExecutorWrapper.EnumerateTests">
|
34
|
+
<summary>
|
35
|
+
Enumerates the tests in an assembly.
|
36
|
+
</summary>
|
37
|
+
<returns>The fully-formed assembly node of the XML</returns>
|
38
|
+
</member>
|
39
|
+
<member name="M:Xunit.IExecutorWrapper.GetAssemblyTestCount">
|
40
|
+
<summary>
|
41
|
+
Gets a count of the tests in the assembly.
|
42
|
+
</summary>
|
43
|
+
<returns>Returns the number of tests, if known; returns -1 if not known. May not represent
|
44
|
+
an exact count, but should be a best effort guess by the framework.</returns>
|
45
|
+
</member>
|
46
|
+
<member name="M:Xunit.IExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
|
47
|
+
<summary>
|
48
|
+
Runs all the tests in an assembly.
|
49
|
+
</summary>
|
50
|
+
<param name="callback">The callback which is called as each test/class/assembly is
|
51
|
+
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
52
|
+
Test runs can be cancelled by returning false to the callback. If null, there are
|
53
|
+
no status callbacks (and cancellation isn't possible).</param>
|
54
|
+
<returns>Returns the fully-formed assembly node for the assembly that was just run.</returns>
|
55
|
+
</member>
|
56
|
+
<member name="M:Xunit.IExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
|
57
|
+
<summary>
|
58
|
+
Runs all the tests in the given class.
|
59
|
+
</summary>
|
60
|
+
<param name="type">The type.</param>
|
61
|
+
<param name="callback">The callback which is called as each test/class is
|
62
|
+
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
63
|
+
Test runs can be cancelled by returning false to the callback. If null, there are
|
64
|
+
no status callbacks (and cancellation isn't possible).</param>
|
65
|
+
<returns>Returns the fully-formed class node for the class that was just run.</returns>
|
66
|
+
</member>
|
67
|
+
<member name="M:Xunit.IExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
|
68
|
+
<summary>
|
69
|
+
Runs a single test in a class.
|
70
|
+
</summary>
|
71
|
+
<param name="type">The type to run.</param>
|
72
|
+
<param name="method">The method to run.</param>
|
73
|
+
<param name="callback">The callback which is called as each test/class is
|
74
|
+
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
75
|
+
Test runs can be cancelled by returning false to the callback. If null, there are
|
76
|
+
no status callbacks (and cancellation isn't possible).</param>
|
77
|
+
<returns>Returns the fully-formed class node for the class of the test that was just run.</returns>
|
78
|
+
</member>
|
79
|
+
<member name="M:Xunit.IExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
|
80
|
+
<summary>
|
81
|
+
Runs several tests in a single class.
|
82
|
+
</summary>
|
83
|
+
<param name="type">The type.</param>
|
84
|
+
<param name="methods">The methods to run.</param>
|
85
|
+
<param name="callback">The callback which is called as each test/class is
|
86
|
+
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
87
|
+
Test runs can be cancelled by returning false to the callback. If null, there are
|
88
|
+
no status callbacks (and cancellation isn't possible).</param>
|
89
|
+
<returns>Returns the fully-formed class node for the class of the tests that were just run.</returns>
|
90
|
+
</member>
|
91
|
+
<member name="P:Xunit.IExecutorWrapper.AssemblyFilename">
|
92
|
+
<summary>
|
93
|
+
Gets the full pathname to the assembly under test.
|
94
|
+
</summary>
|
95
|
+
</member>
|
96
|
+
<member name="P:Xunit.IExecutorWrapper.ConfigFilename">
|
97
|
+
<summary>
|
98
|
+
Gets the full pathname to the configuration file.
|
99
|
+
</summary>
|
100
|
+
</member>
|
101
|
+
<member name="P:Xunit.IExecutorWrapper.XunitVersion">
|
102
|
+
<summary>
|
103
|
+
Gets the version of xunit.dll used by the test assembly.
|
104
|
+
</summary>
|
105
|
+
</member>
|
106
|
+
<member name="M:Xunit.ExecutorWrapper.#cctor">
|
107
|
+
<summary>
|
108
|
+
Initializes the <see cref="T:Xunit.ExecutorWrapper"/> class.
|
109
|
+
</summary>
|
110
|
+
</member>
|
111
|
+
<member name="M:Xunit.ExecutorWrapper.#ctor(System.String,System.String,System.Boolean)">
|
112
|
+
<summary>
|
113
|
+
Initializes a new instance of the <see cref="T:Xunit.ExecutorWrapper"/> class.
|
114
|
+
</summary>
|
115
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
116
|
+
<param name="configFilename">The config filename. If null, the default config filename will be used.</param>
|
117
|
+
<param name="shadowCopy">Set to true to enable shadow copying; false, otherwise.</param>
|
118
|
+
</member>
|
119
|
+
<member name="M:Xunit.ExecutorWrapper.Dispose">
|
120
|
+
<summary>
|
121
|
+
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
122
|
+
</summary>
|
123
|
+
</member>
|
124
|
+
<member name="M:Xunit.ExecutorWrapper.EnumerateTests">
|
125
|
+
<inheritdoc/>
|
126
|
+
</member>
|
127
|
+
<member name="M:Xunit.ExecutorWrapper.GetAssemblyTestCount">
|
128
|
+
<inheritdoc/>
|
129
|
+
</member>
|
130
|
+
<member name="M:Xunit.ExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
|
131
|
+
<inheritdoc/>
|
132
|
+
</member>
|
133
|
+
<member name="M:Xunit.ExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
|
134
|
+
<inheritdoc/>
|
135
|
+
</member>
|
136
|
+
<member name="M:Xunit.ExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
|
137
|
+
<inheritdoc/>
|
138
|
+
</member>
|
139
|
+
<member name="M:Xunit.ExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
|
140
|
+
<inheritdoc/>
|
141
|
+
</member>
|
142
|
+
<member name="P:Xunit.ExecutorWrapper.AssemblyFilename">
|
143
|
+
<inheritdoc/>
|
144
|
+
</member>
|
145
|
+
<member name="P:Xunit.ExecutorWrapper.ConfigFilename">
|
146
|
+
<inheritdoc/>
|
147
|
+
</member>
|
148
|
+
<member name="P:Xunit.ExecutorWrapper.XunitVersion">
|
149
|
+
<inheritdoc/>
|
150
|
+
</member>
|
151
|
+
<member name="T:Xunit.ExecutorWrapper.IntCallbackHandler">
|
152
|
+
<summary>
|
153
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
154
|
+
</summary>
|
155
|
+
</member>
|
156
|
+
<member name="M:Xunit.ExecutorWrapper.IntCallbackHandler.InitializeLifetimeService">
|
157
|
+
<summary/>
|
158
|
+
</member>
|
159
|
+
<member name="P:Xunit.ExecutorWrapper.IntCallbackHandler.Result">
|
160
|
+
<summary/>
|
161
|
+
</member>
|
162
|
+
<member name="T:Xunit.ExecutorWrapper.IntCallbackHandlerWithIMessageSink">
|
163
|
+
<summary>
|
164
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
165
|
+
</summary>
|
166
|
+
</member>
|
167
|
+
<member name="M:Xunit.ExecutorWrapper.IntCallbackHandlerWithIMessageSink.System#Runtime#Remoting#Messaging#IMessageSink#AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)">
|
168
|
+
<summary/>
|
169
|
+
</member>
|
170
|
+
<member name="M:Xunit.ExecutorWrapper.IntCallbackHandlerWithIMessageSink.System#Runtime#Remoting#Messaging#IMessageSink#SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)">
|
171
|
+
<summary/>
|
172
|
+
</member>
|
173
|
+
<member name="P:Xunit.ExecutorWrapper.IntCallbackHandlerWithIMessageSink.System#Runtime#Remoting#Messaging#IMessageSink#NextSink">
|
174
|
+
<summary/>
|
175
|
+
</member>
|
176
|
+
<member name="T:Xunit.ExecutorWrapper.IntCallbackHandlerWithICallbackEventHandler">
|
177
|
+
<summary>
|
178
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
179
|
+
</summary>
|
180
|
+
</member>
|
181
|
+
<member name="M:Xunit.ExecutorWrapper.IntCallbackHandlerWithICallbackEventHandler.GetCallbackResult">
|
182
|
+
<summary/>
|
183
|
+
</member>
|
184
|
+
<member name="M:Xunit.ExecutorWrapper.IntCallbackHandlerWithICallbackEventHandler.RaiseCallbackEvent(System.String)">
|
185
|
+
<summary/>
|
186
|
+
</member>
|
187
|
+
<member name="M:Xunit.ExecutorWrapper.IntCallbackHandlerWithICallbackEventHandler.InitializeLifetimeService">
|
188
|
+
<summary/>
|
189
|
+
</member>
|
190
|
+
<member name="T:Xunit.ExecutorWrapper.XmlNodeCallbackHandler">
|
191
|
+
<summary>
|
192
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
193
|
+
</summary>
|
194
|
+
</member>
|
195
|
+
<member name="F:Xunit.ExecutorWrapper.XmlNodeCallbackHandler.callback">
|
196
|
+
<summary/>
|
197
|
+
</member>
|
198
|
+
<member name="F:Xunit.ExecutorWrapper.XmlNodeCallbackHandler.lastNodeName">
|
199
|
+
<summary/>
|
200
|
+
</member>
|
201
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandler.#ctor(System.Predicate{System.Xml.XmlNode},System.String)">
|
202
|
+
<summary/>
|
203
|
+
</member>
|
204
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandler.InitializeLifetimeService">
|
205
|
+
<summary/>
|
206
|
+
</member>
|
207
|
+
<member name="P:Xunit.ExecutorWrapper.XmlNodeCallbackHandler.LastNode">
|
208
|
+
<summary/>
|
209
|
+
</member>
|
210
|
+
<member name="P:Xunit.ExecutorWrapper.XmlNodeCallbackHandler.LastNodeArrived">
|
211
|
+
<summary/>
|
212
|
+
</member>
|
213
|
+
<member name="T:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithIMessageSink">
|
214
|
+
<summary>
|
215
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
216
|
+
</summary>
|
217
|
+
</member>
|
218
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithIMessageSink.#ctor(System.Predicate{System.Xml.XmlNode},System.String)">
|
219
|
+
<summary/>
|
220
|
+
</member>
|
221
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithIMessageSink.System#Runtime#Remoting#Messaging#IMessageSink#AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)">
|
222
|
+
<summary/>
|
223
|
+
</member>
|
224
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithIMessageSink.System#Runtime#Remoting#Messaging#IMessageSink#SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)">
|
225
|
+
<summary/>
|
226
|
+
</member>
|
227
|
+
<member name="P:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithIMessageSink.System#Runtime#Remoting#Messaging#IMessageSink#NextSink">
|
228
|
+
<summary/>
|
229
|
+
</member>
|
230
|
+
<member name="T:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithICallbackEventHandler">
|
231
|
+
<summary>
|
232
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
233
|
+
</summary>
|
234
|
+
</member>
|
235
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithICallbackEventHandler.#ctor(System.Predicate{System.Xml.XmlNode},System.String)">
|
236
|
+
<summary/>
|
237
|
+
</member>
|
238
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithICallbackEventHandler.RaiseCallbackEvent(System.String)">
|
239
|
+
<summary/>
|
240
|
+
</member>
|
241
|
+
<member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackHandlerWithICallbackEventHandler.GetCallbackResult">
|
242
|
+
<summary/>
|
243
|
+
</member>
|
244
|
+
<member name="T:Xunit.ExecutorWrapper.OutgoingMessage">
|
245
|
+
<summary>
|
246
|
+
THIS CLASS IS FOR INTERNAL USE ONLY.
|
247
|
+
</summary>
|
248
|
+
</member>
|
249
|
+
<member name="M:Xunit.ExecutorWrapper.OutgoingMessage.#ctor(System.Object)">
|
250
|
+
<summary/>
|
251
|
+
</member>
|
252
|
+
<member name="M:Xunit.ExecutorWrapper.OutgoingMessage.InitializeLifetimeService">
|
253
|
+
<summary/>
|
254
|
+
</member>
|
255
|
+
<member name="T:Xunit.ITestMethodRunnerCallback">
|
256
|
+
<summary>
|
257
|
+
The callback object which receives real-time status notifications from the
|
258
|
+
test runner.
|
259
|
+
</summary>
|
260
|
+
</member>
|
261
|
+
<member name="M:Xunit.ITestMethodRunnerCallback.AssemblyFinished(Xunit.TestAssembly,System.Int32,System.Int32,System.Int32,System.Double)">
|
262
|
+
<summary>
|
263
|
+
Called when the assembly has finished running.
|
264
|
+
</summary>
|
265
|
+
<param name="testAssembly">The test assembly.</param>
|
266
|
+
<param name="total">The total number of tests run.</param>
|
267
|
+
<param name="failed">The number of failed tests.</param>
|
268
|
+
<param name="skipped">The number of skipped tests.</param>
|
269
|
+
<param name="time">The time taken to run, in seconds.</param>
|
270
|
+
</member>
|
271
|
+
<member name="M:Xunit.ITestMethodRunnerCallback.AssemblyStart(Xunit.TestAssembly)">
|
272
|
+
<summary>
|
273
|
+
Called when the assembly has started running.
|
274
|
+
</summary>
|
275
|
+
<param name="testAssembly">The test assembly.</param>
|
276
|
+
</member>
|
277
|
+
<member name="M:Xunit.ITestMethodRunnerCallback.ClassFailed(Xunit.TestClass,System.String,System.String,System.String)">
|
278
|
+
<summary>
|
279
|
+
Called when a class failure is encountered (i.e., when a fixture from
|
280
|
+
IUseFixture throws an exception during construction or <see cref="M:System.IDisposable.Dispose"/>.
|
281
|
+
</summary>
|
282
|
+
<param name="testClass">The test class.</param>
|
283
|
+
<param name="exceptionType">The full type name of the exception.</param>
|
284
|
+
<param name="message">The exception message.</param>
|
285
|
+
<param name="stackTrace">The exception stack trace.</param>
|
286
|
+
<returns></returns>
|
287
|
+
</member>
|
288
|
+
<member name="M:Xunit.ITestMethodRunnerCallback.ExceptionThrown(Xunit.TestAssembly,System.Exception)">
|
289
|
+
<summary>
|
290
|
+
Called when an exception is thrown (i.e., a catastrophic failure of the testing system).
|
291
|
+
</summary>
|
292
|
+
<param name="testAssembly">The test assembly.</param>
|
293
|
+
<param name="exception">The exception that was thrown.</param>
|
294
|
+
</member>
|
295
|
+
<member name="M:Xunit.ITestMethodRunnerCallback.TestFinished(Xunit.TestMethod)">
|
296
|
+
<summary>
|
297
|
+
Called when a test has finished running, regardless of what the result was.
|
298
|
+
</summary>
|
299
|
+
<param name="testMethod">The test method.</param>
|
300
|
+
<returns>Return true to continue running tests; return false to stop the test run.</returns>
|
301
|
+
</member>
|
302
|
+
<member name="M:Xunit.ITestMethodRunnerCallback.TestStart(Xunit.TestMethod)">
|
303
|
+
<summary>
|
304
|
+
Called when a test has started running.
|
305
|
+
</summary>
|
306
|
+
<param name="testMethod">The test method.</param>
|
307
|
+
<returns>Return true to continue running tests; return false to stop the test run.</returns>
|
308
|
+
</member>
|
309
|
+
<member name="T:Xunit.ITestMethodRunner">
|
310
|
+
<summary>
|
311
|
+
Represents the ability to run one or more test methods.
|
312
|
+
</summary>
|
313
|
+
</member>
|
314
|
+
<member name="M:Xunit.ITestMethodRunner.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
|
315
|
+
<summary>
|
316
|
+
Runs the specified test methods.
|
317
|
+
</summary>
|
318
|
+
<param name="testMethods">The test methods to run.</param>
|
319
|
+
<param name="callback">The run status information callback.</param>
|
320
|
+
</member>
|
321
|
+
<member name="T:Xunit.MultiAssemblyTestEnvironment">
|
322
|
+
<summary>
|
323
|
+
Represents the ability to load and unload test assemblies, as well as enumerate
|
324
|
+
the test assemblies, the test methods, and run tests.
|
325
|
+
</summary>
|
326
|
+
</member>
|
327
|
+
<member name="T:Xunit.ITestMethodEnumerator">
|
328
|
+
<summary>
|
329
|
+
Represents the ability to enumerate and filter test methods.
|
330
|
+
</summary>
|
331
|
+
</member>
|
332
|
+
<member name="M:Xunit.ITestMethodEnumerator.EnumerateTestMethods">
|
333
|
+
<summary>
|
334
|
+
Enumerates all test methods.
|
335
|
+
</summary>
|
336
|
+
</member>
|
337
|
+
<member name="M:Xunit.ITestMethodEnumerator.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
|
338
|
+
<summary>
|
339
|
+
Enumerates test methods which pass the given filter.
|
340
|
+
</summary>
|
341
|
+
<param name="filter">The test method filter.</param>
|
342
|
+
</member>
|
343
|
+
<member name="F:Xunit.MultiAssemblyTestEnvironment.testAssemblies">
|
344
|
+
<summary>
|
345
|
+
The test assemblies loaded into the environment.
|
346
|
+
</summary>
|
347
|
+
</member>
|
348
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTestAssemblies">
|
349
|
+
<summary>
|
350
|
+
Enumerates the test assemblies in the environment.
|
351
|
+
</summary>
|
352
|
+
</member>
|
353
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTestMethods">
|
354
|
+
<inheritdoc/>
|
355
|
+
</member>
|
356
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
|
357
|
+
<inheritdoc/>
|
358
|
+
</member>
|
359
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTraits">
|
360
|
+
<summary>
|
361
|
+
Enumerates the traits across all the loaded assemblies.
|
362
|
+
</summary>
|
363
|
+
</member>
|
364
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.Load(System.String)">
|
365
|
+
<summary>
|
366
|
+
Loads the specified assembly, using the default configuration file.
|
367
|
+
</summary>
|
368
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
369
|
+
<returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
|
370
|
+
loaded test assembly.</returns>
|
371
|
+
</member>
|
372
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.Load(System.String,System.String)">
|
373
|
+
<summary>
|
374
|
+
Loads the specified assembly using the specified configuration file.
|
375
|
+
</summary>
|
376
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
377
|
+
<param name="configFilename">The config filename.</param>
|
378
|
+
<returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
|
379
|
+
loaded test assembly.</returns>
|
380
|
+
</member>
|
381
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.Load(System.String,System.String,System.Boolean)">
|
382
|
+
<summary>
|
383
|
+
Loads the specified assembly using the specified configuration file.
|
384
|
+
</summary>
|
385
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
386
|
+
<param name="configFilename">The config filename.</param>
|
387
|
+
<param name="shadowCopy">Whether the DLLs should be shadow copied.</param>
|
388
|
+
<returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
|
389
|
+
loaded test assembly.</returns>
|
390
|
+
</member>
|
391
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.Load(Xunit.IExecutorWrapper)">
|
392
|
+
<summary>
|
393
|
+
Adds the assembly loaded into the given <see cref="T:Xunit.IExecutorWrapper"/>
|
394
|
+
into the environment.
|
395
|
+
</summary>
|
396
|
+
<param name="executorWrapper">The executor wrapper.</param>
|
397
|
+
<returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
|
398
|
+
loaded test assembly.</returns>
|
399
|
+
</member>
|
400
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
|
401
|
+
<inheritdoc/>
|
402
|
+
</member>
|
403
|
+
<member name="M:Xunit.MultiAssemblyTestEnvironment.Unload(Xunit.TestAssembly)">
|
404
|
+
<summary>
|
405
|
+
Unloads the specified assembly.
|
406
|
+
</summary>
|
407
|
+
<param name="assembly">The assembly to unload.</param>
|
408
|
+
</member>
|
409
|
+
<member name="T:Xunit.TestFailedResult">
|
410
|
+
<summary>
|
411
|
+
Represents a failed test run in the object model.
|
412
|
+
</summary>
|
413
|
+
</member>
|
414
|
+
<member name="T:Xunit.TestResult">
|
415
|
+
<summary>
|
416
|
+
Base class for all test results in the object model.
|
417
|
+
</summary>
|
418
|
+
</member>
|
419
|
+
<member name="M:Xunit.TestResult.#ctor(System.Double,System.String)">
|
420
|
+
<summary>
|
421
|
+
Initializes a new instance of the <see cref="T:Xunit.TestResult"/> class.
|
422
|
+
</summary>
|
423
|
+
<param name="duration">The duration the test took to run. For skipped tests, should be 0.0.</param>
|
424
|
+
<param name="displayName">The display name of the test result.</param>
|
425
|
+
</member>
|
426
|
+
<member name="P:Xunit.TestResult.DisplayName">
|
427
|
+
<summary>
|
428
|
+
Gets the display name of the test result.
|
429
|
+
</summary>
|
430
|
+
</member>
|
431
|
+
<member name="P:Xunit.TestResult.Duration">
|
432
|
+
<summary>
|
433
|
+
Gets the duration the test took to run.
|
434
|
+
</summary>
|
435
|
+
</member>
|
436
|
+
<member name="M:Xunit.TestFailedResult.#ctor(System.Double,System.String,System.String,System.String,System.String,System.String)">
|
437
|
+
<summary>
|
438
|
+
Initializes a new instance of the <see cref="T:Xunit.TestFailedResult"/> class.
|
439
|
+
</summary>
|
440
|
+
<param name="duration">The duration the test took to run.</param>
|
441
|
+
<param name="displayName">The display name of the test result.</param>
|
442
|
+
<param name="output">The output that was captured during the test run.</param>
|
443
|
+
<param name="exceptionType">Type of the exception.</param>
|
444
|
+
<param name="exceptionMessage">The exception message.</param>
|
445
|
+
<param name="exceptionStackTrace">The exception stack trace.</param>
|
446
|
+
</member>
|
447
|
+
<member name="P:Xunit.TestFailedResult.Output">
|
448
|
+
<summary>
|
449
|
+
Gets the output that was captured during the test run.
|
450
|
+
</summary>
|
451
|
+
</member>
|
452
|
+
<member name="P:Xunit.TestFailedResult.ExceptionType">
|
453
|
+
<summary>
|
454
|
+
Gets the type of the exception.
|
455
|
+
</summary>
|
456
|
+
</member>
|
457
|
+
<member name="P:Xunit.TestFailedResult.ExceptionMessage">
|
458
|
+
<summary>
|
459
|
+
Gets the exception message.
|
460
|
+
</summary>
|
461
|
+
</member>
|
462
|
+
<member name="P:Xunit.TestFailedResult.ExceptionStackTrace">
|
463
|
+
<summary>
|
464
|
+
Gets the exception stack trace.
|
465
|
+
</summary>
|
466
|
+
</member>
|
467
|
+
<member name="T:Xunit.TestSkippedResult">
|
468
|
+
<summary>
|
469
|
+
Represents a skipped test run in the object model.
|
470
|
+
</summary>
|
471
|
+
</member>
|
472
|
+
<member name="M:Xunit.TestSkippedResult.#ctor(System.String,System.String)">
|
473
|
+
<summary>
|
474
|
+
Initializes a new instance of the <see cref="T:Xunit.TestSkippedResult"/> class.
|
475
|
+
</summary>
|
476
|
+
<param name="displayName">The display name of the test result.</param>
|
477
|
+
<param name="reason">The skip reason.</param>
|
478
|
+
</member>
|
479
|
+
<member name="P:Xunit.TestSkippedResult.Reason">
|
480
|
+
<summary>
|
481
|
+
Gets the skip reason.
|
482
|
+
</summary>
|
483
|
+
</member>
|
484
|
+
<member name="T:Xunit.TestClassCallbackDispatcher">
|
485
|
+
<summary>
|
486
|
+
Acts as an <see cref="T:Xunit.IRunnerLogger"/> and adapts the callback messages
|
487
|
+
into calls to an instance of <see cref="T:Xunit.ITestMethodRunnerCallback"/>.
|
488
|
+
</summary>
|
489
|
+
</member>
|
490
|
+
<member name="T:Xunit.IRunnerLogger">
|
491
|
+
<summary>
|
492
|
+
Represents a logger used by <see cref="T:Xunit.TestRunner"/> and <see cref="T:Xunit.XmlLoggerAdapter"/>.
|
493
|
+
</summary>
|
494
|
+
</member>
|
495
|
+
<member name="M:Xunit.IRunnerLogger.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)">
|
496
|
+
<summary>
|
497
|
+
Called when the assembly has finished running.
|
498
|
+
</summary>
|
499
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
500
|
+
<param name="total">The total number of tests run.</param>
|
501
|
+
<param name="failed">The number of failed tests.</param>
|
502
|
+
<param name="skipped">The number of skipped tests.</param>
|
503
|
+
<param name="time">The time taken to run, in seconds.</param>
|
504
|
+
</member>
|
505
|
+
<member name="M:Xunit.IRunnerLogger.AssemblyStart(System.String,System.String,System.String)">
|
506
|
+
<summary>
|
507
|
+
Called when the assembly has started running.
|
508
|
+
</summary>
|
509
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
510
|
+
<param name="configFilename">The configuration filename, if given; null, otherwise.</param>
|
511
|
+
<param name="xUnitVersion">The version of xunit.dll.</param>
|
512
|
+
</member>
|
513
|
+
<member name="M:Xunit.IRunnerLogger.ClassFailed(System.String,System.String,System.String,System.String)">
|
514
|
+
<summary>
|
515
|
+
Called when a class failure is encountered (i.e., when a fixture from
|
516
|
+
IUseFixture throws an exception during construction or <see cref="M:System.IDisposable.Dispose"/>.
|
517
|
+
</summary>
|
518
|
+
<param name="className">The full type name of the class.</param>
|
519
|
+
<param name="exceptionType">The full type name of the exception.</param>
|
520
|
+
<param name="message">The exception message.</param>
|
521
|
+
<param name="stackTrace">The exception stack trace.</param>
|
522
|
+
<returns></returns>
|
523
|
+
</member>
|
524
|
+
<member name="M:Xunit.IRunnerLogger.ExceptionThrown(System.String,System.Exception)">
|
525
|
+
<summary>
|
526
|
+
Called when an exception is thrown (i.e., a catastrophic failure of the testing system).
|
527
|
+
</summary>
|
528
|
+
<param name="assemblyFilename">The assembly filename.</param>
|
529
|
+
<param name="exception">The exception that was thrown.</param>
|
530
|
+
</member>
|
531
|
+
<member name="M:Xunit.IRunnerLogger.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String,System.String)">
|
532
|
+
<summary>
|
533
|
+
Called when a test fails.
|
534
|
+
</summary>
|
535
|
+
<param name="name">The description name of the test.</param>
|
536
|
+
<param name="type">The full type name of the test class.</param>
|
537
|
+
<param name="method">The name of the method.</param>
|
538
|
+
<param name="duration">The time spent running the test, in seconds.</param>
|
539
|
+
<param name="output">The output of the test during its run.</param>
|
540
|
+
<param name="exceptionType">The full type name of the exception.</param>
|
541
|
+
<param name="message">The exception message.</param>
|
542
|
+
<param name="stackTrace">The exception stack trace.</param>
|
543
|
+
</member>
|
544
|
+
<member name="M:Xunit.IRunnerLogger.TestFinished(System.String,System.String,System.String)">
|
545
|
+
<summary>
|
546
|
+
Called when a test has finished running, regardless of what the result was.
|
547
|
+
</summary>
|
548
|
+
<param name="name">The description name of the test.</param>
|
549
|
+
<param name="type">The full type name of the test class.</param>
|
550
|
+
<param name="method">The name of the method.</param>
|
551
|
+
<returns>Return true to continue running tests; return false to stop the test run.</returns>
|
552
|
+
</member>
|
553
|
+
<member name="M:Xunit.IRunnerLogger.TestPassed(System.String,System.String,System.String,System.Double,System.String)">
|
554
|
+
<summary>
|
555
|
+
Called when a test has passed.
|
556
|
+
</summary>
|
557
|
+
<param name="name">The description name of the test.</param>
|
558
|
+
<param name="type">The full type name of the test class.</param>
|
559
|
+
<param name="method">The name of the method.</param>
|
560
|
+
<param name="duration">The time spent running the test, in seconds.</param>
|
561
|
+
<param name="output">The output of the test during its run.</param>
|
562
|
+
</member>
|
563
|
+
<member name="M:Xunit.IRunnerLogger.TestSkipped(System.String,System.String,System.String,System.String)">
|
564
|
+
<summary>
|
565
|
+
Called when a test was finished.
|
566
|
+
</summary>
|
567
|
+
<param name="name">The description name of the test.</param>
|
568
|
+
<param name="type">The full type name of the test class.</param>
|
569
|
+
<param name="method">The name of the method.</param>
|
570
|
+
<param name="reason">The skip reason.</param>
|
571
|
+
</member>
|
572
|
+
<member name="M:Xunit.IRunnerLogger.TestStart(System.String,System.String,System.String)">
|
573
|
+
<summary>
|
574
|
+
Called when a test has started running.
|
575
|
+
</summary>
|
576
|
+
<param name="name">The description name of the test.</param>
|
577
|
+
<param name="type">The full type name of the test class.</param>
|
578
|
+
<param name="method">The name of the method.</param>
|
579
|
+
<returns>Return true to continue running tests; return false to stop the test run.</returns>
|
580
|
+
</member>
|
581
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.#ctor(Xunit.TestClass,Xunit.ITestMethodRunnerCallback)">
|
582
|
+
<summary>
|
583
|
+
Initializes a new instance of the <see cref="T:Xunit.TestClassCallbackDispatcher"/> class.
|
584
|
+
</summary>
|
585
|
+
<param name="testClass">The test class.</param>
|
586
|
+
<param name="callback">The run status information callback.</param>
|
587
|
+
</member>
|
588
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)">
|
589
|
+
<inheritdoc/>
|
590
|
+
</member>
|
591
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.AssemblyStart(System.String,System.String,System.String)">
|
592
|
+
<inheritdoc/>
|
593
|
+
</member>
|
594
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.ClassFailed(System.String,System.String,System.String,System.String)">
|
595
|
+
<inheritdoc/>
|
596
|
+
</member>
|
597
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.ExceptionThrown(System.String,System.Exception)">
|
598
|
+
<inheritdoc/>
|
599
|
+
</member>
|
600
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String,System.String)">
|
601
|
+
<inheritdoc/>
|
602
|
+
</member>
|
603
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.TestFinished(System.String,System.String,System.String)">
|
604
|
+
<inheritdoc/>
|
605
|
+
</member>
|
606
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.TestPassed(System.String,System.String,System.String,System.Double,System.String)">
|
607
|
+
<inheritdoc/>
|
608
|
+
</member>
|
609
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.TestSkipped(System.String,System.String,System.String,System.String)">
|
610
|
+
<inheritdoc/>
|
611
|
+
</member>
|
612
|
+
<member name="M:Xunit.TestClassCallbackDispatcher.TestStart(System.String,System.String,System.String)">
|
613
|
+
<inheritdoc/>
|
614
|
+
</member>
|
615
|
+
<member name="T:Xunit.TestPassedResult">
|
616
|
+
<summary>
|
617
|
+
Represents a passed test run in the object model.
|
618
|
+
</summary>
|
619
|
+
</member>
|
620
|
+
<member name="M:Xunit.TestPassedResult.#ctor(System.Double,System.String,System.String)">
|
621
|
+
<summary>
|
622
|
+
Initializes a new instance of the <see cref="T:Xunit.TestPassedResult"/> class.
|
623
|
+
</summary>
|
624
|
+
<param name="duration">The duration the test took to run.</param>
|
625
|
+
<param name="displayName">The display name of the test result.</param>
|
626
|
+
<param name="output">The output that was captured during the test run.</param>
|
627
|
+
</member>
|
628
|
+
<member name="P:Xunit.TestPassedResult.Output">
|
629
|
+
<summary>
|
630
|
+
Gets the output that was captured during the test run.
|
631
|
+
</summary>
|
632
|
+
</member>
|
633
|
+
<member name="T:Xunit.TestStatus">
|
634
|
+
<summary>
|
635
|
+
Indicates the composite test method status
|
636
|
+
</summary>
|
637
|
+
</member>
|
638
|
+
<member name="F:Xunit.TestStatus.NotRun">
|
639
|
+
<summary>
|
640
|
+
The method has not been run
|
641
|
+
</summary>
|
642
|
+
</member>
|
643
|
+
<member name="F:Xunit.TestStatus.Passed">
|
644
|
+
<summary>
|
645
|
+
All test results for the last run passed
|
646
|
+
</summary>
|
647
|
+
</member>
|
648
|
+
<member name="F:Xunit.TestStatus.Failed">
|
649
|
+
<summary>
|
650
|
+
At least one test result for the last run failed
|
651
|
+
</summary>
|
652
|
+
</member>
|
653
|
+
<member name="F:Xunit.TestStatus.Skipped">
|
654
|
+
<summary>
|
655
|
+
At least one test result for the last run was skipped, and none failed
|
656
|
+
</summary>
|
657
|
+
</member>
|
658
|
+
<member name="T:Xunit.XunitProject">
|
659
|
+
<summary>
|
660
|
+
Represents an xUnit Test Project file (.xunit file)
|
661
|
+
</summary>
|
662
|
+
</member>
|
663
|
+
<member name="M:Xunit.XunitProject.#ctor">
|
664
|
+
<summary>
|
665
|
+
Initializes a new instance of the <see cref="T:Xunit.XunitProject"/> class.
|
666
|
+
</summary>
|
667
|
+
</member>
|
668
|
+
<member name="M:Xunit.XunitProject.AddAssembly(Xunit.XunitProjectAssembly)">
|
669
|
+
<summary>
|
670
|
+
Adds an assembly to the project
|
671
|
+
</summary>
|
672
|
+
<param name="assembly">The assembly to be added</param>
|
673
|
+
</member>
|
674
|
+
<member name="M:Xunit.XunitProject.Load(System.String)">
|
675
|
+
<summary>
|
676
|
+
Loads an xUnit.net Test Project file from disk.
|
677
|
+
</summary>
|
678
|
+
<param name="filename">The test project filename</param>
|
679
|
+
</member>
|
680
|
+
<member name="M:Xunit.XunitProject.RemoveAssembly(Xunit.XunitProjectAssembly)">
|
681
|
+
<summary>
|
682
|
+
Removes assembly from the assembly list
|
683
|
+
</summary>
|
684
|
+
<param name="assembly">The assembly to be removed</param>
|
685
|
+
</member>
|
686
|
+
<member name="M:Xunit.XunitProject.Save">
|
687
|
+
<summary>
|
688
|
+
Saves the xUnit.net Test Project file to disk using the project's filename.
|
689
|
+
</summary>
|
690
|
+
</member>
|
691
|
+
<member name="M:Xunit.XunitProject.SaveAs(System.String)">
|
692
|
+
<summary>
|
693
|
+
Saves the xUnit.net Test Project file to disk using the provided filename.
|
694
|
+
The projects filename is updated to match this new name.
|
695
|
+
</summary>
|
696
|
+
<param name="filename">The test project filename</param>
|
697
|
+
</member>
|
698
|
+
<member name="P:Xunit.XunitProject.Assemblies">
|
699
|
+
<summary>
|
700
|
+
Gets or sets the assemblies in the project.
|
701
|
+
</summary>
|
702
|
+
</member>
|
703
|
+
<member name="P:Xunit.XunitProject.Filename">
|
704
|
+
<summary>
|
705
|
+
Gets or set the filename of the project.
|
706
|
+
</summary>
|
707
|
+
</member>
|
708
|
+
<member name="P:Xunit.XunitProject.IsDirty">
|
709
|
+
<summary>
|
710
|
+
Gets or sets a flag which indicates if this project has been modified since
|
711
|
+
the last time it was loaded or saved.
|
712
|
+
</summary>
|
713
|
+
</member>
|
714
|
+
<member name="T:Xunit.XunitProjectAssembly">
|
715
|
+
<summary>
|
716
|
+
Represents an assembly in an <see cref="T:Xunit.XunitProject"/>.
|
717
|
+
</summary>
|
718
|
+
</member>
|
719
|
+
<member name="M:Xunit.XunitProjectAssembly.#ctor">
|
720
|
+
<summary>
|
721
|
+
Initializes a new instance of the <see cref="T:Xunit.XunitProjectAssembly"/> class.
|
722
|
+
</summary>
|
723
|
+
</member>
|
724
|
+
<member name="P:Xunit.XunitProjectAssembly.AssemblyFilename">
|
725
|
+
<summary>
|
726
|
+
Gets or sets the assembly filename.
|
727
|
+
</summary>
|
728
|
+
</member>
|
729
|
+
<member name="P:Xunit.XunitProjectAssembly.ConfigFilename">
|
730
|
+
<summary>
|
731
|
+
Gets or sets the config filename.
|
732
|
+
</summary>
|
733
|
+
</member>
|
734
|
+
<member name="P:Xunit.XunitProjectAssembly.ShadowCopy">
|
735
|
+
<summary>
|
736
|
+
Gets or sets a value indicating whether to shadow copy the assembly
|
737
|
+
when running the tests.
|
738
|
+
</summary>
|
739
|
+
<remarks>
|
740
|
+
The xUnit.net GUI runner does not support this field.
|
741
|
+
</remarks>
|
742
|
+
</member>
|
743
|
+
<member name="P:Xunit.XunitProjectAssembly.Output">
|
744
|
+
<summary>
|
745
|
+
Gets or sets the output filenames. The dictionary key is the type
|
746
|
+
of the file to be output; the dictionary value is the filename to
|
747
|
+
write the output to.
|
748
|
+
</summary>
|
749
|
+
<remarks>
|
750
|
+
The xUnit.net GUI runner does not support this field. The MSBuild
|
751
|
+
runner only supports output of type 'xml', 'html', and 'nunit'.
|
752
|
+
</remarks>
|
753
|
+
</member>
|
754
|
+
<member name="T:Xunit.ITestRunner">
|
755
|
+
<summary>
|
756
|
+
Interface which represents a high level test runner.
|
757
|
+
</summary>
|
758
|
+
</member>
|
759
|
+
<member name="M:Xunit.ITestRunner.RunAssembly">
|
760
|
+
<summary>
|
761
|
+
Executes the tests in the assembly.
|
762
|
+
</summary>
|
763
|
+
<returns>Returns true if there were no failures; return false otherwise.</returns>
|
764
|
+
</member>
|
765
|
+
<member name="M:Xunit.ITestRunner.RunAssembly(System.Collections.Generic.IEnumerable{Xunit.IResultXmlTransform})">
|
766
|
+
<summary>
|
767
|
+
Executes the tests in the assembly, and then executes the transforms with the
|
768
|
+
resulting assembly XML.
|
769
|
+
</summary>
|
770
|
+
<param name="transforms">The transforms to execute.</param>
|
771
|
+
<returns>Returns true if there were no failures; return false otherwise.</returns>
|
772
|
+
</member>
|
773
|
+
<member name="M:Xunit.ITestRunner.RunClass(System.String)">
|
774
|
+
<summary>
|
775
|
+
Runs the class.
|
776
|
+
</summary>
|
777
|
+
<param name="type">The type.</param>
|
778
|
+
<returns></returns>
|
779
|
+
</member>
|
780
|
+
<member name="M:Xunit.ITestRunner.RunTest(System.String,System.String)">
|
781
|
+
<summary>
|
782
|
+
Runs a single test in a test class.
|
783
|
+
</summary>
|
784
|
+
<param name="type">The full name of the class.</param>
|
785
|
+
<param name="method">The name of the method.</param>
|
786
|
+
</member>
|
787
|
+
<member name="M:Xunit.ITestRunner.RunTests(System.String,System.Collections.Generic.List{System.String})">
|
788
|
+
<summary>
|
789
|
+
Runs the list of tests in a test class.
|
790
|
+
</summary>
|
791
|
+
<param name="type">The full name of the class.</param>
|
792
|
+
<param name="methods">The names of the methods to run.</param>
|
793
|
+
</member>
|
794
|
+
<member name="T:Xunit.TestAssembly">
|
795
|
+
<summary>
|
796
|
+
Represents a single test assembly with test classes.
|
797
|
+
</summary>
|
798
|
+
</member>
|
799
|
+
<member name="M:Xunit.TestAssembly.#ctor(Xunit.IExecutorWrapper,System.Collections.Generic.IEnumerable{Xunit.TestClass})">
|
800
|
+
<summary>
|
801
|
+
Initializes a new instance of the <see cref="T:Xunit.TestAssembly"/> class.
|
802
|
+
</summary>
|
803
|
+
<param name="executorWrapper">The executor wrapper.</param>
|
804
|
+
<param name="testClasses">The test classes.</param>
|
805
|
+
</member>
|
806
|
+
<member name="M:Xunit.TestAssembly.Dispose">
|
807
|
+
<inheritdoc/>
|
808
|
+
</member>
|
809
|
+
<member name="M:Xunit.TestAssembly.EnumerateClasses">
|
810
|
+
<summary>
|
811
|
+
Enumerates the test classes in the assembly.
|
812
|
+
</summary>
|
813
|
+
</member>
|
814
|
+
<member name="M:Xunit.TestAssembly.EnumerateTestMethods">
|
815
|
+
<inheritdoc/>
|
816
|
+
</member>
|
817
|
+
<member name="M:Xunit.TestAssembly.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
|
818
|
+
<inheritdoc/>
|
819
|
+
</member>
|
820
|
+
<member name="M:Xunit.TestAssembly.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
|
821
|
+
<inheritdoc/>
|
822
|
+
</member>
|
823
|
+
<member name="P:Xunit.TestAssembly.AssemblyFilename">
|
824
|
+
<summary>
|
825
|
+
Gets the assembly filename.
|
826
|
+
</summary>
|
827
|
+
</member>
|
828
|
+
<member name="P:Xunit.TestAssembly.ConfigFilename">
|
829
|
+
<summary>
|
830
|
+
Gets the config filename.
|
831
|
+
</summary>
|
832
|
+
</member>
|
833
|
+
<member name="P:Xunit.TestAssembly.ExecutorWrapper">
|
834
|
+
<summary>
|
835
|
+
Gets the executor wrapper.
|
836
|
+
</summary>
|
837
|
+
</member>
|
838
|
+
<member name="P:Xunit.TestAssembly.XunitVersion">
|
839
|
+
<summary>
|
840
|
+
Gets the version of xunit.dll that the tests are linked against.
|
841
|
+
</summary>
|
842
|
+
</member>
|
843
|
+
<member name="T:Xunit.TestClass">
|
844
|
+
<summary>
|
845
|
+
Represents a single class with test methods.
|
846
|
+
</summary>
|
847
|
+
</member>
|
848
|
+
<member name="M:Xunit.TestClass.#ctor(System.String,System.Collections.Generic.IEnumerable{Xunit.TestMethod})">
|
849
|
+
<summary>
|
850
|
+
Initializes a new instance of the <see cref="T:Xunit.TestClass"/> class.
|
851
|
+
</summary>
|
852
|
+
<param name="typeName">The namespace-qualified type name that
|
853
|
+
this class represents.</param>
|
854
|
+
<param name="testMethods">The test methods inside this test class.</param>
|
855
|
+
</member>
|
856
|
+
<member name="M:Xunit.TestClass.EnumerateTestMethods">
|
857
|
+
<inheritdoc/>
|
858
|
+
</member>
|
859
|
+
<member name="M:Xunit.TestClass.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
|
860
|
+
<inheritdoc/>
|
861
|
+
</member>
|
862
|
+
<member name="M:Xunit.TestClass.GetTestRunner(Xunit.ITestMethodRunnerCallback)">
|
863
|
+
<summary>
|
864
|
+
Gets the test runner used to run tests. Exists as an overload primarily
|
865
|
+
for the purposes of unit testing.
|
866
|
+
</summary>
|
867
|
+
<param name="callback">The run status information callback.</param>
|
868
|
+
</member>
|
869
|
+
<member name="M:Xunit.TestClass.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
|
870
|
+
<inheritdoc/>
|
871
|
+
</member>
|
872
|
+
<member name="P:Xunit.TestClass.TestAssembly">
|
873
|
+
<summary>
|
874
|
+
Gets the test assembly that this class belongs to.
|
875
|
+
</summary>
|
876
|
+
</member>
|
877
|
+
<member name="P:Xunit.TestClass.TypeName">
|
878
|
+
<summary>
|
879
|
+
Gets the namespace-qualified type name of this class.
|
880
|
+
</summary>
|
881
|
+
</member>
|
882
|
+
<member name="T:Xunit.TestMethod">
|
883
|
+
<summary>
|
884
|
+
Represents a single test method.
|
885
|
+
</summary>
|
886
|
+
</member>
|
887
|
+
<member name="M:Xunit.TestMethod.#ctor(System.String,System.String,Xunit.MultiValueDictionary{System.String,System.String})">
|
888
|
+
<summary>
|
889
|
+
Initializes a new instance of the <see cref="T:Xunit.TestMethod"/> class.
|
890
|
+
</summary>
|
891
|
+
<param name="methodName">The method name.</param>
|
892
|
+
<param name="displayName">The method's display name.</param>
|
893
|
+
<param name="traits">The method's traits.</param>
|
894
|
+
</member>
|
895
|
+
<member name="P:Xunit.TestMethod.DisplayName">
|
896
|
+
<summary>
|
897
|
+
Gets the method's display name.
|
898
|
+
</summary>
|
899
|
+
</member>
|
900
|
+
<member name="P:Xunit.TestMethod.MethodName">
|
901
|
+
<summary>
|
902
|
+
Gets the method's name.
|
903
|
+
</summary>
|
904
|
+
</member>
|
905
|
+
<member name="P:Xunit.TestMethod.RunResults">
|
906
|
+
<summary>
|
907
|
+
Gets the run results for the last run.
|
908
|
+
</summary>
|
909
|
+
</member>
|
910
|
+
<member name="P:Xunit.TestMethod.RunStatus">
|
911
|
+
<summary>
|
912
|
+
Gets the composite run status for all the results of the last run.
|
913
|
+
</summary>
|
914
|
+
</member>
|
915
|
+
<member name="P:Xunit.TestMethod.TestClass">
|
916
|
+
<summary>
|
917
|
+
Gets the test class this test method belongs to.
|
918
|
+
</summary>
|
919
|
+
</member>
|
920
|
+
<member name="P:Xunit.TestMethod.Traits">
|
921
|
+
<summary>
|
922
|
+
Gets the method's traits.
|
923
|
+
</summary>
|
924
|
+
</member>
|
925
|
+
<member name="T:Xunit.TestRunnerResult">
|
926
|
+
<summary>
|
927
|
+
The result of a test run via <see cref="T:Xunit.TestRunner"/>.
|
928
|
+
</summary>
|
929
|
+
</member>
|
930
|
+
<member name="F:Xunit.TestRunnerResult.Passed">
|
931
|
+
<summary>
|
932
|
+
All tests passed, with no class-level failures
|
933
|
+
</summary>
|
934
|
+
</member>
|
935
|
+
<member name="F:Xunit.TestRunnerResult.Failed">
|
936
|
+
<summary>
|
937
|
+
At least one test failed, or there was a class-level failure
|
938
|
+
</summary>
|
939
|
+
</member>
|
940
|
+
<member name="F:Xunit.TestRunnerResult.NoTests">
|
941
|
+
<summary>
|
942
|
+
There were no tests to run
|
943
|
+
</summary>
|
944
|
+
</member>
|
945
|
+
<member name="T:Xunit.IResultXmlTransform">
|
946
|
+
<summary>
|
947
|
+
Represents a transformation of the resulting assembly XML into some output format.
|
948
|
+
</summary>
|
949
|
+
</member>
|
950
|
+
<member name="M:Xunit.IResultXmlTransform.Transform(System.String)">
|
951
|
+
<summary>
|
952
|
+
Transforms the given assembly XML into the destination format.
|
953
|
+
</summary>
|
954
|
+
<param name="xml">The assembly XML.</param>
|
955
|
+
</member>
|
956
|
+
<member name="P:Xunit.IResultXmlTransform.OutputFilename">
|
957
|
+
<summary>
|
958
|
+
Gets the output filename, if known; returns null if the output isn't done to file.
|
959
|
+
</summary>
|
960
|
+
</member>
|
961
|
+
<member name="T:Xunit.TestRunner">
|
962
|
+
<summary>
|
963
|
+
Runs tests in an assembly, and transforms the XML results into calls to
|
964
|
+
the provided <see cref="T:Xunit.IRunnerLogger"/>.
|
965
|
+
</summary>
|
966
|
+
</member>
|
967
|
+
<member name="M:Xunit.TestRunner.#ctor(Xunit.IExecutorWrapper,Xunit.IRunnerLogger)">
|
968
|
+
<summary>
|
969
|
+
Initializes a new instance of the <see cref="T:Xunit.TestRunner"/> class.
|
970
|
+
</summary>
|
971
|
+
<param name="executorWrapper">The executor wrapper.</param>
|
972
|
+
<param name="logger">The logger.</param>
|
973
|
+
</member>
|
974
|
+
<member name="M:Xunit.TestRunner.RunAssembly">
|
975
|
+
<inheritdoc/>
|
976
|
+
</member>
|
977
|
+
<member name="M:Xunit.TestRunner.RunAssembly(System.Collections.Generic.IEnumerable{Xunit.IResultXmlTransform})">
|
978
|
+
<inheritdoc/>
|
979
|
+
</member>
|
980
|
+
<member name="M:Xunit.TestRunner.RunClass(System.String)">
|
981
|
+
<inheritdoc/>
|
982
|
+
</member>
|
983
|
+
<member name="M:Xunit.TestRunner.RunTest(System.String,System.String)">
|
984
|
+
<inheritdoc/>
|
985
|
+
</member>
|
986
|
+
<member name="M:Xunit.TestRunner.RunTests(System.String,System.Collections.Generic.List{System.String})">
|
987
|
+
<inheritdoc/>
|
988
|
+
</member>
|
989
|
+
<member name="T:Xunit.NullTransformer">
|
990
|
+
<summary>
|
991
|
+
An implementation of <see cref="T:Xunit.IResultXmlTransform"/> which writes the
|
992
|
+
XML to a file without any transformation applied.
|
993
|
+
</summary>
|
994
|
+
</member>
|
995
|
+
<member name="M:Xunit.NullTransformer.#ctor(System.String)">
|
996
|
+
<summary>
|
997
|
+
Initializes a new instance of the <see cref="T:Xunit.NullTransformer"/> class.
|
998
|
+
</summary>
|
999
|
+
<param name="filename">The output filename.</param>
|
1000
|
+
</member>
|
1001
|
+
<member name="M:Xunit.NullTransformer.Transform(System.String)">
|
1002
|
+
<inheritdoc/>
|
1003
|
+
</member>
|
1004
|
+
<member name="P:Xunit.NullTransformer.OutputFilename">
|
1005
|
+
<inheritdoc/>
|
1006
|
+
</member>
|
1007
|
+
<member name="T:Xunit.XslStreamTransformer">
|
1008
|
+
<summary>
|
1009
|
+
An implementation of <see cref="T:Xunit.IResultXmlTransform"/> which writes the
|
1010
|
+
XML to a file after applying the XSL stylesheet in the given stream.
|
1011
|
+
</summary>
|
1012
|
+
</member>
|
1013
|
+
<member name="M:Xunit.XslStreamTransformer.#ctor(System.String,System.String)">
|
1014
|
+
<summary>
|
1015
|
+
Initializes a new instance of the <see cref="T:Xunit.XslStreamTransformer"/> class.
|
1016
|
+
</summary>
|
1017
|
+
<param name="xslFilename">The XSL filename.</param>
|
1018
|
+
<param name="outputFilename">The output filename.</param>
|
1019
|
+
</member>
|
1020
|
+
<member name="M:Xunit.XslStreamTransformer.#ctor(System.IO.Stream,System.String)">
|
1021
|
+
<summary>
|
1022
|
+
Initializes a new instance of the <see cref="T:Xunit.XslStreamTransformer"/> class.
|
1023
|
+
</summary>
|
1024
|
+
<param name="xslStream">The stream with the XSL stylesheet.</param>
|
1025
|
+
<param name="outputFilename">The output filename.</param>
|
1026
|
+
</member>
|
1027
|
+
<member name="M:Xunit.XslStreamTransformer.Transform(System.String)">
|
1028
|
+
<inheritdoc/>
|
1029
|
+
</member>
|
1030
|
+
<member name="P:Xunit.XslStreamTransformer.OutputFilename">
|
1031
|
+
<inheritdoc/>
|
1032
|
+
</member>
|
1033
|
+
<member name="P:Xunit.XslStreamTransformer.XslFilename">
|
1034
|
+
<summary>
|
1035
|
+
Gets or sets the XSL filename.
|
1036
|
+
</summary>
|
1037
|
+
</member>
|
1038
|
+
<member name="P:Xunit.XslStreamTransformer.XslStream">
|
1039
|
+
<summary>
|
1040
|
+
Gets or sets the XSL stream.
|
1041
|
+
</summary>
|
1042
|
+
</member>
|
1043
|
+
<member name="T:Xunit.MultiValueDictionary`2">
|
1044
|
+
<summary>
|
1045
|
+
A dictionary which contains multiple unique values for each key.
|
1046
|
+
</summary>
|
1047
|
+
<typeparam name="TKey">The type of the key.</typeparam>
|
1048
|
+
<typeparam name="TValue">The type of the value.</typeparam>
|
1049
|
+
</member>
|
1050
|
+
<member name="M:Xunit.MultiValueDictionary`2.AddValue(`0,`1)">
|
1051
|
+
<summary>
|
1052
|
+
Adds the value for the given key. If the key does not exist in the
|
1053
|
+
dictionary yet, it will add it.
|
1054
|
+
</summary>
|
1055
|
+
<param name="key">The key.</param>
|
1056
|
+
<param name="value">The value.</param>
|
1057
|
+
</member>
|
1058
|
+
<member name="M:Xunit.MultiValueDictionary`2.Clear">
|
1059
|
+
<summary>
|
1060
|
+
Removes all keys and values from the dictionary.
|
1061
|
+
</summary>
|
1062
|
+
</member>
|
1063
|
+
<member name="M:Xunit.MultiValueDictionary`2.Contains(`0,`1)">
|
1064
|
+
<summary>
|
1065
|
+
Determines whether the dictionary contains to specified key and value.
|
1066
|
+
</summary>
|
1067
|
+
<param name="key">The key.</param>
|
1068
|
+
<param name="value">The value.</param>
|
1069
|
+
</member>
|
1070
|
+
<member name="M:Xunit.MultiValueDictionary`2.ForEach(Xunit.MultiValueDictionary{`0,`1}.ForEachDelegate)">
|
1071
|
+
<summary>
|
1072
|
+
Calls the delegate once for each key/value pair in the dictionary.
|
1073
|
+
</summary>
|
1074
|
+
</member>
|
1075
|
+
<member name="M:Xunit.MultiValueDictionary`2.Remove(`0)">
|
1076
|
+
<summary>
|
1077
|
+
Removes the given key and all of its values.
|
1078
|
+
</summary>
|
1079
|
+
</member>
|
1080
|
+
<member name="M:Xunit.MultiValueDictionary`2.RemoveValue(`0,`1)">
|
1081
|
+
<summary>
|
1082
|
+
Removes the given value from the given key. If this was the
|
1083
|
+
last value for the key, then the key is removed as well.
|
1084
|
+
</summary>
|
1085
|
+
<param name="key">The key.</param>
|
1086
|
+
<param name="value">The value.</param>
|
1087
|
+
</member>
|
1088
|
+
<member name="P:Xunit.MultiValueDictionary`2.Item(`0)">
|
1089
|
+
<summary>
|
1090
|
+
Gets the values for the given key.
|
1091
|
+
</summary>
|
1092
|
+
</member>
|
1093
|
+
<member name="P:Xunit.MultiValueDictionary`2.Count">
|
1094
|
+
<summary>
|
1095
|
+
Gets the count of the keys in the dictionary.
|
1096
|
+
</summary>
|
1097
|
+
</member>
|
1098
|
+
<member name="P:Xunit.MultiValueDictionary`2.Keys">
|
1099
|
+
<summary>
|
1100
|
+
Gets the keys.
|
1101
|
+
</summary>
|
1102
|
+
</member>
|
1103
|
+
<member name="T:Xunit.MultiValueDictionary`2.ForEachDelegate">
|
1104
|
+
<summary/>
|
1105
|
+
</member>
|
1106
|
+
<member name="T:Xunit.TestAssemblyBuilder">
|
1107
|
+
<summary>
|
1108
|
+
Responsible for building <see cref="T:Xunit.TestAssembly"/> instances. Uses an instance
|
1109
|
+
of <see cref="T:Xunit.IExecutorWrapper"/> to interrogate the list of available tests
|
1110
|
+
and create the entire object model tree.
|
1111
|
+
</summary>
|
1112
|
+
</member>
|
1113
|
+
<member name="M:Xunit.TestAssemblyBuilder.Build(Xunit.IExecutorWrapper)">
|
1114
|
+
<summary>
|
1115
|
+
Creates a <see cref="T:Xunit.TestAssembly"/> which is a complete object model over
|
1116
|
+
the tests inside of instance of <see cref="T:Xunit.IExecutorWrapper"/>.
|
1117
|
+
</summary>
|
1118
|
+
<param name="executorWrapper">The executor wrapper</param>
|
1119
|
+
<returns>The fully populated object model</returns>
|
1120
|
+
</member>
|
1121
|
+
<member name="T:Xunit.XmlLoggerAdapter">
|
1122
|
+
<summary>
|
1123
|
+
Parses the XML nodes from the version resilient runner facility and converts
|
1124
|
+
them into calls against the provided <see cref="T:Xunit.IRunnerLogger"/>.
|
1125
|
+
</summary>
|
1126
|
+
</member>
|
1127
|
+
<member name="M:Xunit.XmlLoggerAdapter.LogNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
1128
|
+
<summary>
|
1129
|
+
Logs a result XML node. Maybe be any kind of XML node.
|
1130
|
+
</summary>
|
1131
|
+
<param name="node">The node to be logged.</param>
|
1132
|
+
<param name="logger">The logger.</param>
|
1133
|
+
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
1134
|
+
</member>
|
1135
|
+
<member name="M:Xunit.XmlLoggerAdapter.LogAssemblyNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
1136
|
+
<summary>
|
1137
|
+
Logs the assembly node by calling <see cref="M:Xunit.IRunnerLogger.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)"/>.
|
1138
|
+
</summary>
|
1139
|
+
<param name="assemblyNode">The assembly node.</param>
|
1140
|
+
<param name="logger">The logger.</param>
|
1141
|
+
</member>
|
1142
|
+
<member name="M:Xunit.XmlLoggerAdapter.LogClassNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
1143
|
+
<summary>
|
1144
|
+
Logs the class node by calling <see cref="M:Xunit.IRunnerLogger.ClassFailed(System.String,System.String,System.String,System.String)"/> (if the class failed).
|
1145
|
+
The exception type was added in xUnit.net 1.1, so when the test assembly is linked against
|
1146
|
+
xUnit.net versions prior to 1.1, the exception type will be null.
|
1147
|
+
</summary>
|
1148
|
+
<param name="classNode">The class node.</param>
|
1149
|
+
<param name="logger">The logger.</param>
|
1150
|
+
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
1151
|
+
</member>
|
1152
|
+
<member name="M:Xunit.XmlLoggerAdapter.LogStartNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
1153
|
+
<summary>
|
1154
|
+
Logs the start node by calling <see cref="M:Xunit.IRunnerLogger.TestStart(System.String,System.String,System.String)"/>. The start node was added
|
1155
|
+
in xUnit.net 1.1, so it will only be present when the test assembly is linked against xunit.dll
|
1156
|
+
version 1.1 or later.
|
1157
|
+
</summary>
|
1158
|
+
<param name="startNode">The start node.</param>
|
1159
|
+
<param name="logger">The logger.</param>
|
1160
|
+
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
1161
|
+
</member>
|
1162
|
+
<member name="M:Xunit.XmlLoggerAdapter.LogTestNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
1163
|
+
<summary>
|
1164
|
+
Logs the test node by calling <see cref="M:Xunit.IRunnerLogger.TestFinished(System.String,System.String,System.String)"/>. It will also call
|
1165
|
+
<see cref="M:Xunit.IRunnerLogger.TestPassed(System.String,System.String,System.String,System.Double,System.String)"/>, <see cref="M:Xunit.IRunnerLogger.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String,System.String)"/>, or
|
1166
|
+
<see cref="M:Xunit.IRunnerLogger.TestSkipped(System.String,System.String,System.String,System.String)"/> as appropriate.
|
1167
|
+
</summary>
|
1168
|
+
<param name="testNode">The test node.</param>
|
1169
|
+
<param name="logger">The logger.</param>
|
1170
|
+
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
1171
|
+
</member>
|
1172
|
+
</members>
|
1173
|
+
</doc>
|