This repository was archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathxunit.xml
2611 lines (2611 loc) · 129 KB
/
xunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>xunit</name>
</assembly>
<members>
<member name="T:Xunit.Assert">
<summary>
Contains various static methods that are used to verify that conditions are met during the
process of running tests.
</summary>
</member>
<member name="M:Xunit.Assert.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Assert"/> class.
</summary>
</member>
<member name="M:Xunit.Assert.Contains``1(``0,System.Collections.Generic.IEnumerable{``0})">
<summary>
Verifies that a collection contains a given object.
</summary>
<typeparam name="T">The type of the object to be verified</typeparam>
<param name="expected">The object expected to be in the collection</param>
<param name="collection">The collection to be inspected</param>
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
</member>
<member name="M:Xunit.Assert.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Verifies that a collection contains a given object, using an equality comparer.
</summary>
<typeparam name="T">The type of the object to be verified</typeparam>
<param name="expected">The object expected to be in the collection</param>
<param name="collection">The collection to be inspected</param>
<param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
</member>
<member name="M:Xunit.Assert.Contains(System.String,System.String)">
<summary>
Verifies that a string contains a given sub-string, using the current culture.
</summary>
<param name="expectedSubstring">The sub-string expected to be in the string</param>
<param name="actualString">The string to be inspected</param>
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
</member>
<member name="M:Xunit.Assert.Contains(System.String,System.String,System.StringComparison)">
<summary>
Verifies that a string contains a given sub-string, using the given comparison type.
</summary>
<param name="expectedSubstring">The sub-string expected to be in the string</param>
<param name="actualString">The string to be inspected</param>
<param name="comparisonType">The type of string comparison to perform</param>
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
</member>
<member name="M:Xunit.Assert.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0})">
<summary>
Verifies that a collection does not contain a given object.
</summary>
<typeparam name="T">The type of the object to be compared</typeparam>
<param name="expected">The object that is expected not to be in the collection</param>
<param name="collection">The collection to be inspected</param>
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
</member>
<member name="M:Xunit.Assert.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Verifies that a collection does not contain a given object, using an equality comparer.
</summary>
<typeparam name="T">The type of the object to be compared</typeparam>
<param name="expected">The object that is expected not to be in the collection</param>
<param name="collection">The collection to be inspected</param>
<param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
</member>
<member name="M:Xunit.Assert.DoesNotContain(System.String,System.String)">
<summary>
Verifies that a string does not contain a given sub-string, using the current culture.
</summary>
<param name="expectedSubstring">The sub-string which is expected not to be in the string</param>
<param name="actualString">The string to be inspected</param>
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
</member>
<member name="M:Xunit.Assert.DoesNotContain(System.String,System.String,System.StringComparison)">
<summary>
Verifies that a string does not contain a given sub-string, using the current culture.
</summary>
<param name="expectedSubstring">The sub-string which is expected not to be in the string</param>
<param name="actualString">The string to be inspected</param>
<param name="comparisonType">The type of string comparison to perform</param>
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
</member>
<member name="M:Xunit.Assert.DoesNotThrow(Xunit.Assert.ThrowsDelegate)">
<summary>
Verifies that a block of code does not throw any exceptions.
</summary>
<param name="testCode">A delegate to the code to be tested</param>
</member>
<member name="M:Xunit.Assert.Empty(System.Collections.IEnumerable)">
<summary>
Verifies that a collection is empty.
</summary>
<param name="collection">The collection to be inspected</param>
<exception cref="T:System.ArgumentNullException">Thrown when the collection is null</exception>
<exception cref="T:Xunit.Sdk.EmptyException">Thrown when the collection is not empty</exception>
</member>
<member name="M:Xunit.Assert.Equal``1(``0,``0)">
<summary>
Verifies that two objects are equal, using a default comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected value</param>
<param name="actual">The value to be compared against</param>
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
</member>
<member name="M:Xunit.Assert.Equal``1(``0,``0,System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Verifies that two objects are equal, using a custom equatable comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected value</param>
<param name="actual">The value to be compared against</param>
<param name="comparer">The comparer used to compare the two objects</param>
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
</member>
<member name="M:Xunit.Assert.Equal(System.Double,System.Double,System.Int32)">
<summary>
Verifies that two <see cref="T:System.Double"/> values are equal, within the number of decimal
places given by <paramref name="precision"/>.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The value to be compared against</param>
<param name="precision">The number of decimal places (valid values: 0-15)</param>
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the values are not equal</exception>
</member>
<member name="M:Xunit.Assert.Equal(System.Decimal,System.Decimal,System.Int32)">
<summary>
Verifies that two <see cref="T:System.Decimal"/> values are equal, within the number of decimal
places given by <paramref name="precision"/>.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The value to be compared against</param>
<param name="precision">The number of decimal places (valid values: 0-15)</param>
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the values are not equal</exception>
</member>
<member name="M:Xunit.Assert.Equal``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
<summary>
Verifies that two sequences are equivalent, using a default comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected value</param>
<param name="actual">The value to be compared against</param>
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
</member>
<member name="M:Xunit.Assert.Equal``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Verifies that two sequences are equivalent, using a custom equatable comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected value</param>
<param name="actual">The value to be compared against</param>
<param name="comparer">The comparer used to compare the two objects</param>
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
</member>
<member name="M:Xunit.Assert.Equals(System.Object,System.Object)">
<summary>Do not call this method.</summary>
</member>
<member name="M:Xunit.Assert.False(System.Boolean)">
<summary>
Verifies that the condition is false.
</summary>
<param name="condition">The condition to be tested</param>
<exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
</member>
<member name="M:Xunit.Assert.False(System.Boolean,System.String)">
<summary>
Verifies that the condition is false.
</summary>
<param name="condition">The condition to be tested</param>
<param name="userMessage">The message to show when the condition is not false</param>
<exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
</member>
<member name="M:Xunit.Assert.InRange``1(``0,``0,``0)">
<summary>
Verifies that a value is within a given range.
</summary>
<typeparam name="T">The type of the value to be compared</typeparam>
<param name="actual">The actual value to be evaluated</param>
<param name="low">The (inclusive) low value of the range</param>
<param name="high">The (inclusive) high value of the range</param>
<exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
</member>
<member name="M:Xunit.Assert.InRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
<summary>
Verifies that a value is within a given range, using a comparer.
</summary>
<typeparam name="T">The type of the value to be compared</typeparam>
<param name="actual">The actual value to be evaluated</param>
<param name="low">The (inclusive) low value of the range</param>
<param name="high">The (inclusive) high value of the range</param>
<param name="comparer">The comparer used to evaluate the value's range</param>
<exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
</member>
<member name="M:Xunit.Assert.IsAssignableFrom``1(System.Object)">
<summary>
Verifies that an object is of the given type or a derived type.
</summary>
<typeparam name="T">The type the object should be</typeparam>
<param name="object">The object to be evaluated</param>
<returns>The object, casted to type T when successful</returns>
<exception cref="T:Xunit.Sdk.IsAssignableFromException">Thrown when the object is not the given type</exception>
</member>
<member name="M:Xunit.Assert.IsAssignableFrom(System.Type,System.Object)">
<summary>
Verifies that an object is of the given type or a derived type.
</summary>
<param name="expectedType">The type the object should be</param>
<param name="object">The object to be evaluated</param>
<exception cref="T:Xunit.Sdk.IsAssignableFromException">Thrown when the object is not the given type</exception>
</member>
<member name="M:Xunit.Assert.IsNotType``1(System.Object)">
<summary>
Verifies that an object is not exactly the given type.
</summary>
<typeparam name="T">The type the object should not be</typeparam>
<param name="object">The object to be evaluated</param>
<exception cref="T:Xunit.Sdk.IsNotTypeException">Thrown when the object is the given type</exception>
</member>
<member name="M:Xunit.Assert.IsNotType(System.Type,System.Object)">
<summary>
Verifies that an object is not exactly the given type.
</summary>
<param name="expectedType">The type the object should not be</param>
<param name="object">The object to be evaluated</param>
<exception cref="T:Xunit.Sdk.IsNotTypeException">Thrown when the object is the given type</exception>
</member>
<member name="M:Xunit.Assert.IsType``1(System.Object)">
<summary>
Verifies that an object is exactly the given type (and not a derived type).
</summary>
<typeparam name="T">The type the object should be</typeparam>
<param name="object">The object to be evaluated</param>
<returns>The object, casted to type T when successful</returns>
<exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
</member>
<member name="M:Xunit.Assert.IsType(System.Type,System.Object)">
<summary>
Verifies that an object is exactly the given type (and not a derived type).
</summary>
<param name="expectedType">The type the object should be</param>
<param name="object">The object to be evaluated</param>
<exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
</member>
<member name="M:Xunit.Assert.NotEmpty(System.Collections.IEnumerable)">
<summary>
Verifies that a collection is not empty.
</summary>
<param name="collection">The collection to be inspected</param>
<exception cref="T:System.ArgumentNullException">Thrown when a null collection is passed</exception>
<exception cref="T:Xunit.Sdk.NotEmptyException">Thrown when the collection is empty</exception>
</member>
<member name="M:Xunit.Assert.NotEqual``1(``0,``0)">
<summary>
Verifies that two objects are not equal, using a default comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
</member>
<member name="M:Xunit.Assert.NotEqual``1(``0,``0,System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Verifies that two objects are not equal, using a custom equality comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="comparer">The comparer used to examine the objects</param>
<exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
</member>
<member name="M:Xunit.Assert.NotEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
<summary>
Verifies that two sequences are not equivalent, using a default comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
</member>
<member name="M:Xunit.Assert.NotEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Verifies that two sequences are not equivalent, using a custom equality comparer.
</summary>
<typeparam name="T">The type of the objects to be compared</typeparam>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="comparer">The comparer used to compare the two objects</param>
<exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
</member>
<member name="M:Xunit.Assert.NotInRange``1(``0,``0,``0)">
<summary>
Verifies that a value is not within a given range, using the default comparer.
</summary>
<typeparam name="T">The type of the value to be compared</typeparam>
<param name="actual">The actual value to be evaluated</param>
<param name="low">The (inclusive) low value of the range</param>
<param name="high">The (inclusive) high value of the range</param>
<exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
</member>
<member name="M:Xunit.Assert.NotInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
<summary>
Verifies that a value is not within a given range, using a comparer.
</summary>
<typeparam name="T">The type of the value to be compared</typeparam>
<param name="actual">The actual value to be evaluated</param>
<param name="low">The (inclusive) low value of the range</param>
<param name="high">The (inclusive) high value of the range</param>
<param name="comparer">The comparer used to evaluate the value's range</param>
<exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
</member>
<member name="M:Xunit.Assert.NotNull(System.Object)">
<summary>
Verifies that an object reference is not null.
</summary>
<param name="object">The object to be validated</param>
<exception cref="T:Xunit.Sdk.NotNullException">Thrown when the object is not null</exception>
</member>
<member name="M:Xunit.Assert.NotSame(System.Object,System.Object)">
<summary>
Verifies that two objects are not the same instance.
</summary>
<param name="expected">The expected object instance</param>
<param name="actual">The actual object instance</param>
<exception cref="T:Xunit.Sdk.NotSameException">Thrown when the objects are the same instance</exception>
</member>
<member name="M:Xunit.Assert.Null(System.Object)">
<summary>
Verifies that an object reference is null.
</summary>
<param name="object">The object to be inspected</param>
<exception cref="T:Xunit.Sdk.NullException">Thrown when the object reference is not null</exception>
</member>
<member name="M:Xunit.Assert.PropertyChanged(System.ComponentModel.INotifyPropertyChanged,System.String,Xunit.Assert.PropertyChangedDelegate)">
<summary>
Verifies that the provided object raised INotifyPropertyChanged.PropertyChanged
as a result of executing the given test code.
</summary>
<param name="object">The object which should raise the notification</param>
<param name="propertyName">The property name for which the notification should be raised</param>
<param name="testCode">The test code which should cause the notification to be raised</param>
<exception cref="T:Xunit.Sdk.PropertyChangedException">Thrown when the notification is not raised</exception>
</member>
<member name="M:Xunit.Assert.Same(System.Object,System.Object)">
<summary>
Verifies that two objects are the same instance.
</summary>
<param name="expected">The expected object instance</param>
<param name="actual">The actual object instance</param>
<exception cref="T:Xunit.Sdk.SameException">Thrown when the objects are not the same instance</exception>
</member>
<member name="M:Xunit.Assert.Single(System.Collections.IEnumerable)">
<summary>
Verifies that the given collection contains only a single
element of the given type.
</summary>
<param name="collection">The collection.</param>
<returns>The single item in the collection.</returns>
<exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
exactly one element.</exception>
</member>
<member name="M:Xunit.Assert.Single(System.Collections.IEnumerable,System.Object)">
<summary>
Verifies that the given collection contains only a single
element of the given value. The collection may or may not
contain other values.
</summary>
<param name="collection">The collection.</param>
<param name="expected">The value to find in the collection.</param>
<returns>The single item in the collection.</returns>
<exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
exactly one element.</exception>
</member>
<member name="M:Xunit.Assert.Single``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Verifies that the given collection contains only a single
element of the given type.
</summary>
<typeparam name="T">The collection type.</typeparam>
<param name="collection">The collection.</param>
<returns>The single item in the collection.</returns>
<exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
exactly one element.</exception>
</member>
<member name="M:Xunit.Assert.Single``1(System.Collections.Generic.IEnumerable{``0},System.Predicate{``0})">
<summary>
Verifies that the given collection contains only a single
element of the given type which matches the given predicate. The
collection may or may not contain other values which do not
match the given predicate.
</summary>
<typeparam name="T">The collection type.</typeparam>
<param name="collection">The collection.</param>
<param name="predicate">The item matching predicate.</param>
<returns>The single item in the filtered collection.</returns>
<exception cref="T:Xunit.Sdk.SingleException">Thrown when the filtered collection does
not contain exactly one element.</exception>
</member>
<member name="M:Xunit.Assert.Throws``1(Xunit.Assert.ThrowsDelegate)">
<summary>
Verifies that the exact exception is thrown (and not a derived exception type).
</summary>
<typeparam name="T">The type of the exception expected to be thrown</typeparam>
<param name="testCode">A delegate to the code to be tested</param>
<returns>The exception that was thrown, when successful</returns>
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
</member>
<member name="M:Xunit.Assert.Throws``1(Xunit.Assert.ThrowsDelegateWithReturn)">
<summary>
Verifies that the exact exception is thrown (and not a derived exception type).
Generally used to test property accessors.
</summary>
<typeparam name="T">The type of the exception expected to be thrown</typeparam>
<param name="testCode">A delegate to the code to be tested</param>
<returns>The exception that was thrown, when successful</returns>
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
</member>
<member name="M:Xunit.Assert.Throws(System.Type,Xunit.Assert.ThrowsDelegate)">
<summary>
Verifies that the exact exception is thrown (and not a derived exception type).
</summary>
<param name="exceptionType">The type of the exception expected to be thrown</param>
<param name="testCode">A delegate to the code to be tested</param>
<returns>The exception that was thrown, when successful</returns>
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
</member>
<member name="M:Xunit.Assert.Throws(System.Type,Xunit.Assert.ThrowsDelegateWithReturn)">
<summary>
Verifies that the exact exception is thrown (and not a derived exception type).
Generally used to test property accessors.
</summary>
<param name="exceptionType">The type of the exception expected to be thrown</param>
<param name="testCode">A delegate to the code to be tested</param>
<returns>The exception that was thrown, when successful</returns>
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
</member>
<member name="M:Xunit.Assert.True(System.Boolean)">
<summary>
Verifies that an expression is true.
</summary>
<param name="condition">The condition to be inspected</param>
<exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
</member>
<member name="M:Xunit.Assert.True(System.Boolean,System.String)">
<summary>
Verifies that an expression is true.
</summary>
<param name="condition">The condition to be inspected</param>
<param name="userMessage">The message to be shown when the condition is false</param>
<exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
</member>
<member name="T:Xunit.Assert.PropertyChangedDelegate">
<summary>
Used by the PropertyChanged.
</summary>
</member>
<member name="T:Xunit.Assert.ThrowsDelegate">
<summary>
Used by the Throws and DoesNotThrow methods.
</summary>
</member>
<member name="T:Xunit.Assert.ThrowsDelegateWithReturn">
<summary>
Used by the Throws and DoesNotThrow methods.
</summary>
</member>
<member name="T:Xunit.Sdk.ExceptionAndOutputCaptureCommand">
<summary>
This command sets up the necessary trace listeners and standard
output/error listeners to capture Assert/Debug.Trace failures,
output to stdout/stderr, and Assert/Debug.Write text. It also
captures any exceptions that are thrown and packages them as
FailedResults, including the possibility that the configuration
file is messed up (which is exposed when we attempt to manipulate
the trace listener list).
</summary>
</member>
<member name="T:Xunit.Sdk.DelegatingTestCommand">
<summary>
Base class used by commands which delegate to inner commands.
</summary>
</member>
<member name="T:Xunit.Sdk.ITestCommand">
<summary>
Interface which represents the ability to invoke of a test method.
</summary>
</member>
<member name="M:Xunit.Sdk.ITestCommand.Execute(System.Object)">
<summary>
Executes the test method.
</summary>
<param name="testClass">The instance of the test class</param>
<returns>Returns information about the test run</returns>
</member>
<member name="M:Xunit.Sdk.ITestCommand.ToStartXml">
<summary>
Creates the start XML to be sent to the callback when the test is about to start
running.
</summary>
<returns>Return the <see cref="T:System.Xml.XmlNode"/> of the start node, or null if the test
is known that it will not be running.</returns>
</member>
<member name="P:Xunit.Sdk.ITestCommand.DisplayName">
<summary>
Gets the display name of the test method.
</summary>
</member>
<member name="P:Xunit.Sdk.ITestCommand.ShouldCreateInstance">
<summary>
Determines if the test runner infrastructure should create a new instance of the
test class before running the test.
</summary>
</member>
<member name="P:Xunit.Sdk.ITestCommand.Timeout">
<summary>
Determines if the test should be limited to running a specific amount of time
before automatically failing.
</summary>
<returns>The timeout value, in milliseconds; if zero, the test will not have
a timeout.</returns>
</member>
<member name="M:Xunit.Sdk.DelegatingTestCommand.#ctor(Xunit.Sdk.ITestCommand)">
<summary>
Creates a new instance of the <see cref="T:Xunit.Sdk.DelegatingTestCommand"/> class.
</summary>
<param name="innerCommand">The inner command to delegate to.</param>
</member>
<member name="M:Xunit.Sdk.DelegatingTestCommand.Execute(System.Object)">
<inheritdoc/>
</member>
<member name="M:Xunit.Sdk.DelegatingTestCommand.ToStartXml">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.DelegatingTestCommand.InnerCommand">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.DelegatingTestCommand.DisplayName">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.DelegatingTestCommand.ShouldCreateInstance">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.DelegatingTestCommand.Timeout">
<inheritdoc/>
</member>
<member name="M:Xunit.Sdk.ExceptionAndOutputCaptureCommand.#ctor(Xunit.Sdk.ITestCommand,Xunit.Sdk.IMethodInfo)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.ExceptionAndOutputCaptureCommand"/>
class.
</summary>
<param name="innerCommand">The command that will be wrapped.</param>
<param name="method">The test method.</param>
</member>
<member name="M:Xunit.Sdk.ExceptionAndOutputCaptureCommand.Execute(System.Object)">
<inheritdoc/>
</member>
<member name="T:Xunit.Sdk.FactCommand">
<summary>
Represents an implementation of <see cref="T:Xunit.Sdk.ITestCommand"/> to be used with
tests which are decorated with the <see cref="T:Xunit.FactAttribute"/>.
</summary>
</member>
<member name="T:Xunit.Sdk.TestCommand">
<summary>
Represents an xUnit.net test command.
</summary>
</member>
<member name="F:Xunit.Sdk.TestCommand.testMethod">
<summary>
The method under test.
</summary>
</member>
<member name="M:Xunit.Sdk.TestCommand.#ctor(Xunit.Sdk.IMethodInfo,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.TestCommand"/> class.
</summary>
<param name="method">The method under test.</param>
<param name="displayName">The display name of the test.</param>
<param name="timeout">The timeout, in milliseconds.</param>
</member>
<member name="M:Xunit.Sdk.TestCommand.Execute(System.Object)">
<inheritdoc/>
</member>
<member name="M:Xunit.Sdk.TestCommand.ToStartXml">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.TestCommand.DisplayName">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.TestCommand.MethodName">
<summary>
Gets the name of the method under test.
</summary>
</member>
<member name="P:Xunit.Sdk.TestCommand.ShouldCreateInstance">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.TestCommand.Timeout">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.TestCommand.TypeName">
<summary>
Gets the name of the type under test.
</summary>
</member>
<member name="M:Xunit.Sdk.FactCommand.#ctor(Xunit.Sdk.IMethodInfo)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.FactCommand"/> class.
</summary>
<param name="method">The test method.</param>
</member>
<member name="M:Xunit.Sdk.FactCommand.Execute(System.Object)">
<inheritdoc/>
</member>
<member name="T:Xunit.Sdk.AssertActualExpectedException">
<summary>
Base class for exceptions that have actual and expected values
</summary>
</member>
<member name="T:Xunit.Sdk.AssertException">
<summary>
The base assert exception class
</summary>
</member>
<member name="M:Xunit.Sdk.AssertException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
</summary>
</member>
<member name="M:Xunit.Sdk.AssertException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
</summary>
<param name="userMessage">The user message to be displayed</param>
</member>
<member name="M:Xunit.Sdk.AssertException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
</summary>
<param name="userMessage">The user message to be displayed</param>
<param name="innerException">The inner exception</param>
</member>
<member name="M:Xunit.Sdk.AssertException.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.AssertException"/> class.
</summary>
<param name="userMessage">The user message to be displayed</param>
<param name="stackTrace">The stack trace to be displayed</param>
</member>
<member name="M:Xunit.Sdk.AssertException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="M:Xunit.Sdk.AssertException.ExcludeStackFrame(System.String)">
<summary>
Determines whether to exclude a line from the stack frame. By default, this method
removes all stack frames from methods beginning with Xunit.Assert or Xunit.Sdk.
</summary>
<param name="stackFrame">The stack frame to be filtered.</param>
<returns>Return true to exclude the line from the stack frame; false, otherwise.</returns>
</member>
<member name="M:Xunit.Sdk.AssertException.FilterStackTrace(System.String)">
<summary>
Filters the stack trace to remove all lines that occur within the testing framework.
</summary>
<param name="stack">The original stack trace</param>
<returns>The filtered stack trace</returns>
</member>
<member name="M:Xunit.Sdk.AssertException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.AssertException.StackTrace">
<summary>
Gets a string representation of the frames on the call stack at the time the current exception was thrown.
</summary>
<returns>A string that describes the contents of the call stack, with the most recent method call appearing first.</returns>
</member>
<member name="P:Xunit.Sdk.AssertException.UserMessage">
<summary>
Gets the user message
</summary>
</member>
<member name="M:Xunit.Sdk.AssertActualExpectedException.#ctor(System.Object,System.Object,System.String)">
<summary>
Creates a new instance of the <see href="AssertActualExpectedException"/> class.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="userMessage">The user message to be shown</param>
</member>
<member name="M:Xunit.Sdk.AssertActualExpectedException.#ctor(System.Object,System.Object,System.String,System.Boolean)">
<summary>
Creates a new instance of the <see href="AssertActualExpectedException"/> class.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="userMessage">The user message to be shown</param>
<param name="skipPositionCheck">Set to true to skip the check for difference position</param>
</member>
<member name="M:Xunit.Sdk.AssertActualExpectedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="M:Xunit.Sdk.AssertActualExpectedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.AssertActualExpectedException.Actual">
<summary>
Gets the actual value.
</summary>
</member>
<member name="P:Xunit.Sdk.AssertActualExpectedException.Expected">
<summary>
Gets the expected value.
</summary>
</member>
<member name="P:Xunit.Sdk.AssertActualExpectedException.Message">
<summary>
Gets a message that describes the current exception. Includes the expected and actual values.
</summary>
<returns>The error message that explains the reason for the exception, or an empty string("").</returns>
<filterpriority>1</filterpriority>
</member>
<member name="T:Xunit.Sdk.ContainsException">
<summary>
Exception thrown when a collection unexpectedly does not contain the expected value.
</summary>
</member>
<member name="M:Xunit.Sdk.ContainsException.#ctor(System.Object)">
<summary>
Creates a new instance of the <see cref="T:Xunit.Sdk.ContainsException"/> class.
</summary>
<param name="expected">The expected object value</param>
</member>
<member name="M:Xunit.Sdk.ContainsException.#ctor(System.Object,System.Object)">
<summary>
Creates a new instance of the <see cref="T:Xunit.Sdk.ContainsException"/> class.
</summary>
<param name="expected">The expected object value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:Xunit.Sdk.ContainsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="T:Xunit.Sdk.ParameterCountMismatchException">
<summary>
Exception to be thrown from <see cref="M:Xunit.Sdk.IMethodInfo.Invoke(System.Object,System.Object[])"/> when the number of
parameter values does not the test method signature.
</summary>
</member>
<member name="M:Xunit.Sdk.ParameterCountMismatchException.#ctor">
<summary/>
</member>
<member name="M:Xunit.Sdk.ParameterCountMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary/>
</member>
<member name="T:Xunit.Sdk.PropertyChangedException">
<summary>
Exception thrown when code unexpectedly fails change a property.
</summary>
</member>
<member name="M:Xunit.Sdk.PropertyChangedException.#ctor(System.String)">
<summary>
Creates a new instance of the <see cref="T:Xunit.Sdk.PropertyChangedException"/> class. Call this constructor
when no exception was thrown.
</summary>
<param name="propertyName">The name of the property that was expected to be changed.</param>
</member>
<member name="M:Xunit.Sdk.PropertyChangedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="T:Xunit.Sdk.SingleException">
<summary>
Exception thrown when the collection did not contain exactly one element.
</summary>
</member>
<member name="M:Xunit.Sdk.SingleException.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.SingleException"/> class.
</summary>
<param name="count">The numbers of items in the collection.</param>
</member>
<member name="M:Xunit.Sdk.SingleException.#ctor(System.Int32,System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.SingleException"/> class.
</summary>
<param name="count">The numbers of items in the collection.</param>
<param name="expected">The object expected to be in the collection.</param>
</member>
<member name="M:Xunit.Sdk.SingleException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="T:Xunit.Sdk.Executor">
<summary>
Internal class used for version-resilient test runners. DO NOT CALL DIRECTLY.
Version-resilient runners should link against xunit.runner.utility.dll and use
ExecutorWrapper instead.
</summary>
</member>
<member name="M:Xunit.Sdk.Executor.#ctor(System.String)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.Executor.AssemblyTestCount">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.AssemblyTestCount.#ctor(Xunit.Sdk.Executor,System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.AssemblyTestCount.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.Executor.EnumerateTests">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.EnumerateTests.#ctor(Xunit.Sdk.Executor,System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.EnumerateTests.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.Executor.RunAssembly">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunAssembly.#ctor(Xunit.Sdk.Executor,System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunAssembly.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.Executor.RunClass">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunClass.#ctor(Xunit.Sdk.Executor,System.String,System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunClass.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.Executor.RunTest">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunTest.#ctor(Xunit.Sdk.Executor,System.String,System.String,System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunTest.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.Executor.RunTests">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunTests.#ctor(Xunit.Sdk.Executor,System.String,System.Collections.Generic.List{System.String},System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Executor.RunTests.InitializeLifetimeService">
<summary/>
</member>
<member name="T:Xunit.Sdk.IsAssignableFromException">
<summary>
Exception thrown when the value is unexpectedly not of the given type or a derived type.
</summary>
</member>
<member name="M:Xunit.Sdk.IsAssignableFromException.#ctor(System.Type,System.Object)">
<summary>
Creates a new instance of the <see cref="T:Xunit.Sdk.IsTypeException"/> class.
</summary>
<param name="expected">The expected type</param>
<param name="actual">The actual object value</param>
</member>
<member name="M:Xunit.Sdk.IsAssignableFromException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="T:Xunit.Record">
<summary>
Allows the user to record actions for a test.
</summary>
</member>
<member name="M:Xunit.Record.Exception(Xunit.Assert.ThrowsDelegate)">
<summary>
Records any exception which is thrown by the given code.
</summary>
<param name="code">The code which may thrown an exception.</param>
<returns>Returns the exception that was thrown by the code; null, otherwise.</returns>
</member>
<member name="M:Xunit.Record.Exception(Xunit.Assert.ThrowsDelegateWithReturn)">
<summary>
Records any exception which is thrown by the given code that has
a return value. Generally used for testing property accessors.
</summary>
<param name="code">The code which may thrown an exception.</param>
<returns>Returns the exception that was thrown by the code; null, otherwise.</returns>
</member>
<member name="T:Xunit.Sdk.AfterTestException">
<summary>
Exception that is thrown when one or more exceptions are thrown from
the After method of a <see cref="T:Xunit.BeforeAfterTestAttribute"/>.
</summary>
</member>
<member name="M:Xunit.Sdk.AfterTestException.#ctor(System.Collections.Generic.IEnumerable{System.Exception})">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.AfterTestException"/> class.
</summary>
<param name="exceptions">The exceptions.</param>
</member>
<member name="M:Xunit.Sdk.AfterTestException.#ctor(System.Exception[])">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.AfterTestException"/> class.
</summary>
<param name="exceptions">The exceptions.</param>
</member>
<member name="M:Xunit.Sdk.AfterTestException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="M:Xunit.Sdk.AfterTestException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<inheritdoc/>
</member>
<member name="P:Xunit.Sdk.AfterTestException.AfterExceptions">
<summary>
Gets the list of exceptions thrown in the After method.
</summary>
</member>
<member name="P:Xunit.Sdk.AfterTestException.Message">
<summary>
Gets a message that describes the current exception.
</summary>
</member>
<member name="P:Xunit.Sdk.AfterTestException.StackTrace">
<summary>
Gets a string representation of the frames on the call stack at the time the current exception was thrown.
</summary>
</member>
<member name="T:Xunit.Sdk.BeforeAfterCommand">
<summary>
Implementation of <see cref="T:Xunit.Sdk.ITestCommand"/> which executes the
<see cref="T:Xunit.BeforeAfterTestAttribute"/> instances attached to a test method.
</summary>
</member>
<member name="M:Xunit.Sdk.BeforeAfterCommand.#ctor(Xunit.Sdk.ITestCommand,System.Reflection.MethodInfo)">
<summary>
Initializes a new instance of the <see cref="T:Xunit.Sdk.BeforeAfterCommand"/> class.
</summary>
<param name="innerCommand">The inner command.</param>
<param name="testMethod">The method.</param>
</member>
<member name="M:Xunit.Sdk.BeforeAfterCommand.Execute(System.Object)">
<summary>
Executes the test method.
</summary>
<param name="testClass">The instance of the test class</param>
<returns>Returns information about the test run</returns>
</member>
<member name="T:Xunit.Sdk.ExecutorCallback">
<summary>
This class supports the xUnit.net infrastructure and is not intended to be used
directly from your code.
</summary>
</member>
<member name="M:Xunit.Sdk.ExecutorCallback.Wrap(System.Object)">
<summary>
This API supports the xUnit.net infrastructure and is not intended to be used
directly from your code.
</summary>
</member>
<member name="M:Xunit.Sdk.ExecutorCallback.Notify(System.String)">
<summary>
This API supports the xUnit.net infrastructure and is not intended to be used
directly from your code.
</summary>
</member>
<member name="M:Xunit.Sdk.ExecutorCallback.ShouldContinue">
<summary>
This API supports the xUnit.net infrastructure and is not intended to be used
directly from your code.
</summary>
</member>
<member name="T:Xunit.Sdk.Guard">
<summary>
Guard class, used for guard clauses and argument validation
</summary>
</member>
<member name="M:Xunit.Sdk.Guard.ArgumentNotNull(System.String,System.Object)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Guard.ArgumentNotNullOrEmpty(System.String,System.Collections.IEnumerable)">
<summary/>
</member>
<member name="M:Xunit.Sdk.Guard.ArgumentValid(System.String,System.String,System.Boolean)">
<summary/>
</member>
<member name="T:Xunit.Sdk.TestResult">
<summary>
Base class which contains XML manipulation helper methods
</summary>
</member>