xunitnet 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/xunit.xml ADDED
@@ -0,0 +1,2437 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>xunit</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Xunit.Assert">
8
+ <summary>
9
+ Contains various static methods that are used to verify that conditions are met during the
10
+ process of running tests.
11
+ </summary>
12
+ </member>
13
+ <member name="M:Xunit.Assert.#ctor">
14
+ <summary>
15
+ Initializes a new instance of the <see cref="T:Xunit.Assert"/> class.
16
+ </summary>
17
+ </member>
18
+ <member name="M:Xunit.Assert.Contains``1(``0,System.Collections.Generic.IEnumerable{``0})">
19
+ <summary>
20
+ Verifies that a collection contains a given object.
21
+ </summary>
22
+ <typeparam name="T">The type of the object to be verified</typeparam>
23
+ <param name="expected">The object expected to be in the collection</param>
24
+ <param name="collection">The collection to be inspected</param>
25
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
26
+ </member>
27
+ <member name="M:Xunit.Assert.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
28
+ <summary>
29
+ Verifies that a collection contains a given object, using an equality comparer.
30
+ </summary>
31
+ <typeparam name="T">The type of the object to be verified</typeparam>
32
+ <param name="expected">The object expected to be in the collection</param>
33
+ <param name="collection">The collection to be inspected</param>
34
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
35
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
36
+ </member>
37
+ <member name="M:Xunit.Assert.Contains(System.String,System.Collections.Generic.IEnumerable{System.String},System.StringComparer)">
38
+ <summary>
39
+ Verifies that a collection contains a given string, using a string comparer.
40
+ </summary>
41
+ <typeparam name="T">The type of the object to be verified</typeparam>
42
+ <param name="expected">The string expected to be in the collection</param>
43
+ <param name="collection">The collection to be inspected</param>
44
+ <param name="comparer">The comparer used to equate objects in the collection with the expected string</param>
45
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the string is not present in the collection</exception>
46
+ </member>
47
+ <member name="M:Xunit.Assert.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
48
+ <summary>
49
+ Verifies that a collection contains a given object, using a comparer.
50
+ </summary>
51
+ <typeparam name="T">The type of the object to be verified</typeparam>
52
+ <param name="expected">The object expected to be in the collection</param>
53
+ <param name="collection">The collection to be inspected</param>
54
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
55
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
56
+ </member>
57
+ <member name="M:Xunit.Assert.Contains(System.String,System.String)">
58
+ <summary>
59
+ Verifies that a string contains a given sub-string, using the current culture.
60
+ </summary>
61
+ <param name="expectedSubString">The sub-string expected to be in the string</param>
62
+ <param name="actualString">The string to be inspected</param>
63
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
64
+ </member>
65
+ <member name="M:Xunit.Assert.Contains(System.String,System.String,System.StringComparison)">
66
+ <summary>
67
+ Verifies that a string contains a given sub-string, using the given comparison type.
68
+ </summary>
69
+ <param name="expectedSubString">The sub-string expected to be in the string</param>
70
+ <param name="actualString">The string to be inspected</param>
71
+ <param name="comparisonType">The type of string comparison to perform</param>
72
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
73
+ </member>
74
+ <member name="M:Xunit.Assert.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0})">
75
+ <summary>
76
+ Verifies that a collection does not contain a given object.
77
+ </summary>
78
+ <typeparam name="T">The type of the object to be compared</typeparam>
79
+ <param name="expected">The object that is expected not to be in the collection</param>
80
+ <param name="collection">The collection to be inspected</param>
81
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
82
+ </member>
83
+ <member name="M:Xunit.Assert.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
84
+ <summary>
85
+ Verifies that a collection does not contain a given object, using an equality comparer.
86
+ </summary>
87
+ <typeparam name="T">The type of the object to be compared</typeparam>
88
+ <param name="expected">The object that is expected not to be in the collection</param>
89
+ <param name="collection">The collection to be inspected</param>
90
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
91
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
92
+ </member>
93
+ <member name="M:Xunit.Assert.DoesNotContain(System.String,System.Collections.Generic.IEnumerable{System.String},System.StringComparer)">
94
+ <summary>
95
+ Verifies that a collection does not contain a given string, using a string comparer.
96
+ </summary>
97
+ <typeparam name="T">The type of the string to be compared</typeparam>
98
+ <param name="expected">The string that is expected not to be in the collection</param>
99
+ <param name="collection">The collection to be inspected</param>
100
+ <param name="comparer">The comparer used to equate strings in the collection with the expected string</param>
101
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the string is present inside the container</exception>
102
+ </member>
103
+ <member name="M:Xunit.Assert.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
104
+ <summary>
105
+ Verifies that a collection does not contain a given object, using a comparer.
106
+ </summary>
107
+ <typeparam name="T">The type of the object to be compared</typeparam>
108
+ <param name="expected">The object that is expected not to be in the collection</param>
109
+ <param name="collection">The collection to be inspected</param>
110
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
111
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
112
+ </member>
113
+ <member name="M:Xunit.Assert.DoesNotContain(System.String,System.String)">
114
+ <summary>
115
+ Verifies that a string does not contain a given sub-string, using the current culture.
116
+ </summary>
117
+ <param name="expectedSubString">The sub-string which is expected not to be in the string</param>
118
+ <param name="actualString">The string to be inspected</param>
119
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
120
+ </member>
121
+ <member name="M:Xunit.Assert.DoesNotContain(System.String,System.String,System.StringComparison)">
122
+ <summary>
123
+ Verifies that a string does not contain a given sub-string, using the current culture.
124
+ </summary>
125
+ <param name="expectedSubString">The sub-string which is expected not to be in the string</param>
126
+ <param name="actualString">The string to be inspected</param>
127
+ <param name="comparisonType">The type of string comparison to perform</param>
128
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
129
+ </member>
130
+ <member name="M:Xunit.Assert.DoesNotThrow(Xunit.Assert.ThrowsDelegate)">
131
+ <summary>
132
+ Verifies that a block of code does not throw any exceptions.
133
+ </summary>
134
+ <param name="testCode">A delegate to the code to be tested</param>
135
+ </member>
136
+ <member name="M:Xunit.Assert.Empty(System.Collections.IEnumerable)">
137
+ <summary>
138
+ Verifies that a collection is empty.
139
+ </summary>
140
+ <param name="collection">The collection to be inspected</param>
141
+ <exception cref="T:System.ArgumentNullException">Thrown when the collection is null</exception>
142
+ <exception cref="T:Xunit.Sdk.EmptyException">Thrown when the collection is not empty</exception>
143
+ </member>
144
+ <member name="M:Xunit.Assert.Equal``1(``0,``0)">
145
+ <summary>
146
+ Verifies that two objects are equal, using a default comparer.
147
+ </summary>
148
+ <typeparam name="T">The type of the objects to be compared</typeparam>
149
+ <param name="expected">The expected value</param>
150
+ <param name="actual">The value to be compared against</param>
151
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
152
+ </member>
153
+ <member name="M:Xunit.Assert.Equal``1(``0,``0,System.Collections.Generic.IEqualityComparer{``0})">
154
+ <summary>
155
+ Verifies that two objects are equal, using a custom equatable comparer.
156
+ </summary>
157
+ <typeparam name="T">The type of the objects to be compared</typeparam>
158
+ <param name="expected">The expected value</param>
159
+ <param name="actual">The value to be compared against</param>
160
+ <param name="comparer">The comparer used to compare the two objects</param>
161
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
162
+ </member>
163
+ <member name="M:Xunit.Assert.Equal(System.String,System.String,System.StringComparer)">
164
+ <summary>
165
+ Verifies that two strings are equal, using the given string comparer.
166
+ </summary>
167
+ <typeparam name="T">The type of the strings to be compared</typeparam>
168
+ <param name="expected">The expected value</param>
169
+ <param name="actual">The value to be compared against</param>
170
+ <param name="comparer">The comparer used to compare the two strings</param>
171
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the strings are not equal</exception>
172
+ </member>
173
+ <member name="M:Xunit.Assert.Equal``1(``0,``0,System.Collections.Generic.IComparer{``0})">
174
+ <summary>
175
+ Verifies that two objects are equal, using a custom comparer.
176
+ </summary>
177
+ <typeparam name="T">The type of the objects to be compared</typeparam>
178
+ <param name="expected">The expected value</param>
179
+ <param name="actual">The value to be compared against</param>
180
+ <param name="comparer">The comparer used to compare the two objects</param>
181
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
182
+ </member>
183
+ <member name="M:Xunit.Assert.Equals(System.Object,System.Object)">
184
+ <summary>Do not call this method.</summary>
185
+ </member>
186
+ <member name="M:Xunit.Assert.False(System.Boolean)">
187
+ <summary>
188
+ Verifies that the condition is false.
189
+ </summary>
190
+ <param name="condition">The condition to be tested</param>
191
+ <exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
192
+ </member>
193
+ <member name="M:Xunit.Assert.False(System.Boolean,System.String)">
194
+ <summary>
195
+ Verifies that the condition is false.
196
+ </summary>
197
+ <param name="condition">The condition to be tested</param>
198
+ <param name="userMessage">The message to show when the condition is not false</param>
199
+ <exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
200
+ </member>
201
+ <member name="M:Xunit.Assert.InRange``1(``0,``0,``0)">
202
+ <summary>
203
+ Verifies that a value is within a given range.
204
+ </summary>
205
+ <typeparam name="T">The type of the value to be compared</typeparam>
206
+ <param name="actual">The actual value to be evaluated</param>
207
+ <param name="low">The (inclusive) low value of the range</param>
208
+ <param name="high">The (inclusive) high value of the range</param>
209
+ <exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
210
+ </member>
211
+ <member name="M:Xunit.Assert.InRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
212
+ <summary>
213
+ Verifies that a value is within a given range, using a comparer.
214
+ </summary>
215
+ <typeparam name="T">The type of the value to be compared</typeparam>
216
+ <param name="actual">The actual value to be evaluated</param>
217
+ <param name="low">The (inclusive) low value of the range</param>
218
+ <param name="high">The (inclusive) high value of the range</param>
219
+ <param name="comparer">The comparer used to evaluate the value's range</param>
220
+ <exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
221
+ </member>
222
+ <member name="M:Xunit.Assert.IsAssignableFrom``1(System.Object)">
223
+ <summary>
224
+ Verifies that an object is of the given type or a derived type.
225
+ </summary>
226
+ <typeparam name="T">The type the object should be</typeparam>
227
+ <param name="object">The object to be evaluated</param>
228
+ <returns>The object, casted to type T when successful</returns>
229
+ <exception cref="T:Xunit.Sdk.IsAssignableFromException">Thrown when the object is not the given type</exception>
230
+ </member>
231
+ <member name="M:Xunit.Assert.IsAssignableFrom(System.Type,System.Object)">
232
+ <summary>
233
+ Verifies that an object is of the given type or a derived type.
234
+ </summary>
235
+ <param name="expectedType">The type the object should be</param>
236
+ <param name="object">The object to be evaluated</param>
237
+ <exception cref="T:Xunit.Sdk.IsAssignableFromException">Thrown when the object is not the given type</exception>
238
+ </member>
239
+ <member name="M:Xunit.Assert.IsNotType``1(System.Object)">
240
+ <summary>
241
+ Verifies that an object is not exactly the given type.
242
+ </summary>
243
+ <typeparam name="T">The type the object should not be</typeparam>
244
+ <param name="object">The object to be evaluated</param>
245
+ <exception cref="T:Xunit.Sdk.IsNotTypeException">Thrown when the object is the given type</exception>
246
+ </member>
247
+ <member name="M:Xunit.Assert.IsNotType(System.Type,System.Object)">
248
+ <summary>
249
+ Verifies that an object is not exactly the given type.
250
+ </summary>
251
+ <param name="expectedType">The type the object should not be</param>
252
+ <param name="object">The object to be evaluated</param>
253
+ <exception cref="T:Xunit.Sdk.IsNotTypeException">Thrown when the object is the given type</exception>
254
+ </member>
255
+ <member name="M:Xunit.Assert.IsType``1(System.Object)">
256
+ <summary>
257
+ Verifies that an object is exactly the given type (and not a derived type).
258
+ </summary>
259
+ <typeparam name="T">The type the object should be</typeparam>
260
+ <param name="object">The object to be evaluated</param>
261
+ <returns>The object, casted to type T when successful</returns>
262
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
263
+ </member>
264
+ <member name="M:Xunit.Assert.IsType(System.Type,System.Object)">
265
+ <summary>
266
+ Verifies that an object is exactly the given type (and not a derived type).
267
+ </summary>
268
+ <param name="expectedType">The type the object should be</param>
269
+ <param name="object">The object to be evaluated</param>
270
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
271
+ </member>
272
+ <member name="M:Xunit.Assert.NotEmpty(System.Collections.IEnumerable)">
273
+ <summary>
274
+ Verifies that a collection is not empty.
275
+ </summary>
276
+ <param name="collection">The collection to be inspected</param>
277
+ <exception cref="T:System.ArgumentNullException">Thrown when a null collection is passed</exception>
278
+ <exception cref="T:Xunit.Sdk.NotEmptyException">Thrown when the collection is empty</exception>
279
+ </member>
280
+ <member name="M:Xunit.Assert.NotEqual``1(``0,``0)">
281
+ <summary>
282
+ Verifies that two objects are not equal, using a default comparer.
283
+ </summary>
284
+ <typeparam name="T">The type of the objects to be compared</typeparam>
285
+ <param name="expected">The expected object</param>
286
+ <param name="actual">The actual object</param>
287
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
288
+ </member>
289
+ <member name="M:Xunit.Assert.NotEqual``1(``0,``0,System.Collections.Generic.IEqualityComparer{``0})">
290
+ <summary>
291
+ Verifies that two objects are not equal, using a custom equality comparer.
292
+ </summary>
293
+ <typeparam name="T">The type of the objects to be compared</typeparam>
294
+ <param name="expected">The expected object</param>
295
+ <param name="actual">The actual object</param>
296
+ <param name="comparer">The comparer used to examine the objects</param>
297
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
298
+ </member>
299
+ <member name="M:Xunit.Assert.NotEqual(System.String,System.String,System.StringComparer)">
300
+ <summary>
301
+ Verifies that two strings are not equal, using the given string comparer.
302
+ </summary>
303
+ <typeparam name="T">The type of the strings to be compared</typeparam>
304
+ <param name="expected">The expected string</param>
305
+ <param name="actual">The actual string</param>
306
+ <param name="comparer">The comparer used to examine the strings</param>
307
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the strings are equal</exception>
308
+ </member>
309
+ <member name="M:Xunit.Assert.NotEqual``1(``0,``0,System.Collections.Generic.IComparer{``0})">
310
+ <summary>
311
+ Verifies that two objects are not equal, using a custom comparer.
312
+ </summary>
313
+ <typeparam name="T">The type of the objects to be compared</typeparam>
314
+ <param name="expected">The expected object</param>
315
+ <param name="actual">The actual object</param>
316
+ <param name="comparer">The comparer used to examine the objects</param>
317
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
318
+ </member>
319
+ <member name="M:Xunit.Assert.NotInRange``1(``0,``0,``0)">
320
+ <summary>
321
+ Verifies that a value is not within a given range, using the default comparer.
322
+ </summary>
323
+ <typeparam name="T">The type of the value to be compared</typeparam>
324
+ <param name="actual">The actual value to be evaluated</param>
325
+ <param name="low">The (inclusive) low value of the range</param>
326
+ <param name="high">The (inclusive) high value of the range</param>
327
+ <exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
328
+ </member>
329
+ <member name="M:Xunit.Assert.NotInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
330
+ <summary>
331
+ Verifies that a value is not within a given range, using a comparer.
332
+ </summary>
333
+ <typeparam name="T">The type of the value to be compared</typeparam>
334
+ <param name="actual">The actual value to be evaluated</param>
335
+ <param name="low">The (inclusive) low value of the range</param>
336
+ <param name="high">The (inclusive) high value of the range</param>
337
+ <param name="comparer">The comparer used to evaluate the value's range</param>
338
+ <exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
339
+ </member>
340
+ <member name="M:Xunit.Assert.NotNull(System.Object)">
341
+ <summary>
342
+ Verifies that an object reference is not null.
343
+ </summary>
344
+ <param name="object">The object to be validated</param>
345
+ <exception cref="T:Xunit.Sdk.NotNullException">Thrown when the object is not null</exception>
346
+ </member>
347
+ <member name="M:Xunit.Assert.NotSame(System.Object,System.Object)">
348
+ <summary>
349
+ Verifies that two objects are not the same instance.
350
+ </summary>
351
+ <param name="expected">The expected object instance</param>
352
+ <param name="actual">The actual object instance</param>
353
+ <exception cref="T:Xunit.Sdk.NotSameException">Thrown when the objects are the same instance</exception>
354
+ </member>
355
+ <member name="M:Xunit.Assert.Null(System.Object)">
356
+ <summary>
357
+ Verifies that an object reference is null.
358
+ </summary>
359
+ <param name="object">The object to be inspected</param>
360
+ <exception cref="T:Xunit.Sdk.NullException">Thrown when the object reference is not null</exception>
361
+ </member>
362
+ <member name="M:Xunit.Assert.Same(System.Object,System.Object)">
363
+ <summary>
364
+ Verifies that two objects are the same instance.
365
+ </summary>
366
+ <param name="expected">The expected object instance</param>
367
+ <param name="actual">The actual object instance</param>
368
+ <exception cref="T:Xunit.Sdk.SameException">Thrown when the objects are not the same instance</exception>
369
+ </member>
370
+ <member name="M:Xunit.Assert.Single(System.Collections.IEnumerable)">
371
+ <summary>
372
+ Verifies that the given collection contains only a single
373
+ element of the given type.
374
+ </summary>
375
+ <param name="collection">The collection.</param>
376
+ <returns>The single item in the collection.</returns>
377
+ <exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
378
+ exactly one element.</exception>
379
+ </member>
380
+ <member name="M:Xunit.Assert.Single``1(System.Collections.Generic.IEnumerable{``0})">
381
+ <summary>
382
+ Verifies that the given collection contains only a single
383
+ element of the given type.
384
+ </summary>
385
+ <typeparam name="T">The collection type.</typeparam>
386
+ <param name="collection">The collection.</param>
387
+ <returns>The single item in the collection.</returns>
388
+ <exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
389
+ exactly one element.</exception>
390
+ </member>
391
+ <member name="M:Xunit.Assert.Single``1(System.Collections.Generic.IEnumerable{``0},System.Predicate{``0})">
392
+ <summary>
393
+ Verifies that the given collection contains only a single
394
+ element of the given type which matches the given predicate.
395
+ </summary>
396
+ <typeparam name="T">The collection type.</typeparam>
397
+ <param name="collection">The collection.</param>
398
+ <param name="predicate">The item matching predicate.</param>
399
+ <returns>The single item in the filtered collection.</returns>
400
+ <exception cref="T:Xunit.Sdk.SingleException">Thrown when the filtered collection does
401
+ not contain exactly one element.</exception>
402
+ </member>
403
+ <member name="M:Xunit.Assert.Throws``1(Xunit.Assert.ThrowsDelegate)">
404
+ <summary>
405
+ Verifies that the exact exception is thrown (and not a derived exception type).
406
+ </summary>
407
+ <typeparam name="T">The type of the exception expected to be thrown</typeparam>
408
+ <param name="testCode">A delegate to the code to be tested</param>
409
+ <returns>The exception that was thrown, when successful</returns>
410
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
411
+ </member>
412
+ <member name="M:Xunit.Assert.Throws``1(Xunit.Assert.ThrowsDelegateWithReturn)">
413
+ <summary>
414
+ Verifies that the exact exception is thrown (and not a derived exception type).
415
+ Generally used to test property accessors.
416
+ </summary>
417
+ <typeparam name="T">The type of the exception expected to be thrown</typeparam>
418
+ <param name="testCode">A delegate to the code to be tested</param>
419
+ <returns>The exception that was thrown, when successful</returns>
420
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
421
+ </member>
422
+ <member name="M:Xunit.Assert.Throws(System.Type,Xunit.Assert.ThrowsDelegate)">
423
+ <summary>
424
+ Verifies that the exact exception is thrown (and not a derived exception type).
425
+ </summary>
426
+ <param name="exceptionType">The type of the exception expected to be thrown</param>
427
+ <param name="testCode">A delegate to the code to be tested</param>
428
+ <returns>The exception that was thrown, when successful</returns>
429
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
430
+ </member>
431
+ <member name="M:Xunit.Assert.Throws(System.Type,Xunit.Assert.ThrowsDelegateWithReturn)">
432
+ <summary>
433
+ Verifies that the exact exception is thrown (and not a derived exception type).
434
+ Generally used to test property accessors.
435
+ </summary>
436
+ <param name="exceptionType">The type of the exception expected to be thrown</param>
437
+ <param name="testCode">A delegate to the code to be tested</param>
438
+ <returns>The exception that was thrown, when successful</returns>
439
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
440
+ </member>
441
+ <member name="M:Xunit.Assert.True(System.Boolean)">
442
+ <summary>
443
+ Verifies that an expression is true.
444
+ </summary>
445
+ <param name="condition">The condition to be inspected</param>
446
+ <exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
447
+ </member>
448
+ <member name="M:Xunit.Assert.True(System.Boolean,System.String)">
449
+ <summary>
450
+ Verifies that an expression is true.
451
+ </summary>
452
+ <param name="condition">The condition to be inspected</param>
453
+ <param name="userMessage">The message to be shown when the condition is false</param>
454
+ <exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
455
+ </member>
456
+ <member name="T:Xunit.Assert.ThrowsDelegate">
457
+ <summary>
458
+ Used by the Throws and DoesNotThrow methods.
459
+ </summary>
460
+ </member>
461
+ <member name="T:Xunit.Assert.ThrowsDelegateWithReturn">
462
+ <summary>
463
+ Used by the Throws and DoesNotThrow methods.
464
+ </summary>
465
+ </member>
466
+ <member name="T:Xunit.Sdk.ExceptionAndOutputCaptureCommand">
467
+ <summary>
468
+ This command sets up the necessary trace listeners and standard
469
+ output/error listeners to capture Assert/Debug.Trace failures,
470
+ output to stdout/stderr, and Assert/Debug.Write text. It also
471
+ captures any exceptions that are thrown and packages them as
472
+ FailedResults, including the possibility that the configuration
473
+ file is messed up (which is exposed when we attempt to manipulate
474
+ the trace listener list).
475
+ </summary>
476
+ </member>
477
+ <member name="T:Xunit.Sdk.DelegatingTestCommand">
478
+ <summary>
479
+ Base class used by commands which delegate to inner commands.
480
+ </summary>
481
+ </member>
482
+ <member name="T:Xunit.Sdk.ITestCommand">
483
+ <summary>
484
+ Interface which represents the ability to invoke of a test method.
485
+ </summary>
486
+ </member>
487
+ <member name="M:Xunit.Sdk.ITestCommand.Execute(System.Object)">
488
+ <summary>
489
+ Executes the test method.
490
+ </summary>
491
+ <param name="testClass">The instance of the test class</param>
492
+ <returns>Returns information about the test run</returns>
493
+ </member>
494
+ <member name="M:Xunit.Sdk.ITestCommand.ToStartXml">
495
+ <summary>
496
+ Creates the start XML to be sent to the callback when the test is about to start
497
+ running.
498
+ </summary>
499
+ <returns>Return the <see cref="T:System.Xml.XmlNode"/> of the start node, or null if the test
500
+ is known that it will not be running.</returns>
501
+ </member>
502
+ <member name="P:Xunit.Sdk.ITestCommand.DisplayName">
503
+ <summary>
504
+ Gets the display name of the test method.
505
+ </summary>
506
+ </member>
507
+ <member name="P:Xunit.Sdk.ITestCommand.ShouldCreateInstance">
508
+ <summary>
509
+ Determines if the test runner infrastructure should create a new instance of the
510
+ test class before running the test.
511
+ </summary>
512
+ </member>
513
+ <member name="P:Xunit.Sdk.ITestCommand.Timeout">
514
+ <summary>
515
+ Determines if the test should be limited to running a specific amount of time
516
+ before automatically failing.
517
+ </summary>
518
+ <returns>The timeout value, in milliseconds; if zero, the test will not have
519
+ a timeout.</returns>
520
+ </member>
521
+ <member name="M:Xunit.Sdk.DelegatingTestCommand.#ctor(Xunit.Sdk.ITestCommand)">
522
+ <summary>
523
+ Creates a new instance of the <see cref="T:Xunit.Sdk.DelegatingTestCommand"/> class.
524
+ </summary>
525
+ <param name="innerCommand">The inner command to delegate to.</param>
526
+ </member>
527
+ <member name="M:Xunit.Sdk.DelegatingTestCommand.Execute(System.Object)">
528
+ <inheritdoc/>
529
+ </member>
530
+ <member name="M:Xunit.Sdk.DelegatingTestCommand.ToStartXml">
531
+ <inheritdoc/>
532
+ </member>
533
+ <member name="P:Xunit.Sdk.DelegatingTestCommand.InnerCommand">
534
+ <inheritdoc/>
535
+ </member>
536
+ <member name="P:Xunit.Sdk.DelegatingTestCommand.DisplayName">
537
+ <inheritdoc/>
538
+ </member>
539
+ <member name="P:Xunit.Sdk.DelegatingTestCommand.ShouldCreateInstance">
540
+ <inheritdoc/>
541
+ </member>
542
+ <member name="P:Xunit.Sdk.DelegatingTestCommand.Timeout">
543
+ <inheritdoc/>
544
+ </member>
545
+ <member name="M:Xunit.Sdk.ExceptionAndOutputCaptureCommand.#ctor(Xunit.Sdk.ITestCommand,Xunit.Sdk.IMethodInfo)">
546
+ <summary>
547
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.ExceptionAndOutputCaptureCommand"/>
548
+ class.
549
+ </summary>
550
+ <param name="innerCommand">The command that will be wrapped.</param>
551
+ <param name="method">The test method.</param>
552
+ </member>
553
+ <member name="M:Xunit.Sdk.ExceptionAndOutputCaptureCommand.Execute(System.Object)">
554
+ <inheritdoc/>
555
+ </member>
556
+ <member name="T:Xunit.Sdk.FactCommand">
557
+ <summary>
558
+ Represents an implementation of <see cref="T:Xunit.Sdk.ITestCommand"/> to be used with
559
+ tests which are decorated with the <see cref="T:Xunit.FactAttribute"/>.
560
+ </summary>
561
+ </member>
562
+ <member name="T:Xunit.Sdk.TestCommand">
563
+ <summary>
564
+ Represents an xUnit.net test command.
565
+ </summary>
566
+ </member>
567
+ <member name="F:Xunit.Sdk.TestCommand.testMethod">
568
+ <summary>
569
+ The method under test.
570
+ </summary>
571
+ </member>
572
+ <member name="M:Xunit.Sdk.TestCommand.#ctor(Xunit.Sdk.IMethodInfo,System.String,System.Int32)">
573
+ <summary>
574
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.TestCommand"/> class.
575
+ </summary>
576
+ <param name="method">The method under test.</param>
577
+ <param name="displayName">The display name of the test.</param>
578
+ <param name="timeout">The timeout, in milliseconds.</param>
579
+ </member>
580
+ <member name="M:Xunit.Sdk.TestCommand.Execute(System.Object)">
581
+ <inheritdoc/>
582
+ </member>
583
+ <member name="M:Xunit.Sdk.TestCommand.ToStartXml">
584
+ <inheritdoc/>
585
+ </member>
586
+ <member name="P:Xunit.Sdk.TestCommand.DisplayName">
587
+ <inheritdoc/>
588
+ </member>
589
+ <member name="P:Xunit.Sdk.TestCommand.MethodName">
590
+ <summary>
591
+ Gets the name of the method under test.
592
+ </summary>
593
+ </member>
594
+ <member name="P:Xunit.Sdk.TestCommand.ShouldCreateInstance">
595
+ <inheritdoc/>
596
+ </member>
597
+ <member name="P:Xunit.Sdk.TestCommand.Timeout">
598
+ <inheritdoc/>
599
+ </member>
600
+ <member name="P:Xunit.Sdk.TestCommand.TypeName">
601
+ <summary>
602
+ Gets the name of the type under test.
603
+ </summary>
604
+ </member>
605
+ <member name="M:Xunit.Sdk.FactCommand.#ctor(Xunit.Sdk.IMethodInfo)">
606
+ <summary>
607
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.FactCommand"/> class.
608
+ </summary>
609
+ <param name="method">The test method.</param>
610
+ </member>
611
+ <member name="M:Xunit.Sdk.FactCommand.Execute(System.Object)">
612
+ <inheritdoc/>
613
+ </member>
614
+ <member name="T:Xunit.Sdk.AssertActualExpectedException">
615
+ <summary>
616
+ Base class for exceptions that have actual and expected values
617
+ </summary>
618
+ </member>
619
+ <member name="T:Xunit.Sdk.AssertException">
620
+ <summary>
621
+ The base assert exception class
622
+ </summary>
623
+ </member>
624
+ <member name="M:Xunit.Sdk.AssertException.#ctor">
625
+ <summary>
626
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
627
+ </summary>
628
+ </member>
629
+ <member name="M:Xunit.Sdk.AssertException.#ctor(System.String)">
630
+ <summary>
631
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
632
+ </summary>
633
+ <param name="userMessage">The user message to be displayed</param>
634
+ </member>
635
+ <member name="M:Xunit.Sdk.AssertException.#ctor(System.String,System.Exception)">
636
+ <summary>
637
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
638
+ </summary>
639
+ <param name="userMessage">The user message to be displayed</param>
640
+ <param name="innerException">The inner exception</param>
641
+ </member>
642
+ <member name="M:Xunit.Sdk.AssertException.#ctor(System.String,System.String)">
643
+ <summary>
644
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
645
+ </summary>
646
+ <param name="userMessage">The user message to be displayed</param>
647
+ <param name="stackTrace">The stack trace to be displayed</param>
648
+ </member>
649
+ <member name="M:Xunit.Sdk.AssertException.FilterStackTrace(System.String)">
650
+ <summary>
651
+ Filters the stack trace to remove all lines that occur within the testing framework.
652
+ </summary>
653
+ <param name="stackTrace">The original stack trace</param>
654
+ <returns>The filtered stack trace</returns>
655
+ </member>
656
+ <member name="P:Xunit.Sdk.AssertException.StackTrace">
657
+ <summary>
658
+ Gets a string representation of the frames on the call stack at the time the current exception was thrown.
659
+ </summary>
660
+ <returns>A string that describes the contents of the call stack, with the most recent method call appearing first.</returns>
661
+ </member>
662
+ <member name="P:Xunit.Sdk.AssertException.UserMessage">
663
+ <summary>
664
+ Gets the user message
665
+ </summary>
666
+ </member>
667
+ <member name="M:Xunit.Sdk.AssertActualExpectedException.#ctor(System.Object,System.Object,System.String)">
668
+ <summary>
669
+ Creates a new instance of the <see href="AssertActualExpectedException"/> class.
670
+ </summary>
671
+ <param name="expected">The expected value</param>
672
+ <param name="actual">The actual value</param>
673
+ <param name="userMessage">The user message to be shown</param>
674
+ </member>
675
+ <member name="M:Xunit.Sdk.AssertActualExpectedException.#ctor(System.Object,System.Object,System.String,System.Boolean)">
676
+ <summary>
677
+ Creates a new instance of the <see href="AssertActualExpectedException"/> class.
678
+ </summary>
679
+ <param name="expected">The expected value</param>
680
+ <param name="actual">The actual value</param>
681
+ <param name="userMessage">The user message to be shown</param>
682
+ <param name="skipPositionCheck">Set to true to skip the check for difference position</param>
683
+ </member>
684
+ <member name="P:Xunit.Sdk.AssertActualExpectedException.Actual">
685
+ <summary>
686
+ Gets the actual value.
687
+ </summary>
688
+ </member>
689
+ <member name="P:Xunit.Sdk.AssertActualExpectedException.Expected">
690
+ <summary>
691
+ Gets the expected value.
692
+ </summary>
693
+ </member>
694
+ <member name="P:Xunit.Sdk.AssertActualExpectedException.Message">
695
+ <summary>
696
+ Gets a message that describes the current exception. Includes the expected and actual values.
697
+ </summary>
698
+ <returns>The error message that explains the reason for the exception, or an empty string("").</returns>
699
+ <filterpriority>1</filterpriority>
700
+ </member>
701
+ <member name="T:Xunit.Sdk.ContainsException">
702
+ <summary>
703
+ Exception thrown when a collection unexpectedly does not contain the expected value.
704
+ </summary>
705
+ </member>
706
+ <member name="M:Xunit.Sdk.ContainsException.#ctor(System.Object)">
707
+ <summary>
708
+ Creates a new instance of the <see cref="T:Xunit.Sdk.ContainsException"/> class.
709
+ </summary>
710
+ <param name="expected">The expected object value</param>
711
+ </member>
712
+ <member name="T:Xunit.Sdk.ParamterCountMismatchException">
713
+ <summary>
714
+ Exception to be thrown from <see cref="M:Xunit.Sdk.IMethodInfo.Invoke(System.Object,System.Object[])"/> when the number of
715
+ parameter values does not the test method signature.
716
+ </summary>
717
+ </member>
718
+ <member name="M:Xunit.Sdk.ParamterCountMismatchException.#ctor">
719
+ <summary/>
720
+ </member>
721
+ <member name="M:Xunit.Sdk.ParamterCountMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
722
+ <summary/>
723
+ </member>
724
+ <member name="T:Xunit.Sdk.SingleException">
725
+ <summary>
726
+ Exception thrown when the collection did not contain exactly one element.
727
+ </summary>
728
+ </member>
729
+ <member name="M:Xunit.Sdk.SingleException.#ctor(System.Int32)">
730
+ <summary>
731
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.SingleException"/> class.
732
+ </summary>
733
+ <param name="count">The numbers of items in the collection.</param>
734
+ </member>
735
+ <member name="T:Xunit.Sdk.Executor">
736
+ <summary>
737
+ Internal class used for version-resilient test runners. DO NOT CALL DIRECTLY.
738
+ Version-resilient runners should link against xunit.runner.utility.dll and use
739
+ ExecutorWrapper instead.
740
+ </summary>
741
+ </member>
742
+ <member name="M:Xunit.Sdk.Executor.#ctor(System.String)">
743
+ <summary/>
744
+ </member>
745
+ <member name="M:Xunit.Sdk.Executor.InitializeLifetimeService">
746
+ <summary/>
747
+ </member>
748
+ <member name="T:Xunit.Sdk.Executor.AssemblyTestCount">
749
+ <summary/>
750
+ </member>
751
+ <member name="M:Xunit.Sdk.Executor.AssemblyTestCount.#ctor(Xunit.Sdk.Executor,System.Object)">
752
+ <summary/>
753
+ </member>
754
+ <member name="M:Xunit.Sdk.Executor.AssemblyTestCount.InitializeLifetimeService">
755
+ <summary/>
756
+ </member>
757
+ <member name="T:Xunit.Sdk.Executor.EnumerateTests">
758
+ <summary/>
759
+ </member>
760
+ <member name="M:Xunit.Sdk.Executor.EnumerateTests.#ctor(Xunit.Sdk.Executor,System.Object)">
761
+ <summary/>
762
+ </member>
763
+ <member name="M:Xunit.Sdk.Executor.EnumerateTests.InitializeLifetimeService">
764
+ <summary/>
765
+ </member>
766
+ <member name="T:Xunit.Sdk.Executor.RunAssembly">
767
+ <summary/>
768
+ </member>
769
+ <member name="M:Xunit.Sdk.Executor.RunAssembly.#ctor(Xunit.Sdk.Executor,System.Object)">
770
+ <summary/>
771
+ </member>
772
+ <member name="M:Xunit.Sdk.Executor.RunAssembly.InitializeLifetimeService">
773
+ <summary/>
774
+ </member>
775
+ <member name="T:Xunit.Sdk.Executor.RunClass">
776
+ <summary/>
777
+ </member>
778
+ <member name="M:Xunit.Sdk.Executor.RunClass.#ctor(Xunit.Sdk.Executor,System.String,System.Object)">
779
+ <summary/>
780
+ </member>
781
+ <member name="M:Xunit.Sdk.Executor.RunClass.InitializeLifetimeService">
782
+ <summary/>
783
+ </member>
784
+ <member name="T:Xunit.Sdk.Executor.RunTest">
785
+ <summary/>
786
+ </member>
787
+ <member name="M:Xunit.Sdk.Executor.RunTest.#ctor(Xunit.Sdk.Executor,System.String,System.String,System.Object)">
788
+ <summary/>
789
+ </member>
790
+ <member name="M:Xunit.Sdk.Executor.RunTest.InitializeLifetimeService">
791
+ <summary/>
792
+ </member>
793
+ <member name="T:Xunit.Sdk.Executor.RunTests">
794
+ <summary/>
795
+ </member>
796
+ <member name="M:Xunit.Sdk.Executor.RunTests.#ctor(Xunit.Sdk.Executor,System.String,System.Collections.Generic.List{System.String},System.Object)">
797
+ <summary/>
798
+ </member>
799
+ <member name="M:Xunit.Sdk.Executor.RunTests.InitializeLifetimeService">
800
+ <summary/>
801
+ </member>
802
+ <member name="T:Xunit.Sdk.IsAssignableFromException">
803
+ <summary>
804
+ Exception thrown when the value is unexpectedly not of the given type or a derived type.
805
+ </summary>
806
+ </member>
807
+ <member name="M:Xunit.Sdk.IsAssignableFromException.#ctor(System.Type,System.Object)">
808
+ <summary>
809
+ Creates a new instance of the <see cref="T:Xunit.Sdk.IsTypeException"/> class.
810
+ </summary>
811
+ <param name="expected">The expected type</param>
812
+ <param name="actual">The actual object value</param>
813
+ </member>
814
+ <member name="T:Xunit.Record">
815
+ <summary>
816
+ Allows the user to record actions for a test.
817
+ </summary>
818
+ </member>
819
+ <member name="M:Xunit.Record.Exception(Xunit.Assert.ThrowsDelegate)">
820
+ <summary>
821
+ Records any exception which is thrown by the given code.
822
+ </summary>
823
+ <param name="code">The code which may thrown an exception.</param>
824
+ <returns>Returns the exception that was thrown by the code; null, otherwise.</returns>
825
+ </member>
826
+ <member name="M:Xunit.Record.Exception(Xunit.Assert.ThrowsDelegateWithReturn)">
827
+ <summary>
828
+ Records any exception which is thrown by the given code that has
829
+ a return value. Generally used for testing property accessors.
830
+ </summary>
831
+ <param name="code">The code which may thrown an exception.</param>
832
+ <returns>Returns the exception that was thrown by the code; null, otherwise.</returns>
833
+ </member>
834
+ <member name="T:Xunit.Sdk.AfterTestException">
835
+ <summary>
836
+ Exception that is thrown when one or more exceptions are thrown from
837
+ the After method of a <see cref="T:Xunit.BeforeAfterTestAttribute"/>.
838
+ </summary>
839
+ </member>
840
+ <member name="M:Xunit.Sdk.AfterTestException.#ctor(System.Collections.Generic.IEnumerable{System.Exception})">
841
+ <summary>
842
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.AfterTestException"/> class.
843
+ </summary>
844
+ <param name="exceptions">The exceptions.</param>
845
+ </member>
846
+ <member name="M:Xunit.Sdk.AfterTestException.#ctor(System.Exception[])">
847
+ <summary>
848
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.AfterTestException"/> class.
849
+ </summary>
850
+ <param name="exceptions">The exceptions.</param>
851
+ </member>
852
+ <member name="P:Xunit.Sdk.AfterTestException.AfterExceptions">
853
+ <summary>
854
+ Gets the list of exceptions thrown in the After method.
855
+ </summary>
856
+ </member>
857
+ <member name="P:Xunit.Sdk.AfterTestException.Message">
858
+ <summary>
859
+ Gets a message that describes the current exception.
860
+ </summary>
861
+ </member>
862
+ <member name="P:Xunit.Sdk.AfterTestException.StackTrace">
863
+ <summary>
864
+ Gets a string representation of the frames on the call stack at the time the current exception was thrown.
865
+ </summary>
866
+ </member>
867
+ <member name="T:Xunit.Sdk.BeforeAfterCommand">
868
+ <summary>
869
+ Implementation of <see cref="T:Xunit.Sdk.ITestCommand"/> which executes the
870
+ <see cref="T:Xunit.BeforeAfterTestAttribute"/> instances attached to a test method.
871
+ </summary>
872
+ </member>
873
+ <member name="M:Xunit.Sdk.BeforeAfterCommand.#ctor(Xunit.Sdk.ITestCommand,System.Reflection.MethodInfo)">
874
+ <summary>
875
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.BeforeAfterCommand"/> class.
876
+ </summary>
877
+ <param name="innerCommand">The inner command.</param>
878
+ <param name="testMethod">The method.</param>
879
+ </member>
880
+ <member name="M:Xunit.Sdk.BeforeAfterCommand.Execute(System.Object)">
881
+ <summary>
882
+ Executes the test method.
883
+ </summary>
884
+ <param name="testClass">The instance of the test class</param>
885
+ <returns>Returns information about the test run</returns>
886
+ </member>
887
+ <member name="T:Xunit.Sdk.ExecutorCallback">
888
+ <summary>
889
+ This class supports the xUnit.net infrastructure and is not intended to be used
890
+ directly from your code.
891
+ </summary>
892
+ </member>
893
+ <member name="M:Xunit.Sdk.ExecutorCallback.Wrap(System.Object)">
894
+ <summary>
895
+ This API supports the xUnit.net infrastructure and is not intended to be used
896
+ directly from your code.
897
+ </summary>
898
+ </member>
899
+ <member name="M:Xunit.Sdk.ExecutorCallback.Notify(System.String)">
900
+ <summary>
901
+ This API supports the xUnit.net infrastructure and is not intended to be used
902
+ directly from your code.
903
+ </summary>
904
+ </member>
905
+ <member name="M:Xunit.Sdk.ExecutorCallback.ShouldContinue">
906
+ <summary>
907
+ This API supports the xUnit.net infrastructure and is not intended to be used
908
+ directly from your code.
909
+ </summary>
910
+ </member>
911
+ <member name="T:Xunit.Sdk.Guard">
912
+ <summary>
913
+ Guard class, used for guard clauses and argument validation
914
+ </summary>
915
+ </member>
916
+ <member name="M:Xunit.Sdk.Guard.ArgumentNotNull(System.String,System.Object)">
917
+ <summary/>
918
+ </member>
919
+ <member name="M:Xunit.Sdk.Guard.ArgumentNotNullOrEmpty(System.String,System.Collections.IEnumerable)">
920
+ <summary/>
921
+ </member>
922
+ <member name="M:Xunit.Sdk.Guard.ArgumentValid(System.String,System.String,System.Boolean)">
923
+ <summary/>
924
+ </member>
925
+ <member name="T:Xunit.Sdk.TestResult">
926
+ <summary>
927
+ Base class which contains XML manipulation helper methods
928
+ </summary>
929
+ </member>
930
+ <member name="T:Xunit.Sdk.ITestResult">
931
+ <summary>
932
+ Interface that represents a single test result.
933
+ </summary>
934
+ </member>
935
+ <member name="M:Xunit.Sdk.ITestResult.ToXml(System.Xml.XmlNode)">
936
+ <summary>
937
+ Converts the test result into XML that is consumed by the test runners.
938
+ </summary>
939
+ <param name="parentNode">The parent node.</param>
940
+ <returns>The newly created XML node.</returns>
941
+ </member>
942
+ <member name="P:Xunit.Sdk.ITestResult.ExecutionTime">
943
+ <summary>
944
+ The amount of time spent in execution
945
+ </summary>
946
+ </member>
947
+ <member name="M:Xunit.Sdk.TestResult.AddTime(System.Xml.XmlNode)">
948
+ <summary>
949
+ Adds the test execution time to the XML node.
950
+ </summary>
951
+ <param name="testNode">The XML node.</param>
952
+ </member>
953
+ <member name="M:Xunit.Sdk.TestResult.ToXml(System.Xml.XmlNode)">
954
+ <inheritdoc/>
955
+ </member>
956
+ <member name="P:Xunit.Sdk.TestResult.ExecutionTime">
957
+ <inheritdoc/>
958
+ </member>
959
+ <member name="T:Xunit.Sdk.ExceptionUtility">
960
+ <summary>
961
+ Utility methods for dealing with exceptions.
962
+ </summary>
963
+ </member>
964
+ <member name="M:Xunit.Sdk.ExceptionUtility.GetMessage(System.Exception)">
965
+ <summary>
966
+ Gets the message for the exception, including any inner exception messages.
967
+ </summary>
968
+ <param name="ex">The exception</param>
969
+ <returns>The formatted message</returns>
970
+ </member>
971
+ <member name="M:Xunit.Sdk.ExceptionUtility.GetStackTrace(System.Exception)">
972
+ <summary>
973
+ Gets the stack trace for the exception, including any inner exceptions.
974
+ </summary>
975
+ <param name="ex">The exception</param>
976
+ <returns>The formatted stack trace</returns>
977
+ </member>
978
+ <member name="M:Xunit.Sdk.ExceptionUtility.RethrowWithNoStackTraceLoss(System.Exception)">
979
+ <summary>
980
+ Rethrows an exception object without losing the existing stack trace information
981
+ </summary>
982
+ <param name="ex">The exception to re-throw.</param>
983
+ <remarks>
984
+ For more information on this technique, see
985
+ http://www.dotnetjunkies.com/WebLog/chris.taylor/archive/2004/03/03/8353.aspx
986
+ </remarks>
987
+ </member>
988
+ <member name="T:Xunit.Sdk.MultiValueDictionary`2">
989
+ <summary>
990
+ A dictionary which contains multiple unique values for each key.
991
+ </summary>
992
+ <typeparam name="TKey">The type of the key.</typeparam>
993
+ <typeparam name="TValue">The type of the value.</typeparam>
994
+ </member>
995
+ <member name="M:Xunit.Sdk.MultiValueDictionary`2.AddValue(`0,`1)">
996
+ <summary>
997
+ Adds the value for the given key. If the key does not exist in the
998
+ dictionary yet, it will add it.
999
+ </summary>
1000
+ <param name="key">The key.</param>
1001
+ <param name="value">The value.</param>
1002
+ </member>
1003
+ <member name="M:Xunit.Sdk.MultiValueDictionary`2.Clear">
1004
+ <summary>
1005
+ Removes all keys and values from the dictionary.
1006
+ </summary>
1007
+ </member>
1008
+ <member name="M:Xunit.Sdk.MultiValueDictionary`2.Contains(`0,`1)">
1009
+ <summary>
1010
+ Determines whether the dictionary contains to specified key and value.
1011
+ </summary>
1012
+ <param name="key">The key.</param>
1013
+ <param name="value">The value.</param>
1014
+ </member>
1015
+ <member name="M:Xunit.Sdk.MultiValueDictionary`2.ForEach(Xunit.Sdk.MultiValueDictionary{`0,`1}.ForEachDelegate)">
1016
+ <summary>
1017
+ Calls the delegate once for each key/value pair in the dictionary.
1018
+ </summary>
1019
+ </member>
1020
+ <member name="M:Xunit.Sdk.MultiValueDictionary`2.Remove(`0)">
1021
+ <summary>
1022
+ Removes the given key and all of its values.
1023
+ </summary>
1024
+ </member>
1025
+ <member name="M:Xunit.Sdk.MultiValueDictionary`2.RemoveValue(`0,`1)">
1026
+ <summary>
1027
+ Removes the given value from the given key. If this was the
1028
+ last value for the key, then the key is removed as well.
1029
+ </summary>
1030
+ <param name="key">The key.</param>
1031
+ <param name="value">The value.</param>
1032
+ </member>
1033
+ <member name="P:Xunit.Sdk.MultiValueDictionary`2.Item(`0)">
1034
+ <summary>
1035
+ Gets the values for the given key.
1036
+ </summary>
1037
+ </member>
1038
+ <member name="P:Xunit.Sdk.MultiValueDictionary`2.Count">
1039
+ <summary>
1040
+ Gets the count of the keys in the dictionary.
1041
+ </summary>
1042
+ </member>
1043
+ <member name="P:Xunit.Sdk.MultiValueDictionary`2.Keys">
1044
+ <summary>
1045
+ Gets the keys.
1046
+ </summary>
1047
+ </member>
1048
+ <member name="T:Xunit.Sdk.MultiValueDictionary`2.ForEachDelegate">
1049
+ <summary/>
1050
+ </member>
1051
+ <member name="T:Xunit.Sdk.XmlUtility">
1052
+ <summary>
1053
+ XML utility methods
1054
+ </summary>
1055
+ </member>
1056
+ <member name="M:Xunit.Sdk.XmlUtility.AddAttribute(System.Xml.XmlNode,System.String,System.Object)">
1057
+ <summary>
1058
+ Adds an attribute to an XML node.
1059
+ </summary>
1060
+ <param name="node">The XML node.</param>
1061
+ <param name="name">The attribute name.</param>
1062
+ <param name="value">The attribute value.</param>
1063
+ </member>
1064
+ <member name="M:Xunit.Sdk.XmlUtility.AddElement(System.Xml.XmlNode,System.String)">
1065
+ <summary>
1066
+ Adds a child element to an XML node.
1067
+ </summary>
1068
+ <param name="parentNode">The parent XML node.</param>
1069
+ <param name="name">The child element name.</param>
1070
+ <returns>The new child XML element.</returns>
1071
+ </member>
1072
+ <member name="T:Xunit.Sdk.TraceAssertException">
1073
+ <summary>
1074
+ Exception that is thrown when a call to Debug.Assert() fails.
1075
+ </summary>
1076
+ </member>
1077
+ <member name="M:Xunit.Sdk.TraceAssertException.#ctor(System.String)">
1078
+ <summary>
1079
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TraceAssertException"/> class.
1080
+ </summary>
1081
+ <param name="assertMessage">The original assert message</param>
1082
+ </member>
1083
+ <member name="M:Xunit.Sdk.TraceAssertException.#ctor(System.String,System.String)">
1084
+ <summary>
1085
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TraceAssertException"/> class.
1086
+ </summary>
1087
+ <param name="assertMessage">The original assert message</param>
1088
+ <param name="assertDetailedMessage">The original assert detailed message</param>
1089
+ </member>
1090
+ <member name="P:Xunit.Sdk.TraceAssertException.AssertDetailedMessage">
1091
+ <summary>
1092
+ Gets the original assert detailed message.
1093
+ </summary>
1094
+ </member>
1095
+ <member name="P:Xunit.Sdk.TraceAssertException.AssertMessage">
1096
+ <summary>
1097
+ Gets the original assert message.
1098
+ </summary>
1099
+ </member>
1100
+ <member name="P:Xunit.Sdk.TraceAssertException.Message">
1101
+ <summary>
1102
+ Gets a message that describes the current exception.
1103
+ </summary>
1104
+ </member>
1105
+ <member name="T:Xunit.Sdk.DoesNotContainException">
1106
+ <summary>
1107
+ Exception thrown when a collection unexpectedly contains the expected value.
1108
+ </summary>
1109
+ </member>
1110
+ <member name="M:Xunit.Sdk.DoesNotContainException.#ctor(System.Object)">
1111
+ <summary>
1112
+ Creates a new instance of the <see cref="T:Xunit.Sdk.DoesNotContainException"/> class.
1113
+ </summary>
1114
+ <param name="expected">The expected object value</param>
1115
+ </member>
1116
+ <member name="T:Xunit.Sdk.DoesNotThrowException">
1117
+ <summary>
1118
+ Exception thrown when code unexpectedly throws an exception.
1119
+ </summary>
1120
+ </member>
1121
+ <member name="M:Xunit.Sdk.DoesNotThrowException.#ctor(System.Exception)">
1122
+ <summary>
1123
+ Creates a new instance of the <see cref="T:Xunit.Sdk.DoesNotThrowException"/> class.
1124
+ </summary>
1125
+ <param name="actual">Actual exception</param>
1126
+ </member>
1127
+ <member name="P:Xunit.Sdk.DoesNotThrowException.StackTrace">
1128
+ <summary>
1129
+ Gets a string representation of the frames on the call stack at the time the current exception was thrown.
1130
+ </summary>
1131
+ <returns>A string that describes the contents of the call stack, with the most recent method call appearing first.</returns>
1132
+ </member>
1133
+ <member name="T:Xunit.Sdk.EmptyException">
1134
+ <summary>
1135
+ Exception thrown when a collection is unexpectedly not empty.
1136
+ </summary>
1137
+ </member>
1138
+ <member name="M:Xunit.Sdk.EmptyException.#ctor">
1139
+ <summary>
1140
+ Creates a new instance of the <see cref="T:Xunit.Sdk.EmptyException"/> class.
1141
+ </summary>
1142
+ </member>
1143
+ <member name="T:Xunit.Sdk.EqualException">
1144
+ <summary>
1145
+ Exception thrown when two values are unexpectedly not equal.
1146
+ </summary>
1147
+ </member>
1148
+ <member name="M:Xunit.Sdk.EqualException.#ctor(System.Object,System.Object)">
1149
+ <summary>
1150
+ Creates a new instance of the <see cref="T:Xunit.Sdk.EqualException"/> class.
1151
+ </summary>
1152
+ <param name="expected">The expected object value</param>
1153
+ <param name="actual">The actual object value</param>
1154
+ </member>
1155
+ <member name="T:Xunit.Sdk.FalseException">
1156
+ <summary>
1157
+ Exception thrown when a value is unexpectedly true.
1158
+ </summary>
1159
+ </member>
1160
+ <member name="M:Xunit.Sdk.FalseException.#ctor(System.String)">
1161
+ <summary>
1162
+ Creates a new instance of the <see cref="T:Xunit.Sdk.FalseException"/> class.
1163
+ </summary>
1164
+ <param name="userMessage">The user message to be display, or null for the default message</param>
1165
+ </member>
1166
+ <member name="T:Xunit.Sdk.InRangeException">
1167
+ <summary>
1168
+ Exception thrown when a value is unexpectedly not in the given range.
1169
+ </summary>
1170
+ </member>
1171
+ <member name="M:Xunit.Sdk.InRangeException.#ctor(System.Object,System.Object,System.Object)">
1172
+ <summary>
1173
+ Creates a new instance of the <see cref="T:Xunit.Sdk.InRangeException"/> class.
1174
+ </summary>
1175
+ <param name="actual">The actual object value</param>
1176
+ <param name="low">The low value of the range</param>
1177
+ <param name="high">The high value of the range</param>
1178
+ </member>
1179
+ <member name="P:Xunit.Sdk.InRangeException.Actual">
1180
+ <summary>
1181
+ Gets the actual object value
1182
+ </summary>
1183
+ </member>
1184
+ <member name="P:Xunit.Sdk.InRangeException.High">
1185
+ <summary>
1186
+ Gets the high value of the range
1187
+ </summary>
1188
+ </member>
1189
+ <member name="P:Xunit.Sdk.InRangeException.Low">
1190
+ <summary>
1191
+ Gets the low value of the range
1192
+ </summary>
1193
+ </member>
1194
+ <member name="P:Xunit.Sdk.InRangeException.Message">
1195
+ <summary>
1196
+ Gets a message that describes the current exception.
1197
+ </summary>
1198
+ <returns>The error message that explains the reason for the exception, or an empty string("").</returns>
1199
+ </member>
1200
+ <member name="T:Xunit.Sdk.IsNotTypeException">
1201
+ <summary>
1202
+ Exception thrown when the value is unexpectedly of the exact given type.
1203
+ </summary>
1204
+ </member>
1205
+ <member name="M:Xunit.Sdk.IsNotTypeException.#ctor(System.Type,System.Object)">
1206
+ <summary>
1207
+ Creates a new instance of the <see cref="T:Xunit.Sdk.IsNotTypeException"/> class.
1208
+ </summary>
1209
+ <param name="expected">The expected type</param>
1210
+ <param name="actual">The actual object value</param>
1211
+ </member>
1212
+ <member name="T:Xunit.Sdk.IsTypeException">
1213
+ <summary>
1214
+ Exception thrown when the value is unexpectedly not of the exact given type.
1215
+ </summary>
1216
+ </member>
1217
+ <member name="M:Xunit.Sdk.IsTypeException.#ctor(System.Type,System.Object)">
1218
+ <summary>
1219
+ Creates a new instance of the <see cref="T:Xunit.Sdk.IsTypeException"/> class.
1220
+ </summary>
1221
+ <param name="expected">The expected type</param>
1222
+ <param name="actual">The actual object value</param>
1223
+ </member>
1224
+ <member name="T:Xunit.IUseFixture`1">
1225
+ <summary>
1226
+ Used to decorate xUnit.net test classes that utilize fixture classes.
1227
+ An instance of the fixture data is initialized just before the first
1228
+ test in the class is run, and if it implements IDisposable, is disposed
1229
+ after the last test in the class is run.
1230
+ </summary>
1231
+ <typeparam name="T">The type of the fixture</typeparam>
1232
+ </member>
1233
+ <member name="M:Xunit.IUseFixture`1.SetFixture(`0)">
1234
+ <summary>
1235
+ Called on the test class just before each test method is run,
1236
+ passing the fixture data so that it can be used for the test.
1237
+ All test runs share the same instance of fixture data.
1238
+ </summary>
1239
+ <param name="data">The fixture data</param>
1240
+ </member>
1241
+ <member name="T:Xunit.Sdk.NotInRangeException">
1242
+ <summary>
1243
+ Exception thrown when a value is unexpectedly in the given range.
1244
+ </summary>
1245
+ </member>
1246
+ <member name="M:Xunit.Sdk.NotInRangeException.#ctor(System.Object,System.Object,System.Object)">
1247
+ <summary>
1248
+ Creates a new instance of the <see cref="T:Xunit.Sdk.NotInRangeException"/> class.
1249
+ </summary>
1250
+ <param name="actual">The actual object value</param>
1251
+ <param name="low">The low value of the range</param>
1252
+ <param name="high">The high value of the range</param>
1253
+ </member>
1254
+ <member name="P:Xunit.Sdk.NotInRangeException.Actual">
1255
+ <summary>
1256
+ Gets the actual object value
1257
+ </summary>
1258
+ </member>
1259
+ <member name="P:Xunit.Sdk.NotInRangeException.High">
1260
+ <summary>
1261
+ Gets the high value of the range
1262
+ </summary>
1263
+ </member>
1264
+ <member name="P:Xunit.Sdk.NotInRangeException.Low">
1265
+ <summary>
1266
+ Gets the low value of the range
1267
+ </summary>
1268
+ </member>
1269
+ <member name="P:Xunit.Sdk.NotInRangeException.Message">
1270
+ <summary>
1271
+ Gets a message that describes the current exception.
1272
+ </summary>
1273
+ <returns>The error message that explains the reason for the exception, or an empty string("").</returns>
1274
+ </member>
1275
+ <member name="T:Xunit.BeforeAfterTestAttribute">
1276
+ <summary>
1277
+ Base attribute which indicates a test method interception (allows code to be run before and
1278
+ after the test is run).
1279
+ </summary>
1280
+ </member>
1281
+ <member name="M:Xunit.BeforeAfterTestAttribute.After(System.Reflection.MethodInfo)">
1282
+ <summary>
1283
+ This method is called after the test method is executed.
1284
+ </summary>
1285
+ <param name="methodUnderTest">The method under test</param>
1286
+ </member>
1287
+ <member name="M:Xunit.BeforeAfterTestAttribute.Before(System.Reflection.MethodInfo)">
1288
+ <summary>
1289
+ This method is called before the test method is executed.
1290
+ </summary>
1291
+ <param name="methodUnderTest">The method under test</param>
1292
+ </member>
1293
+ <member name="P:Xunit.BeforeAfterTestAttribute.TypeId">
1294
+ <inheritdoc/>
1295
+ </member>
1296
+ <member name="T:Xunit.Sdk.NotEmptyException">
1297
+ <summary>
1298
+ Exception thrown when a collection is unexpectedly empty.
1299
+ </summary>
1300
+ </member>
1301
+ <member name="M:Xunit.Sdk.NotEmptyException.#ctor">
1302
+ <summary>
1303
+ Creates a new instance of the <see cref="T:Xunit.Sdk.NotEmptyException"/> class.
1304
+ </summary>
1305
+ </member>
1306
+ <member name="T:Xunit.Sdk.NotEqualException">
1307
+ <summary>
1308
+ Exception thrown when two values are unexpectedly equal.
1309
+ </summary>
1310
+ </member>
1311
+ <member name="M:Xunit.Sdk.NotEqualException.#ctor">
1312
+ <summary>
1313
+ Creates a new instance of the <see cref="T:Xunit.Sdk.NotEqualException"/> class.
1314
+ </summary>
1315
+ </member>
1316
+ <member name="T:Xunit.Sdk.NotNullException">
1317
+ <summary>
1318
+ Exception thrown when an object is unexpectedly null.
1319
+ </summary>
1320
+ </member>
1321
+ <member name="M:Xunit.Sdk.NotNullException.#ctor">
1322
+ <summary>
1323
+ Creates a new instance of the <see cref="T:Xunit.Sdk.NotNullException"/> class.
1324
+ </summary>
1325
+ </member>
1326
+ <member name="T:Xunit.Sdk.NotSameException">
1327
+ <summary>
1328
+ Exception thrown when two values are unexpected the same instance.
1329
+ </summary>
1330
+ </member>
1331
+ <member name="M:Xunit.Sdk.NotSameException.#ctor">
1332
+ <summary>
1333
+ Creates a new instance of the <see cref="T:Xunit.Sdk.NotSameException"/> class.
1334
+ </summary>
1335
+ </member>
1336
+ <member name="T:Xunit.Sdk.NullException">
1337
+ <summary>
1338
+ Exception thrown when an object reference is unexpectedly not null.
1339
+ </summary>
1340
+ </member>
1341
+ <member name="M:Xunit.Sdk.NullException.#ctor(System.Object)">
1342
+ <summary>
1343
+ Creates a new instance of the <see cref="T:Xunit.Sdk.NullException"/> class.
1344
+ </summary>
1345
+ <param name="actual"></param>
1346
+ </member>
1347
+ <member name="T:Xunit.Sdk.LifetimeCommand">
1348
+ <summary>
1349
+ Command that automatically creates the instance of the test class
1350
+ and disposes it (if it implements <see cref="T:System.IDisposable"/>).
1351
+ </summary>
1352
+ </member>
1353
+ <member name="M:Xunit.Sdk.LifetimeCommand.#ctor(Xunit.Sdk.ITestCommand,Xunit.Sdk.IMethodInfo)">
1354
+ <summary>
1355
+ Creates a new instance of the <see cref="T:Xunit.Sdk.LifetimeCommand"/> object.
1356
+ </summary>
1357
+ <param name="innerCommand">The command that is bring wrapped</param>
1358
+ <param name="method">The method under test</param>
1359
+ </member>
1360
+ <member name="M:Xunit.Sdk.LifetimeCommand.Execute(System.Object)">
1361
+ <summary>
1362
+ Executes the test method. Creates a new instance of the class
1363
+ under tests and passes it to the inner command. Also catches
1364
+ any exceptions and converts them into <see cref="T:Xunit.Sdk.FailedResult"/>s.
1365
+ </summary>
1366
+ <param name="testClass">The instance of the test class</param>
1367
+ <returns>Returns information about the test run</returns>
1368
+ </member>
1369
+ <member name="T:Xunit.Sdk.FixtureCommand">
1370
+ <summary>
1371
+ Command used to wrap a <see cref="T:Xunit.Sdk.ITestCommand"/> which has associated
1372
+ fixture data.
1373
+ </summary>
1374
+ </member>
1375
+ <member name="M:Xunit.Sdk.FixtureCommand.#ctor(Xunit.Sdk.ITestCommand,System.Collections.Generic.Dictionary{System.Reflection.MethodInfo,System.Object})">
1376
+ <summary>
1377
+ Creates a new instance of the <see cref="T:Xunit.Sdk.FixtureCommand"/> class.
1378
+ </summary>
1379
+ <param name="innerCommand">The inner command</param>
1380
+ <param name="fixtures">The fixtures to be set on the test class</param>
1381
+ </member>
1382
+ <member name="M:Xunit.Sdk.FixtureCommand.Execute(System.Object)">
1383
+ <summary>
1384
+ Sets the fixtures on the test class by calling SetFixture, then
1385
+ calls the inner command.
1386
+ </summary>
1387
+ <param name="testClass">The instance of the test class</param>
1388
+ <returns>Returns information about the test run</returns>
1389
+ </member>
1390
+ <member name="T:Xunit.Sdk.TestTimer">
1391
+ <summary>
1392
+ A timer class used to figure out how long tests take to run. On most .NET implementations
1393
+ this will use the <see cref="T:System.Diagnostics.Stopwatch"/> class because it's a high
1394
+ resolution timer; however, on Silverlight/CoreCLR, it will use <see cref="T:System.DateTime"/>
1395
+ (which will provide lower resolution results).
1396
+ </summary>
1397
+ </member>
1398
+ <member name="M:Xunit.Sdk.TestTimer.#ctor">
1399
+ <summary>
1400
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TestTimer"/> class.
1401
+ </summary>
1402
+ </member>
1403
+ <member name="M:Xunit.Sdk.TestTimer.Start">
1404
+ <summary>
1405
+ Starts timing.
1406
+ </summary>
1407
+ </member>
1408
+ <member name="M:Xunit.Sdk.TestTimer.Stop">
1409
+ <summary>
1410
+ Stops timing.
1411
+ </summary>
1412
+ </member>
1413
+ <member name="P:Xunit.Sdk.TestTimer.ElapsedMilliseconds">
1414
+ <summary>
1415
+ Gets how long the timer ran, in milliseconds. In order for this to be valid,
1416
+ both <see cref="M:Xunit.Sdk.TestTimer.Start"/> and <see cref="M:Xunit.Sdk.TestTimer.Stop"/> must have been called.
1417
+ </summary>
1418
+ </member>
1419
+ <member name="T:Xunit.TraitAttribute">
1420
+ <summary>
1421
+ Attribute used to decorate a test method with arbitrary name/value pairs ("traits").
1422
+ </summary>
1423
+ </member>
1424
+ <member name="M:Xunit.TraitAttribute.#ctor(System.String,System.String)">
1425
+ <summary>
1426
+ Creates a new instance of the <see cref="T:Xunit.TraitAttribute"/> class.
1427
+ </summary>
1428
+ <param name="name">The trait name</param>
1429
+ <param name="value">The trait value</param>
1430
+ </member>
1431
+ <member name="P:Xunit.TraitAttribute.Name">
1432
+ <summary>
1433
+ Gets the trait name.
1434
+ </summary>
1435
+ </member>
1436
+ <member name="P:Xunit.TraitAttribute.TypeId">
1437
+ <inheritdoc/>
1438
+ </member>
1439
+ <member name="P:Xunit.TraitAttribute.Value">
1440
+ <summary>
1441
+ Gets the trait value.
1442
+ </summary>
1443
+ </member>
1444
+ <member name="T:Xunit.Sdk.TestClassCommandRunner">
1445
+ <summary>
1446
+ Runner that executes an <see cref="T:Xunit.Sdk.ITestClassCommand"/> synchronously.
1447
+ </summary>
1448
+ </member>
1449
+ <member name="M:Xunit.Sdk.TestClassCommandRunner.Execute(Xunit.Sdk.ITestClassCommand,System.Collections.Generic.List{Xunit.Sdk.IMethodInfo},System.Predicate{Xunit.Sdk.ITestCommand},System.Predicate{Xunit.Sdk.ITestResult})">
1450
+ <summary>
1451
+ Execute the <see cref="T:Xunit.Sdk.ITestClassCommand"/>.
1452
+ </summary>
1453
+ <param name="testClassCommand">The test class command to execute</param>
1454
+ <param name="methods">The methods to execute; if null or empty, all methods will be executed</param>
1455
+ <param name="startCallback">The start run callback</param>
1456
+ <param name="resultCallback">The end run result callback</param>
1457
+ <returns>A <see cref="T:Xunit.Sdk.ClassResult"/> with the results of the test run</returns>
1458
+ </member>
1459
+ <member name="T:Xunit.Sdk.TestClassCommandFactory">
1460
+ <summary>
1461
+ Factory for <see cref="T:Xunit.Sdk.ITestClassCommand"/> objects, based on the type under test.
1462
+ </summary>
1463
+ </member>
1464
+ <member name="M:Xunit.Sdk.TestClassCommandFactory.Make(System.Type)">
1465
+ <summary>
1466
+ Creates the test class command, which implements <see cref="T:Xunit.Sdk.ITestClassCommand"/>, for a given type.
1467
+ </summary>
1468
+ <param name="type">The type under test</param>
1469
+ <returns>The test class command, if the class is a test class; null, otherwise</returns>
1470
+ </member>
1471
+ <member name="M:Xunit.Sdk.TestClassCommandFactory.Make(Xunit.Sdk.ITypeInfo)">
1472
+ <summary>
1473
+ Creates the test class command, which implements <see cref="T:Xunit.Sdk.ITestClassCommand"/>, for a given type.
1474
+ </summary>
1475
+ <param name="typeInfo">The type under test</param>
1476
+ <returns>The test class command, if the class is a test class; null, otherwise</returns>
1477
+ </member>
1478
+ <member name="T:Xunit.Sdk.TestClassCommand">
1479
+ <summary>
1480
+ Represents an xUnit.net test class
1481
+ </summary>
1482
+ </member>
1483
+ <member name="T:Xunit.Sdk.ITestClassCommand">
1484
+ <summary>
1485
+ Interface which describes the ability to executes all the tests in a test class.
1486
+ </summary>
1487
+ </member>
1488
+ <member name="M:Xunit.Sdk.ITestClassCommand.ChooseNextTest(System.Collections.Generic.ICollection{Xunit.Sdk.IMethodInfo})">
1489
+ <summary>
1490
+ Allows the test class command to choose the next test to be run from the list of
1491
+ tests that have not yet been run, thereby allowing it to choose the run order.
1492
+ </summary>
1493
+ <param name="testsLeftToRun">The tests remaining to be run</param>
1494
+ <returns>The index of the test that should be run</returns>
1495
+ </member>
1496
+ <member name="M:Xunit.Sdk.ITestClassCommand.ClassFinish">
1497
+ <summary>
1498
+ Execute actions to be run after all the test methods of this test class are run.
1499
+ </summary>
1500
+ <returns>Returns the <see cref="T:System.Exception"/> thrown during execution, if any; null, otherwise</returns>
1501
+ </member>
1502
+ <member name="M:Xunit.Sdk.ITestClassCommand.ClassStart">
1503
+ <summary>
1504
+ Execute actions to be run before any of the test methods of this test class are run.
1505
+ </summary>
1506
+ <returns>Returns the <see cref="T:System.Exception"/> thrown during execution, if any; null, otherwise</returns>
1507
+ </member>
1508
+ <member name="M:Xunit.Sdk.ITestClassCommand.EnumerateTestCommands(Xunit.Sdk.IMethodInfo)">
1509
+ <summary>
1510
+ Enumerates the test commands for a given test method in this test class.
1511
+ </summary>
1512
+ <param name="testMethod">The method under test</param>
1513
+ <returns>The test commands for the given test method</returns>
1514
+ </member>
1515
+ <member name="M:Xunit.Sdk.ITestClassCommand.EnumerateTestMethods">
1516
+ <summary>
1517
+ Enumerates the methods which are test methods in this test class.
1518
+ </summary>
1519
+ <returns>The test methods</returns>
1520
+ </member>
1521
+ <member name="M:Xunit.Sdk.ITestClassCommand.IsTestMethod(Xunit.Sdk.IMethodInfo)">
1522
+ <summary>
1523
+ Determines if a given <see cref="T:Xunit.Sdk.IMethodInfo"/> refers to a test method.
1524
+ </summary>
1525
+ <param name="testMethod">The test method to validate</param>
1526
+ <returns>True if the method is a test method; false, otherwise</returns>
1527
+ </member>
1528
+ <member name="P:Xunit.Sdk.ITestClassCommand.ObjectUnderTest">
1529
+ <summary>
1530
+ Gets the object instance that is under test. May return null if you wish
1531
+ the test framework to create a new object instance for each test method.
1532
+ </summary>
1533
+ </member>
1534
+ <member name="P:Xunit.Sdk.ITestClassCommand.TypeUnderTest">
1535
+ <summary>
1536
+ Gets or sets the type that is being tested
1537
+ </summary>
1538
+ </member>
1539
+ <member name="M:Xunit.Sdk.TestClassCommand.#ctor">
1540
+ <summary>
1541
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TestClassCommand"/> class.
1542
+ </summary>
1543
+ </member>
1544
+ <member name="M:Xunit.Sdk.TestClassCommand.#ctor(System.Type)">
1545
+ <summary>
1546
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TestClassCommand"/> class.
1547
+ </summary>
1548
+ <param name="typeUnderTest">The type under test</param>
1549
+ </member>
1550
+ <member name="M:Xunit.Sdk.TestClassCommand.#ctor(Xunit.Sdk.ITypeInfo)">
1551
+ <summary>
1552
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TestClassCommand"/> class.
1553
+ </summary>
1554
+ <param name="typeUnderTest">The type under test</param>
1555
+ </member>
1556
+ <member name="M:Xunit.Sdk.TestClassCommand.ChooseNextTest(System.Collections.Generic.ICollection{Xunit.Sdk.IMethodInfo})">
1557
+ <summary>
1558
+ Chooses the next test to run, randomly, using the <see cref="P:Xunit.Sdk.TestClassCommand.Randomizer"/>.
1559
+ </summary>
1560
+ <param name="testsLeftToRun">The tests remaining to be run</param>
1561
+ <returns>The index of the test that should be run</returns>
1562
+ </member>
1563
+ <member name="M:Xunit.Sdk.TestClassCommand.ClassFinish">
1564
+ <summary>
1565
+ Execute actions to be run after all the test methods of this test class are run.
1566
+ </summary>
1567
+ <returns>Returns the <see cref="T:System.Exception"/> thrown during execution, if any; null, otherwise</returns>
1568
+ </member>
1569
+ <member name="M:Xunit.Sdk.TestClassCommand.ClassStart">
1570
+ <summary>
1571
+ Execute actions to be run before any of the test methods of this test class are run.
1572
+ </summary>
1573
+ <returns>Returns the <see cref="T:System.Exception"/> thrown during execution, if any; null, otherwise</returns>
1574
+ </member>
1575
+ <member name="M:Xunit.Sdk.TestClassCommand.EnumerateTestCommands(Xunit.Sdk.IMethodInfo)">
1576
+ <summary>
1577
+ Enumerates the test commands for a given test method in this test class.
1578
+ </summary>
1579
+ <param name="testMethod">The method under test</param>
1580
+ <returns>The test commands for the given test method</returns>
1581
+ </member>
1582
+ <member name="M:Xunit.Sdk.TestClassCommand.EnumerateTestMethods">
1583
+ <summary>
1584
+ Enumerates the methods which are test methods in this test class.
1585
+ </summary>
1586
+ <returns>The test methods</returns>
1587
+ </member>
1588
+ <member name="M:Xunit.Sdk.TestClassCommand.IsTestMethod(Xunit.Sdk.IMethodInfo)">
1589
+ <summary>
1590
+ Determines if a given <see cref="T:Xunit.Sdk.IMethodInfo"/> refers to a test method.
1591
+ </summary>
1592
+ <param name="testMethod">The test method to validate</param>
1593
+ <returns>True if the method is a test method; false, otherwise</returns>
1594
+ </member>
1595
+ <member name="P:Xunit.Sdk.TestClassCommand.ObjectUnderTest">
1596
+ <summary>
1597
+ Gets the object instance that is under test. May return null if you wish
1598
+ the test framework to create a new object instance for each test method.
1599
+ </summary>
1600
+ </member>
1601
+ <member name="P:Xunit.Sdk.TestClassCommand.Randomizer">
1602
+ <summary>
1603
+ Gets or sets the randomizer used to determine the order in which tests are run.
1604
+ </summary>
1605
+ </member>
1606
+ <member name="P:Xunit.Sdk.TestClassCommand.TypeUnderTest">
1607
+ <summary>
1608
+ Sets the type that is being tested
1609
+ </summary>
1610
+ </member>
1611
+ <member name="T:Xunit.Sdk.SkipCommand">
1612
+ <summary>
1613
+ Implementation of <see cref="T:Xunit.Sdk.ITestCommand"/> that represents a skipped test.
1614
+ </summary>
1615
+ </member>
1616
+ <member name="M:Xunit.Sdk.SkipCommand.#ctor(Xunit.Sdk.IMethodInfo,System.String,System.String)">
1617
+ <summary>
1618
+ Creates a new instance of the <see cref="T:Xunit.Sdk.SkipCommand"/> class.
1619
+ </summary>
1620
+ <param name="testMethod">The method that is being skipped</param>
1621
+ <param name="displayName">The display name for the test. If null, the fully qualified
1622
+ type name is used.</param>
1623
+ <param name="reason">The reason the test was skipped.</param>
1624
+ </member>
1625
+ <member name="M:Xunit.Sdk.SkipCommand.Execute(System.Object)">
1626
+ <inheritdoc/>
1627
+ </member>
1628
+ <member name="M:Xunit.Sdk.SkipCommand.ToStartXml">
1629
+ <inheritdoc/>
1630
+ </member>
1631
+ <member name="P:Xunit.Sdk.SkipCommand.Reason">
1632
+ <summary>
1633
+ Gets the skip reason.
1634
+ </summary>
1635
+ </member>
1636
+ <member name="P:Xunit.Sdk.SkipCommand.ShouldCreateInstance">
1637
+ <inheritdoc/>
1638
+ </member>
1639
+ <member name="T:Xunit.Sdk.TestCommandFactory">
1640
+ <summary>
1641
+ Factory for creating <see cref="T:Xunit.Sdk.ITestCommand"/> objects.
1642
+ </summary>
1643
+ </member>
1644
+ <member name="M:Xunit.Sdk.TestCommandFactory.Make(Xunit.Sdk.ITestClassCommand,Xunit.Sdk.IMethodInfo)">
1645
+ <summary>
1646
+ Make instances of <see cref="T:Xunit.Sdk.ITestCommand"/> objects for the given class and method.
1647
+ </summary>
1648
+ <param name="classCommand">The class command</param>
1649
+ <param name="method">The method under test</param>
1650
+ <returns>The set of <see cref="T:Xunit.Sdk.ITestCommand"/> objects</returns>
1651
+ </member>
1652
+ <member name="T:Xunit.Sdk.TimedCommand">
1653
+ <summary>
1654
+ A command wrapper which times the running of a command.
1655
+ </summary>
1656
+ </member>
1657
+ <member name="M:Xunit.Sdk.TimedCommand.#ctor(Xunit.Sdk.ITestCommand)">
1658
+ <summary>
1659
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TimedCommand"/> class.
1660
+ </summary>
1661
+ <param name="innerCommand">The command that will be timed.</param>
1662
+ </member>
1663
+ <member name="M:Xunit.Sdk.TimedCommand.Execute(System.Object)">
1664
+ <summary>
1665
+ Executes the inner test method, gathering the amount of time it takes to run.
1666
+ </summary>
1667
+ <returns>Returns information about the test run</returns>
1668
+ </member>
1669
+ <member name="T:Xunit.Sdk.TimeoutCommand">
1670
+ <summary>
1671
+ Wraps a command which should fail if it runs longer than the given timeout value.
1672
+ </summary>
1673
+ </member>
1674
+ <member name="M:Xunit.Sdk.TimeoutCommand.#ctor(Xunit.Sdk.ITestCommand,System.Int32,Xunit.Sdk.IMethodInfo)">
1675
+ <summary>
1676
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TimeoutCommand"/> class.
1677
+ </summary>
1678
+ <param name="innerCommand">The command to be run</param>
1679
+ <param name="timeout">The timout, in milliseconds</param>
1680
+ <param name="testMethod">The method under test</param>
1681
+ </member>
1682
+ <member name="M:Xunit.Sdk.TimeoutCommand.Execute(System.Object)">
1683
+ <summary>
1684
+ Executes the test method, failing if it takes too long.
1685
+ </summary>
1686
+ <returns>Returns information about the test run</returns>
1687
+ </member>
1688
+ <member name="P:Xunit.Sdk.TimeoutCommand.Timeout">
1689
+ <inheritdoc/>
1690
+ </member>
1691
+ <member name="T:Xunit.RunWithAttribute">
1692
+ <summary>
1693
+ Attributes used to decorate a test fixture that is run with an alternate test runner.
1694
+ The test runner must implement the <see cref="T:Xunit.Sdk.ITestClassCommand"/> interface.
1695
+ </summary>
1696
+ </member>
1697
+ <member name="M:Xunit.RunWithAttribute.#ctor(System.Type)">
1698
+ <summary>
1699
+ Creates a new instance of the <see cref="T:Xunit.RunWithAttribute"/> class.
1700
+ </summary>
1701
+ <param name="commandType">The class which implements ITestClassCommand and acts as the runner
1702
+ for the test fixture.</param>
1703
+ </member>
1704
+ <member name="P:Xunit.RunWithAttribute.TestClassCommand">
1705
+ <summary>
1706
+ Gets the test class command.
1707
+ </summary>
1708
+ </member>
1709
+ <member name="T:Xunit.Sdk.SameException">
1710
+ <summary>
1711
+ Exception thrown when two object references are unexpectedly not the same instance.
1712
+ </summary>
1713
+ </member>
1714
+ <member name="M:Xunit.Sdk.SameException.#ctor(System.Object,System.Object)">
1715
+ <summary>
1716
+ Creates a new instance of the <see cref="T:Xunit.Sdk.SameException"/> class.
1717
+ </summary>
1718
+ <param name="expected">The expected object reference</param>
1719
+ <param name="actual">The actual object reference</param>
1720
+ </member>
1721
+ <member name="T:Xunit.Sdk.AssemblyResult">
1722
+ <summary>
1723
+ Contains the test results from an assembly.
1724
+ </summary>
1725
+ </member>
1726
+ <member name="T:Xunit.Sdk.CompositeResult">
1727
+ <summary>
1728
+ Contains multiple test results, representing them as a composite test result.
1729
+ </summary>
1730
+ </member>
1731
+ <member name="M:Xunit.Sdk.CompositeResult.Add(Xunit.Sdk.ITestResult)">
1732
+ <summary>
1733
+ Adds a test result to the composite test result list.
1734
+ </summary>
1735
+ <param name="testResult"></param>
1736
+ </member>
1737
+ <member name="P:Xunit.Sdk.CompositeResult.Results">
1738
+ <summary>
1739
+ Gets the test results.
1740
+ </summary>
1741
+ </member>
1742
+ <member name="M:Xunit.Sdk.AssemblyResult.#ctor(System.String)">
1743
+ <summary>
1744
+ Creates a new instance of the <see cref="T:Xunit.Sdk.AssemblyResult"/> class.
1745
+ </summary>
1746
+ <param name="assemblyFilename">The filename of the assembly</param>
1747
+ </member>
1748
+ <member name="M:Xunit.Sdk.AssemblyResult.#ctor(System.String,System.String)">
1749
+ <summary>
1750
+ Creates a new instance of the <see cref="T:Xunit.Sdk.AssemblyResult"/> class.
1751
+ </summary>
1752
+ <param name="assemblyFilename">The filename of the assembly</param>
1753
+ <param name="configFilename">The configuration filename</param>
1754
+ </member>
1755
+ <member name="M:Xunit.Sdk.AssemblyResult.ToXml(System.Xml.XmlNode)">
1756
+ <summary>
1757
+ Converts the test result into XML that is consumed by the test runners.
1758
+ </summary>
1759
+ <param name="parentNode">The parent node.</param>
1760
+ <returns>The newly created XML node.</returns>
1761
+ </member>
1762
+ <member name="P:Xunit.Sdk.AssemblyResult.ConfigFilename">
1763
+ <summary>
1764
+ Gets the fully qualified filename of the configuration file.
1765
+ </summary>
1766
+ </member>
1767
+ <member name="P:Xunit.Sdk.AssemblyResult.Directory">
1768
+ <summary>
1769
+ Gets the directory where the assembly resides.
1770
+ </summary>
1771
+ </member>
1772
+ <member name="P:Xunit.Sdk.AssemblyResult.FailCount">
1773
+ <summary>
1774
+ Gets the number of failed results.
1775
+ </summary>
1776
+ </member>
1777
+ <member name="P:Xunit.Sdk.AssemblyResult.Filename">
1778
+ <summary>
1779
+ Gets the fully qualified filename of the assembly.
1780
+ </summary>
1781
+ </member>
1782
+ <member name="P:Xunit.Sdk.AssemblyResult.PassCount">
1783
+ <summary>
1784
+ Gets the number of passed results.
1785
+ </summary>
1786
+ </member>
1787
+ <member name="P:Xunit.Sdk.AssemblyResult.SkipCount">
1788
+ <summary>
1789
+ Gets the number of skipped results.
1790
+ </summary>
1791
+ </member>
1792
+ <member name="T:Xunit.Sdk.ClassResult">
1793
+ <summary>
1794
+ Contains the test results from a test class.
1795
+ </summary>
1796
+ </member>
1797
+ <member name="M:Xunit.Sdk.ClassResult.#ctor(System.Type)">
1798
+ <summary>
1799
+ Creates a new instance of the <see cref="T:Xunit.Sdk.ClassResult"/> class.
1800
+ </summary>
1801
+ <param name="type">The type under test</param>
1802
+ </member>
1803
+ <member name="M:Xunit.Sdk.ClassResult.#ctor(System.String,System.String,System.String)">
1804
+ <summary>
1805
+ Creates a new instance of the <see cref="T:Xunit.Sdk.ClassResult"/> class.
1806
+ </summary>
1807
+ <param name="typeName">The simple name of the type under test</param>
1808
+ <param name="typeFullName">The fully qualified name of the type under test</param>
1809
+ <param name="typeNamespace">The namespace of the type under test</param>
1810
+ </member>
1811
+ <member name="M:Xunit.Sdk.ClassResult.SetException(System.Exception)">
1812
+ <summary>
1813
+ Sets the exception thrown by the test fixture.
1814
+ </summary>
1815
+ <param name="ex">The thrown exception</param>
1816
+ </member>
1817
+ <member name="M:Xunit.Sdk.ClassResult.ToXml(System.Xml.XmlNode)">
1818
+ <summary>
1819
+ Converts the test result into XML that is consumed by the test runners.
1820
+ </summary>
1821
+ <param name="parentNode">The parent node.</param>
1822
+ <returns>The newly created XML node.</returns>
1823
+ </member>
1824
+ <member name="P:Xunit.Sdk.ClassResult.ExceptionType">
1825
+ <summary>
1826
+ Gets the fully qualified test fixture exception type, when an exception has occurred.
1827
+ </summary>
1828
+ </member>
1829
+ <member name="P:Xunit.Sdk.ClassResult.FailCount">
1830
+ <summary>
1831
+ Gets the number of tests which failed.
1832
+ </summary>
1833
+ </member>
1834
+ <member name="P:Xunit.Sdk.ClassResult.FullyQualifiedName">
1835
+ <summary>
1836
+ Gets the fully qualified name of the type under test.
1837
+ </summary>
1838
+ </member>
1839
+ <member name="P:Xunit.Sdk.ClassResult.Message">
1840
+ <summary>
1841
+ Gets the test fixture exception message, when an exception has occurred.
1842
+ </summary>
1843
+ </member>
1844
+ <member name="P:Xunit.Sdk.ClassResult.Name">
1845
+ <summary>
1846
+ Gets the simple name of the type under test.
1847
+ </summary>
1848
+ </member>
1849
+ <member name="P:Xunit.Sdk.ClassResult.Namespace">
1850
+ <summary>
1851
+ Gets the namespace of the type under test.
1852
+ </summary>
1853
+ </member>
1854
+ <member name="P:Xunit.Sdk.ClassResult.PassCount">
1855
+ <summary>
1856
+ Gets the number of tests which passed.
1857
+ </summary>
1858
+ </member>
1859
+ <member name="P:Xunit.Sdk.ClassResult.SkipCount">
1860
+ <summary>
1861
+ Gets the number of tests which were skipped.
1862
+ </summary>
1863
+ </member>
1864
+ <member name="P:Xunit.Sdk.ClassResult.StackTrace">
1865
+ <summary>
1866
+ Gets the test fixture exception stack trace, when an exception has occurred.
1867
+ </summary>
1868
+ </member>
1869
+ <member name="T:Xunit.Sdk.FailedResult">
1870
+ <summary>
1871
+ Represents a failed test result.
1872
+ </summary>
1873
+ </member>
1874
+ <member name="T:Xunit.Sdk.MethodResult">
1875
+ <summary>
1876
+ Represents the results from running a test method
1877
+ </summary>
1878
+ </member>
1879
+ <member name="M:Xunit.Sdk.MethodResult.#ctor(Xunit.Sdk.IMethodInfo,System.String)">
1880
+ <summary>
1881
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.MethodResult"/> class. The traits for
1882
+ the test method are discovered using reflection.
1883
+ </summary>
1884
+ <param name="method">The method under test.</param>
1885
+ <param name="displayName">The display name for the test. If null, the fully qualified
1886
+ type name is used.</param>
1887
+ </member>
1888
+ <member name="M:Xunit.Sdk.MethodResult.#ctor(System.String,System.String,System.String,Xunit.Sdk.MultiValueDictionary{System.String,System.String})">
1889
+ <summary>
1890
+ Initializes a new instance of the <see cref="T:Xunit.Sdk.MethodResult"/> class.
1891
+ </summary>
1892
+ <param name="methodName">The name of the method under test.</param>
1893
+ <param name="typeName">The type of the method under test.</param>
1894
+ <param name="displayName">The display name for the test. If null, the fully qualified
1895
+ type name is used.</param>
1896
+ <param name="traits">The traits.</param>
1897
+ </member>
1898
+ <member name="M:Xunit.Sdk.MethodResult.ToXml(System.Xml.XmlNode)">
1899
+ <summary>
1900
+ Converts the test result into XML that is consumed by the test runners.
1901
+ </summary>
1902
+ <param name="parentNode">The parent node.</param>
1903
+ <returns>The newly created XML node.</returns>
1904
+ </member>
1905
+ <member name="P:Xunit.Sdk.MethodResult.DisplayName">
1906
+ <summary>
1907
+ Gets or sets the display name of the method under test. This is the value that's shown
1908
+ during failures and in the resulting output XML.
1909
+ </summary>
1910
+ </member>
1911
+ <member name="P:Xunit.Sdk.MethodResult.MethodName">
1912
+ <summary>
1913
+ Gets the name of the method under test.
1914
+ </summary>
1915
+ </member>
1916
+ <member name="P:Xunit.Sdk.MethodResult.Output">
1917
+ <summary>
1918
+ Gets or sets the standard output/standard error from the test that was captured
1919
+ while the test was running.
1920
+ </summary>
1921
+ </member>
1922
+ <member name="P:Xunit.Sdk.MethodResult.Traits">
1923
+ <summary>
1924
+ Gets the traits attached to the test method.
1925
+ </summary>
1926
+ </member>
1927
+ <member name="P:Xunit.Sdk.MethodResult.TypeName">
1928
+ <summary>
1929
+ Gets the name of the type under test.
1930
+ </summary>
1931
+ </member>
1932
+ <member name="M:Xunit.Sdk.FailedResult.#ctor(Xunit.Sdk.IMethodInfo,System.Exception,System.String)">
1933
+ <summary>
1934
+ Creates a new instance of the <see cref="T:Xunit.Sdk.FailedResult"/> class.
1935
+ </summary>
1936
+ <param name="method">The method under test</param>
1937
+ <param name="exception">The exception throw by the test</param>
1938
+ <param name="displayName">The display name for the test. If null, the fully qualified
1939
+ type name is used.</param>
1940
+ </member>
1941
+ <member name="M:Xunit.Sdk.FailedResult.#ctor(System.String,System.String,System.String,Xunit.Sdk.MultiValueDictionary{System.String,System.String},System.String,System.String,System.String)">
1942
+ <summary>
1943
+ Creates a new instance of the <see cref="T:Xunit.Sdk.FailedResult"/> class.
1944
+ </summary>
1945
+ <param name="methodName">The name of the method under test</param>
1946
+ <param name="typeName">The name of the type under test</param>
1947
+ <param name="displayName">The display name of the test</param>
1948
+ <param name="traits">The custom properties attached to the test method</param>
1949
+ <param name="exceptionType">The full type name of the exception throw</param>
1950
+ <param name="message">The exception message</param>
1951
+ <param name="stackTrace">The exception stack trace</param>
1952
+ </member>
1953
+ <member name="M:Xunit.Sdk.FailedResult.ToXml(System.Xml.XmlNode)">
1954
+ <summary>
1955
+ Converts the test result into XML that is consumed by the test runners.
1956
+ </summary>
1957
+ <param name="parentNode">The parent node.</param>
1958
+ <returns>The newly created XML node.</returns>
1959
+ </member>
1960
+ <member name="P:Xunit.Sdk.FailedResult.ExceptionType">
1961
+ <summary>
1962
+ Gets the exception type thrown by the test method.
1963
+ </summary>
1964
+ </member>
1965
+ <member name="P:Xunit.Sdk.FailedResult.Message">
1966
+ <summary>
1967
+ Gets the exception message thrown by the test method.
1968
+ </summary>
1969
+ </member>
1970
+ <member name="P:Xunit.Sdk.FailedResult.StackTrace">
1971
+ <summary>
1972
+ Gets the stack trace of the exception thrown by the test method.
1973
+ </summary>
1974
+ </member>
1975
+ <member name="T:Xunit.Sdk.PassedResult">
1976
+ <summary>
1977
+ Represents a passing test result.
1978
+ </summary>
1979
+ </member>
1980
+ <member name="M:Xunit.Sdk.PassedResult.#ctor(Xunit.Sdk.IMethodInfo,System.String)">
1981
+ <summary>
1982
+ Create a new instance of the <see cref="T:Xunit.Sdk.PassedResult"/> class.
1983
+ </summary>
1984
+ <param name="method">The method under test</param>
1985
+ <param name="displayName">The display name for the test. If null, the fully qualified
1986
+ type name is used.</param>
1987
+ </member>
1988
+ <member name="M:Xunit.Sdk.PassedResult.#ctor(System.String,System.String,System.String,Xunit.Sdk.MultiValueDictionary{System.String,System.String})">
1989
+ <summary>
1990
+ Create a new instance of the <see cref="T:Xunit.Sdk.PassedResult"/> class.
1991
+ </summary>
1992
+ <param name="methodName">The name of the method under test</param>
1993
+ <param name="typeName">The name of the type under test</param>
1994
+ <param name="displayName">The display name for the test. If null, the fully qualified
1995
+ type name is used.</param>
1996
+ <param name="traits">The custom properties attached to the test method</param>
1997
+ </member>
1998
+ <member name="M:Xunit.Sdk.PassedResult.ToXml(System.Xml.XmlNode)">
1999
+ <summary>
2000
+ Converts the test result into XML that is consumed by the test runners.
2001
+ </summary>
2002
+ <param name="parentNode">The parent node.</param>
2003
+ <returns>The newly created XML node.</returns>
2004
+ </member>
2005
+ <member name="T:Xunit.Sdk.SkipResult">
2006
+ <summary>
2007
+ Represents a skipped test result.
2008
+ </summary>
2009
+ </member>
2010
+ <member name="M:Xunit.Sdk.SkipResult.#ctor(Xunit.Sdk.IMethodInfo,System.String,System.String)">
2011
+ <summary>
2012
+ Creates a new instance of the <see cref="T:Xunit.Sdk.SkipResult"/> class. Uses reflection to discover
2013
+ the skip reason.
2014
+ </summary>
2015
+ <param name="method">The method under test</param>
2016
+ <param name="displayName">The display name for the test. If null, the fully qualified
2017
+ type name is used.</param>
2018
+ <param name="reason">The reason the test was skipped.</param>
2019
+ </member>
2020
+ <member name="M:Xunit.Sdk.SkipResult.#ctor(System.String,System.String,System.String,Xunit.Sdk.MultiValueDictionary{System.String,System.String},System.String)">
2021
+ <summary>
2022
+ Creates a new instance of the <see cref="T:Xunit.Sdk.SkipResult"/> class.
2023
+ </summary>
2024
+ <param name="methodName">The name of the method under test</param>
2025
+ <param name="typeName">The name of the type under test</param>
2026
+ <param name="displayName">The display name for the test. If null, the fully qualified
2027
+ type name is used.</param>
2028
+ <param name="traits">The traits attached to the method under test</param>
2029
+ <param name="reason">The skip reason</param>
2030
+ </member>
2031
+ <member name="M:Xunit.Sdk.SkipResult.ToXml(System.Xml.XmlNode)">
2032
+ <summary>
2033
+ Converts the test result into XML that is consumed by the test runners.
2034
+ </summary>
2035
+ <param name="parentNode">The parent node.</param>
2036
+ <returns>The newly created XML node.</returns>
2037
+ </member>
2038
+ <member name="P:Xunit.Sdk.SkipResult.Reason">
2039
+ <summary>
2040
+ Gets the skip reason.
2041
+ </summary>
2042
+ </member>
2043
+ <member name="T:Xunit.Sdk.IAttributeInfo">
2044
+ <summary>
2045
+ Represents information about an attribute.
2046
+ </summary>
2047
+ </member>
2048
+ <member name="M:Xunit.Sdk.IAttributeInfo.GetInstance``1">
2049
+ <summary>
2050
+ Gets the instance of the attribute, if available.
2051
+ </summary>
2052
+ <typeparam name="T">The type of the attribute</typeparam>
2053
+ <returns>The instance of the attribute, if available.</returns>
2054
+ </member>
2055
+ <member name="M:Xunit.Sdk.IAttributeInfo.GetPropertyValue``1(System.String)">
2056
+ <summary>
2057
+ Gets an initialized property value of the attribute.
2058
+ </summary>
2059
+ <typeparam name="TValue">The type of the property</typeparam>
2060
+ <param name="propertyName">The name of the property</param>
2061
+ <returns>The property value</returns>
2062
+ </member>
2063
+ <member name="T:Xunit.Sdk.IMethodInfo">
2064
+ <summary>
2065
+ Represents information about a method.
2066
+ </summary>
2067
+ </member>
2068
+ <member name="M:Xunit.Sdk.IMethodInfo.CreateInstance">
2069
+ <summary>
2070
+ Creates an instance of the type where this test method was found. If using
2071
+ reflection, this should be the ReflectedType.
2072
+ </summary>
2073
+ <returns>A new instance of the type.</returns>
2074
+ </member>
2075
+ <member name="M:Xunit.Sdk.IMethodInfo.GetCustomAttributes(System.Type)">
2076
+ <summary>
2077
+ Gets all the custom attributes for the method that are of the given type.
2078
+ </summary>
2079
+ <param name="attributeType">The type of the attribute</param>
2080
+ <returns>The matching attributes that decorate the method</returns>
2081
+ </member>
2082
+ <member name="M:Xunit.Sdk.IMethodInfo.HasAttribute(System.Type)">
2083
+ <summary>
2084
+ Determines if the method has at least one instance of the given attribute type.
2085
+ </summary>
2086
+ <param name="attributeType">The type of the attribute</param>
2087
+ <returns>True if the method has at least one instance of the given attribute type; false, otherwise</returns>
2088
+ </member>
2089
+ <member name="M:Xunit.Sdk.IMethodInfo.Invoke(System.Object,System.Object[])">
2090
+ <summary>
2091
+ Invokes the test on the given class, with the given parameters.
2092
+ </summary>
2093
+ <param name="testClass">The instance of the test class (may be null if
2094
+ the test method is static).</param>
2095
+ <param name="parameters">The parameters to be passed to the test method.</param>
2096
+ </member>
2097
+ <member name="P:Xunit.Sdk.IMethodInfo.IsAbstract">
2098
+ <summary>
2099
+ Gets a value indicating whether the method is abstract.
2100
+ </summary>
2101
+ </member>
2102
+ <member name="P:Xunit.Sdk.IMethodInfo.IsStatic">
2103
+ <summary>
2104
+ Gets a value indicating whether the method is static.
2105
+ </summary>
2106
+ </member>
2107
+ <member name="P:Xunit.Sdk.IMethodInfo.MethodInfo">
2108
+ <summary>
2109
+ Gets the underlying <see cref="P:Xunit.Sdk.IMethodInfo.MethodInfo"/> for the method, if available.
2110
+ </summary>
2111
+ </member>
2112
+ <member name="P:Xunit.Sdk.IMethodInfo.Name">
2113
+ <summary>
2114
+ Gets the name of the method.
2115
+ </summary>
2116
+ </member>
2117
+ <member name="P:Xunit.Sdk.IMethodInfo.ReturnType">
2118
+ <summary>
2119
+ Gets the fully qualified type name of the return type.
2120
+ </summary>
2121
+ </member>
2122
+ <member name="P:Xunit.Sdk.IMethodInfo.TypeName">
2123
+ <summary>
2124
+ Gets the fully qualified type name of the type that this method belongs to. If
2125
+ using reflection, this should be the ReflectedType.
2126
+ </summary>
2127
+ </member>
2128
+ <member name="T:Xunit.Sdk.ITypeInfo">
2129
+ <summary>
2130
+ Represents information about a type.
2131
+ </summary>
2132
+ </member>
2133
+ <member name="M:Xunit.Sdk.ITypeInfo.GetCustomAttributes(System.Type)">
2134
+ <summary>
2135
+ Gets all the custom attributes for the type that are of the given attribute type.
2136
+ </summary>
2137
+ <param name="attributeType">The type of the attribute</param>
2138
+ <returns>The matching attributes that decorate the type</returns>
2139
+ </member>
2140
+ <member name="M:Xunit.Sdk.ITypeInfo.GetMethod(System.String)">
2141
+ <summary>
2142
+ Gets a test method by name.
2143
+ </summary>
2144
+ <param name="methodName">The name of the method</param>
2145
+ <returns>The method, if it exists; null, otherwise.</returns>
2146
+ </member>
2147
+ <member name="M:Xunit.Sdk.ITypeInfo.GetMethods">
2148
+ <summary>
2149
+ Gets all the methods
2150
+ </summary>
2151
+ <returns></returns>
2152
+ </member>
2153
+ <member name="M:Xunit.Sdk.ITypeInfo.HasAttribute(System.Type)">
2154
+ <summary>
2155
+ Determines if the type has at least one instance of the given attribute type.
2156
+ </summary>
2157
+ <param name="attributeType">The type of the attribute</param>
2158
+ <returns>True if the type has at least one instance of the given attribute type; false, otherwise</returns>
2159
+ </member>
2160
+ <member name="M:Xunit.Sdk.ITypeInfo.HasInterface(System.Type)">
2161
+ <summary>
2162
+ Determines if the type implements the given interface.
2163
+ </summary>
2164
+ <param name="interfaceType">The type of the interface</param>
2165
+ <returns>True if the type implements the given interface; false, otherwise</returns>
2166
+ </member>
2167
+ <member name="P:Xunit.Sdk.ITypeInfo.IsAbstract">
2168
+ <summary>
2169
+ Gets a value indicating whether the type is abstract.
2170
+ </summary>
2171
+ </member>
2172
+ <member name="P:Xunit.Sdk.ITypeInfo.IsSealed">
2173
+ <summary>
2174
+ Gets a value indicating whether the type is sealed.
2175
+ </summary>
2176
+ </member>
2177
+ <member name="P:Xunit.Sdk.ITypeInfo.Type">
2178
+ <summary>
2179
+ Gets the underlying <see cref="P:Xunit.Sdk.ITypeInfo.Type"/> object, if available.
2180
+ </summary>
2181
+ </member>
2182
+ <member name="T:Xunit.Sdk.MethodUtility">
2183
+ <summary>
2184
+ Utility class which inspects methods for test information
2185
+ </summary>
2186
+ </member>
2187
+ <member name="M:Xunit.Sdk.MethodUtility.GetDisplayName(Xunit.Sdk.IMethodInfo)">
2188
+ <summary>
2189
+ Gets the display name.
2190
+ </summary>
2191
+ <param name="method">The method to be inspected</param>
2192
+ <returns>The display name</returns>
2193
+ </member>
2194
+ <member name="M:Xunit.Sdk.MethodUtility.GetSkipReason(Xunit.Sdk.IMethodInfo)">
2195
+ <summary>
2196
+ Gets the skip reason from a test method.
2197
+ </summary>
2198
+ <param name="method">The method to be inspected</param>
2199
+ <returns>The skip reason</returns>
2200
+ </member>
2201
+ <member name="M:Xunit.Sdk.MethodUtility.GetTestCommands(Xunit.Sdk.IMethodInfo)">
2202
+ <summary>
2203
+ Gets the test commands for a test method.
2204
+ </summary>
2205
+ <param name="method">The method to be inspected</param>
2206
+ <returns>The <see cref="T:Xunit.Sdk.ITestCommand"/> objects for the test method</returns>
2207
+ </member>
2208
+ <member name="M:Xunit.Sdk.MethodUtility.GetTimeoutParameter(Xunit.Sdk.IMethodInfo)">
2209
+ <summary>
2210
+ Gets the timeout value for a test method.
2211
+ </summary>
2212
+ <param name="method">The method to be inspected</param>
2213
+ <returns>The timeout, in milliseconds</returns>
2214
+ </member>
2215
+ <member name="M:Xunit.Sdk.MethodUtility.GetTraits(Xunit.Sdk.IMethodInfo)">
2216
+ <summary>
2217
+ Gets the traits on a test method.
2218
+ </summary>
2219
+ <param name="method">The method to be inspected</param>
2220
+ <returns>A dictionary of the traits</returns>
2221
+ </member>
2222
+ <member name="M:Xunit.Sdk.MethodUtility.HasTimeout(Xunit.Sdk.IMethodInfo)">
2223
+ <summary>
2224
+ Determines whether a test method has a timeout.
2225
+ </summary>
2226
+ <param name="method">The method to be inspected</param>
2227
+ <returns>True if the method has a timeout; false, otherwise</returns>
2228
+ </member>
2229
+ <member name="M:Xunit.Sdk.MethodUtility.HasTraits(Xunit.Sdk.IMethodInfo)">
2230
+ <summary>
2231
+ Determines whether a test method has traits.
2232
+ </summary>
2233
+ <param name="method">The method to be inspected</param>
2234
+ <returns>True if the method has traits; false, otherwise</returns>
2235
+ </member>
2236
+ <member name="M:Xunit.Sdk.MethodUtility.IsSkip(Xunit.Sdk.IMethodInfo)">
2237
+ <summary>
2238
+ Determines whether a test method should be skipped.
2239
+ </summary>
2240
+ <param name="method">The method to be inspected</param>
2241
+ <returns>True if the method should be skipped; false, otherwise</returns>
2242
+ </member>
2243
+ <member name="M:Xunit.Sdk.MethodUtility.IsTest(Xunit.Sdk.IMethodInfo)">
2244
+ <summary>
2245
+ Determines whether a method is a test method. A test method must be decorated
2246
+ with the <see cref="T:Xunit.FactAttribute"/> (or derived class) and must not be abstract.
2247
+ </summary>
2248
+ <param name="method">The method to be inspected</param>
2249
+ <returns>True if the method is a test method; false, otherwise</returns>
2250
+ </member>
2251
+ <member name="T:Xunit.Sdk.Reflector">
2252
+ <summary>
2253
+ Wrapper to implement <see cref="T:Xunit.Sdk.IMethodInfo"/> and <see cref="T:Xunit.Sdk.ITypeInfo"/> using reflection.
2254
+ </summary>
2255
+ </member>
2256
+ <member name="M:Xunit.Sdk.Reflector.Wrap(System.Attribute)">
2257
+ <summary>
2258
+ Converts an <see cref="T:System.Attribute"/> into an <see cref="T:Xunit.Sdk.IAttributeInfo"/> using reflection.
2259
+ </summary>
2260
+ <param name="attribute"></param>
2261
+ <returns></returns>
2262
+ </member>
2263
+ <member name="M:Xunit.Sdk.Reflector.Wrap(System.Reflection.MethodInfo)">
2264
+ <summary>
2265
+ Converts a <see cref="T:System.Reflection.MethodInfo"/> into an <see cref="T:Xunit.Sdk.IMethodInfo"/> using reflection.
2266
+ </summary>
2267
+ <param name="method">The method to wrap</param>
2268
+ <returns>The wrapper</returns>
2269
+ </member>
2270
+ <member name="M:Xunit.Sdk.Reflector.Wrap(System.Type)">
2271
+ <summary>
2272
+ Converts a <see cref="T:System.Type"/> into an <see cref="T:Xunit.Sdk.ITypeInfo"/> using reflection.
2273
+ </summary>
2274
+ <param name="type">The type to wrap</param>
2275
+ <returns>The wrapper</returns>
2276
+ </member>
2277
+ <member name="T:Xunit.Sdk.TypeUtility">
2278
+ <summary>
2279
+ Utility class which inspects types for test information
2280
+ </summary>
2281
+ </member>
2282
+ <member name="M:Xunit.Sdk.TypeUtility.ContainsTestMethods(Xunit.Sdk.ITypeInfo)">
2283
+ <summary>
2284
+ Determines if a type contains any test methods
2285
+ </summary>
2286
+ <param name="type">The type to be inspected</param>
2287
+ <returns>True if the class contains any test methods; false, otherwise</returns>
2288
+ </member>
2289
+ <member name="M:Xunit.Sdk.TypeUtility.GetRunWith(Xunit.Sdk.ITypeInfo)">
2290
+ <summary>
2291
+ Retrieves the type to run the test class with from the <see cref="T:Xunit.RunWithAttribute"/>, if present.
2292
+ </summary>
2293
+ <param name="type">The type to be inspected</param>
2294
+ <returns>The type of the test class runner, if present; null, otherwise</returns>
2295
+ </member>
2296
+ <member name="M:Xunit.Sdk.TypeUtility.GetTestMethods(Xunit.Sdk.ITypeInfo)">
2297
+ <summary>
2298
+ Retrieves a list of the test methods from the test class.
2299
+ </summary>
2300
+ <param name="type">The type to be inspected</param>
2301
+ <returns>The test methods</returns>
2302
+ </member>
2303
+ <member name="M:Xunit.Sdk.TypeUtility.HasRunWith(Xunit.Sdk.ITypeInfo)">
2304
+ <summary>
2305
+ Determines if the test class has a <see cref="T:Xunit.RunWithAttribute"/> applied to it.
2306
+ </summary>
2307
+ <param name="type">The type to be inspected</param>
2308
+ <returns>True if the test class has a run with attribute; false, otherwise</returns>
2309
+ </member>
2310
+ <member name="M:Xunit.Sdk.TypeUtility.ImplementsITestClassCommand(Xunit.Sdk.ITypeInfo)">
2311
+ <summary>
2312
+ Determines if the type implements <see cref="T:Xunit.Sdk.ITestClassCommand"/>.
2313
+ </summary>
2314
+ <param name="type">The type to be inspected</param>
2315
+ <returns>True if the type implements <see cref="T:Xunit.Sdk.ITestClassCommand"/>; false, otherwise</returns>
2316
+ </member>
2317
+ <member name="M:Xunit.Sdk.TypeUtility.IsAbstract(Xunit.Sdk.ITypeInfo)">
2318
+ <summary>
2319
+ Determines whether the specified type is abstract.
2320
+ </summary>
2321
+ <param name="type">The type.</param>
2322
+ <returns>
2323
+ <c>true</c> if the specified type is abstract; otherwise, <c>false</c>.
2324
+ </returns>
2325
+ </member>
2326
+ <member name="M:Xunit.Sdk.TypeUtility.IsStatic(Xunit.Sdk.ITypeInfo)">
2327
+ <summary>
2328
+ Determines whether the specified type is static.
2329
+ </summary>
2330
+ <param name="type">The type.</param>
2331
+ <returns>
2332
+ <c>true</c> if the specified type is static; otherwise, <c>false</c>.
2333
+ </returns>
2334
+ </member>
2335
+ <member name="M:Xunit.Sdk.TypeUtility.IsTestClass(Xunit.Sdk.ITypeInfo)">
2336
+ <summary>
2337
+ Determines if a class is a test class.
2338
+ </summary>
2339
+ <param name="type">The type to be inspected</param>
2340
+ <returns>True if the type is a test class; false, otherwise</returns>
2341
+ </member>
2342
+ <member name="T:Xunit.FactAttribute">
2343
+ <summary>
2344
+ Attribute that is applied to a method to indicate that it is a fact that should be run
2345
+ by the test runner. It can also be extended to support a customized definition of a
2346
+ test method.
2347
+ </summary>
2348
+ </member>
2349
+ <member name="M:Xunit.FactAttribute.CreateTestCommands(Xunit.Sdk.IMethodInfo)">
2350
+ <summary>
2351
+ Creates instances of <see cref="T:Xunit.Sdk.ITestCommand"/> which represent individual intended
2352
+ invocations of the test method.
2353
+ </summary>
2354
+ <param name="method">The method under test</param>
2355
+ <returns>An enumerator through the desired test method invocations</returns>
2356
+ </member>
2357
+ <member name="M:Xunit.FactAttribute.EnumerateTestCommands(Xunit.Sdk.IMethodInfo)">
2358
+ <summary>
2359
+ Enumerates the test commands represented by this test method. Derived classes should
2360
+ override this method to return instances of <see cref="T:Xunit.Sdk.ITestCommand"/>, one per execution
2361
+ of a test method.
2362
+ </summary>
2363
+ <param name="method">The test method</param>
2364
+ <returns>The test commands which will execute the test runs for the given method</returns>
2365
+ </member>
2366
+ <member name="P:Xunit.FactAttribute.DisplayName">
2367
+ <summary>
2368
+ Gets the name of the test to be used when the test is skipped. Defaults to
2369
+ null, which will cause the fully qualified test name to be used.
2370
+ </summary>
2371
+ </member>
2372
+ <member name="P:Xunit.FactAttribute.Name">
2373
+ <summary>
2374
+ Obsolete. Please use the <see cref="P:Xunit.FactAttribute.DisplayName"/> property instead.
2375
+ </summary>
2376
+ </member>
2377
+ <member name="P:Xunit.FactAttribute.Skip">
2378
+ <summary>
2379
+ Marks the test so that it will not be run, and gets or sets the skip reason
2380
+ </summary>
2381
+ </member>
2382
+ <member name="P:Xunit.FactAttribute.Timeout">
2383
+ <summary>
2384
+ Marks the test as failing if it does not finish running within the given time
2385
+ period, in milliseconds; set to 0 or less to indicate the method has no timeout
2386
+ </summary>
2387
+ </member>
2388
+ <member name="T:Xunit.Sdk.ThrowsException">
2389
+ <summary>
2390
+ Exception thrown when code unexpectedly fails to throw an exception.
2391
+ </summary>
2392
+ </member>
2393
+ <member name="M:Xunit.Sdk.ThrowsException.#ctor(System.Type)">
2394
+ <summary>
2395
+ Creates a new instance of the <see cref="T:Xunit.Sdk.ThrowsException"/> class. Call this constructor
2396
+ when no exception was thrown.
2397
+ </summary>
2398
+ <param name="expectedType">The type of the exception that was expected</param>
2399
+ </member>
2400
+ <member name="M:Xunit.Sdk.ThrowsException.#ctor(System.Type,System.Exception)">
2401
+ <summary>
2402
+ Creates a new instance of the <see cref="T:Xunit.Sdk.ThrowsException"/> class. Call this constructor
2403
+ when an exception of the wrong type was thrown.
2404
+ </summary>
2405
+ <param name="expectedType">The type of the exception that was expected</param>
2406
+ <param name="actual">The actual exception that was thrown</param>
2407
+ </member>
2408
+ <member name="P:Xunit.Sdk.ThrowsException.StackTrace">
2409
+ <summary>
2410
+ Gets a string representation of the frames on the call stack at the time the current exception was thrown.
2411
+ </summary>
2412
+ <returns>A string that describes the contents of the call stack, with the most recent method call appearing first.</returns>
2413
+ </member>
2414
+ <member name="T:Xunit.Sdk.TimeoutException">
2415
+ <summary>
2416
+ Exception thrown when a test method exceeds the given timeout value
2417
+ </summary>
2418
+ </member>
2419
+ <member name="M:Xunit.Sdk.TimeoutException.#ctor(System.Int64)">
2420
+ <summary>
2421
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TimeoutException"/> class.
2422
+ </summary>
2423
+ <param name="timeout">The timeout value, in milliseconds</param>
2424
+ </member>
2425
+ <member name="T:Xunit.Sdk.TrueException">
2426
+ <summary>
2427
+ Exception thrown when a value is unexpectedly false.
2428
+ </summary>
2429
+ </member>
2430
+ <member name="M:Xunit.Sdk.TrueException.#ctor(System.String)">
2431
+ <summary>
2432
+ Creates a new instance of the <see cref="T:Xunit.Sdk.TrueException"/> class.
2433
+ </summary>
2434
+ <param name="userMessage">The user message to be displayed, or null for the default message</param>
2435
+ </member>
2436
+ </members>
2437
+ </doc>