-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathnunit.framework.xml
1104 lines (1085 loc) · 54.3 KB
/
nunit.framework.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>nunit.framework</name>
</assembly>
<members>
<member name="T:NUnit.Framework.Assert">
<summary>
A set of Assert methods
</summary>
</member>
<member name="M:NUnit.Framework.Assert.#ctor">
<summary>
A private constructor disallows any instances of this object.
</summary>
</member>
<member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
<summary>
Asserts that a condition is true. If the condition is false the method throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
<param name="message">The message to display if the condition is false</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
<summary>
Asserts that a condition is true. If the condition is false the method throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
<param name="message">The message to display if the condition is false</param>
</member>
<member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
<summary>
Asserts that a condition is true. If the condition is false the method throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
</member>
<member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
<summary>
Asserts that a condition is false. If the condition is true the method throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
<param name="message">The message to display if the condition is true</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
<summary>
Asserts that a condition is false. If the condition is true the method throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
<param name="message">The message to display if the condition is true</param>
</member>
<member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
<summary>
Asserts that a condition is false. If the condition is true the method throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
<summary>
Verifies that two doubles are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message that will be printed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
<summary>
Verifies that two doubles are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message that will be printed on failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
<summary>
Verifies that two doubles are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
<summary>
Verifies that two floats are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message printed out upon failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
<summary>
Verifies that two floats are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message printed out upon failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
<summary>
Verifies that two floats are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
<summary>
Verifies that two decimals are equal. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message printed out upon failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
<summary>
Verifies that two decimals are equal. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message printed out upon failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
<summary>
Verifies that two decimals are equal. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
<summary>
Verifies that two ints are equal. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message printed out upon failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
<summary>
Verifies that two ints are equal. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message printed out upon failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
<summary>
Verifies that two ints are equal. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Array,System.Array,System.String,System.Object[])">
<summary>
Verifies that two arrays are equal. If they are not,
then an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message printed out upon failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Array,System.Array,System.String)">
<summary>
Verifies that two arrays are equal. If they are not,
then an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message printed out upon failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Array,System.Array)">
<summary>
Verifies that two arrays are equal. If they are not,
then an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
<summary>
Verifies that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. All
non-numeric types are compared by using the <c>Equals</c> method.
Arrays are compared by comparing each element using the same rules.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
<param name="message">The message to display if objects are not equal</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
<summary>
Verifies that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. All
non-numeric types are compared by using the <c>Equals</c> method.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
<param name="message">The message to display if objects are not equal</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
<summary>
Verifies that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. All
non-numeric types are compared by using the <c>Equals</c> method.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
<summary>
The Equals method throws an AssertionException. This is done
to make sure there is no mistake by calling this function.
</summary>
<param name="a"></param>
<param name="b"></param>
</member>
<member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
<summary>
override the default ReferenceEquals to throw an AssertionException. This
implementation makes sure there is no mistake in calling this function
as part of Assert.
</summary>
<param name="a"></param>
<param name="b"></param>
</member>
<member name="M:NUnit.Framework.Assert.IsNumericType(System.Object)">
<summary>
Checks the type of the object, returning true if
the object is a numeric type.
</summary>
<param name="obj">The object to check</param>
<returns>true if the object is a numeric type</returns>
</member>
<member name="M:NUnit.Framework.Assert.ObjectsEqual(System.Object,System.Object)">
<summary>
Used to compare two objects. Two nulls are equal and null
is not equal to non-null. Comparisons between the same
numeric types are fine (Int32 to Int32, or Int64 to Int64),
but the Equals method fails across different types so we
use <c>ToString</c> and compare the results.
</summary>
<param name="expected"></param>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
<summary>
Verifies that the object that is passed in is not equal to <code>null</code>
If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
is thrown.
</summary>
<param name="anObject">The object that is to be tested</param>
<param name="message">The message to be printed when the object is null</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
<summary>
Verifies that the object that is passed in is not equal to <code>null</code>
If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
is thrown.
</summary>
<param name="anObject">The object that is to be tested</param>
</member>
<member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
<summary>
Verifies that the object that is passed in is not equal to <code>null</code>
If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
is thrown.
</summary>
<param name="anObject">The object that is to be tested</param>
</member>
<member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
<summary>
Verifies that the object that is passed in is equal to <code>null</code>
If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
is thrown.
</summary>
<param name="anObject">The object that is to be tested</param>
<param name="message">The message to be printed when the object is not null</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
<summary>
Verifies that the object that is passed in is equal to <code>null</code>
If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
is thrown.
</summary>
<param name="anObject">The object that is to be tested</param>
</member>
<member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
<summary>
Verifies that the object that is passed in is equal to <code>null</code>
If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
is thrown.
</summary>
<param name="anObject">The object that is to be tested</param>
</member>
<member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
<summary>
Asserts that two objects refer to the same object. If they
are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be printed when the two objects are not the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
<summary>
Asserts that two objects refer to the same object. If they
are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be printed when the object is null</param>
</member>
<member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
<summary>
Asserts that two objects refer to the same object. If they
are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
<summary>
Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
that are passed in. This is used by the other Assert functions.
</summary>
<param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.Fail(System.String)">
<summary>
Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
passed in. This is used by the other Assert functions.
</summary>
<param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
</member>
<member name="M:NUnit.Framework.Assert.Fail">
<summary>
Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
This is used by the other Assert functions.
</summary>
</member>
<member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
<summary>
Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
that are passed in. This causes the test to be reported as ignored.
</summary>
<param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.Ignore(System.String)">
<summary>
Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
passed in. This causes the test to be reported as ignored.
</summary>
<param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
</member>
<member name="M:NUnit.Framework.Assert.Ignore">
<summary>
Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
This causes the test to be reported as ignored.
</summary>
<param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
</member>
<member name="M:NUnit.Framework.Assert.FailNotEquals(System.Object,System.Object,System.String,System.Object[])">
<summary>
This method is called when two objects have been compared and found to be
different. This prints a nice message to the screen.
</summary>
<param name="message">The message that is to be printed prior to the comparison failure</param>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.FailArraysNotEqual(System.Int32,System.Array,System.Array,System.String,System.Object[])">
<summary>
This method is called when two arrays have been compared and found to be
different. This prints a nice message to the screen.
</summary>
<param name="index">The index at which the failure occured</param>
<param name="expected">The expected array</param>
<param name="actual">The actual array</param>
<param name="message">The message that is to be printed prior to the comparison failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.FailNotSame(System.Object,System.Object,System.String,System.Object[])">
<summary>
This method is called when the two objects are not the same.
</summary>
<param name="message">The message to be printed on the screen</param>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="P:NUnit.Framework.Assert.Counter">
<summary>
Gets the number of assertions executed so far and
resets the counter to zero.
</summary>
</member>
<member name="T:NUnit.Framework.Assertion">
<summary>A set of Assert methods.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.Assert(System.String,System.Boolean)">
<summary>
Asserts that a condition is true. If it isn't it throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="message">The message to display is the condition
is false</param>
<param name="condition">The evaluated condition</param>
</member>
<member name="M:NUnit.Framework.Assertion.Assert(System.Boolean)">
<summary>
Asserts that a condition is true. If it isn't it throws
an <see cref="T:NUnit.Framework.AssertionException"/>.
</summary>
<param name="condition">The evaluated condition</param>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.Double,System.Double,System.Double)">
<summary>
/// Asserts that two doubles are equal concerning a delta. If the
expected value is infinity then the delta value is ignored.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.Single,System.Single,System.Single)">
<summary>
/// Asserts that two singles are equal concerning a delta. If the
expected value is infinity then the delta value is ignored.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.Object,System.Object)">
<summary>Asserts that two objects are equal. If they are not
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.Int32,System.Int32)">
<summary>Asserts that two ints are equal. If they are not
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Int32,System.Int32)">
<summary>Asserts that two ints are equal. If they are not
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Double,System.Double,System.Double)">
<summary>Asserts that two doubles are equal concerning a delta.
If the expected value is infinity then the delta value is ignored.
</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Single,System.Single,System.Single)">
<summary>Asserts that two floats are equal concerning a delta.
If the expected value is infinity then the delta value is ignored.
</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertEquals(System.String,System.Object,System.Object)">
<summary>
Asserts that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. Numeric
types are compared via string comparision on their contents to
avoid problems comparing values between different types. All
non-numeric types are compared by using the <c>Equals</c> method.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertNotNull(System.Object)">
<summary>Asserts that an object isn't null.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertNotNull(System.String,System.Object)">
<summary>Asserts that an object isn't null.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertNull(System.Object)">
<summary>Asserts that an object is null.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertNull(System.String,System.Object)">
<summary>Asserts that an object is null.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertSame(System.Object,System.Object)">
<summary>Asserts that two objects refer to the same object. If they
are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
</member>
<member name="M:NUnit.Framework.Assertion.AssertSame(System.String,System.Object,System.Object)">
<summary>Asserts that two objects refer to the same object.
If they are not an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
</member>
<member name="M:NUnit.Framework.Assertion.Fail">
<summary>Fails a test with no message.</summary>
</member>
<member name="M:NUnit.Framework.Assertion.Fail(System.String)">
<summary>Fails a test with the given message.</summary>
</member>
<member name="T:NUnit.Framework.AssertionException">
<summary>
Thrown when an assertion failed.
</summary>
</member>
<member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
<summary>
</summary>
<param name="message"></param>
</member>
<member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
<summary>
Standard constructor
</summary>
<param name="message">The error message that explains
the reason for the exception</param>
<param name="inner">The exception that caused the
current exception</param>
</member>
<member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serialization Constructor
</summary>
</member>
<member name="T:NUnit.Framework.AssertionFailureMessage">
<summary>
Summary description for AssertionFailureMessage.
</summary>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.#ctor">
<summary>
Protected constructor, used since this class is only used via
static methods
</summary>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.IsPreClipped(System.Int32)">
<summary>
Called to test if the position will cause clipping
to occur in the early part of a string.
</summary>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.IsPostClipped(System.String,System.Int32)">
<summary>
Called to test if the position will cause clipping
to occur in the later part of a string past the
specified position.
</summary>
<param name="sString"></param>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.ClipAroundPosition(System.String,System.Int32)">
<summary>
Renders up to M characters before, and up to N characters after
the specified index position. If leading or trailing text is
clipped, and elipses "..." is added where the missing text would
be.
Clips strings to limit previous or post newline characters,
since these mess up the comparison
</summary>
<param name="sString"></param>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.PreClip(System.String,System.Int32)">
<summary>
Clips the string before the specified position, and appends
ellipses (...) to show that clipping has occurred
</summary>
<param name="sString"></param>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.PostClip(System.String,System.Int32)">
<summary>
Clips the string after the specified position, and appends
ellipses (...) to show that clipping has occurred
</summary>
<param name="sString"></param>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildBefore(System.String,System.Int32)">
<summary>
Builds the first half of a string, limiting the number of
characters before the position, and removing newline
characters. If the leading string is truncated, the
ellipses (...) characters are appened.
</summary>
<param name="sString"></param>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildAfter(System.String,System.Int32)">
<summary>
Builds the last half of a string, limiting the number of
characters after the position, and removing newline
characters. If the string is truncated, the
ellipses (...) characters are appened.
</summary>
<param name="sString"></param>
<param name="iPosition"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.ExpectedText">
<summary>
Text that is rendered for the expected value
</summary>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.ButWasText">
<summary>
Text rendered for the actual value. This text should
be the same length as the Expected text, so leading
spaces should pad this string to ensure they match.
</summary>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.AppendExpectedAndActual(System.Text.StringBuilder,System.Object,System.Object)">
<summary>
Raw line that communicates the expected value, and the actual value
</summary>
<param name="sbOutput"></param>
<param name="expected"></param>
<param name="actual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.DisplayString(System.Object)">
<summary>
Display an object as a string
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.Quoted(System.String)">
<summary>
Quote a string
</summary>
<param name="text"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.AppendPositionMarker(System.Text.StringBuilder,System.Int32)">
<summary>
Draws a marker under the expected/actual strings that highlights
where in the string a mismatch occurred.
</summary>
<param name="sbOutput"></param>
<param name="iPosition"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.InputsAreStrings(System.Object,System.Object)">
<summary>
Tests two objects to determine if they are strings.
</summary>
<param name="expected"></param>
<param name="actual"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.LengthsDifferent(System.String,System.String)">
<summary>
Tests if two strings are different lengths.
</summary>
<param name="sExpected"></param>
<param name="sActual"></param>
<returns>True if string lengths are different</returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.LengthsDifferent(System.Object[],System.Object[])">
<summary>
Tests if two arrays are different lengths.
</summary>
<param name="sExpected"></param>
<param name="sActual"></param>
<returns>True if array lengths are different</returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildLengthsDifferentMessage(System.Text.StringBuilder,System.String,System.String)">
<summary>
Used to construct a message when the lengths of two strings are
different. Also includes the strings themselves, to allow them
to be compared visually.
</summary>
<param name="sbOutput"></param>
<param name="sExpected"></param>
<param name="sActual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildStringLengthDifferentReport(System.Text.StringBuilder,System.String,System.String)">
<summary>
Reports the length of two strings that are different lengths
</summary>
<param name="sbOutput"></param>
<param name="sExpected"></param>
<param name="sActual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildStringLengthSameReport(System.Text.StringBuilder,System.String,System.String)">
<summary>
Reports the length of two strings that are the same length
</summary>
<param name="sbOutput"></param>
<param name="sExpected"></param>
<param name="sActual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildStringLengthReport(System.Text.StringBuilder,System.String,System.String)">
<summary>
Reports whether the string lengths are the same or different, and
what the string lengths are.
</summary>
<param name="sbOutput"></param>
<param name="sExpected"></param>
<param name="sActual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildArrayLengthDifferentReport(System.Text.StringBuilder,System.Array,System.Array)">
<summary>
Reports the length of two arrays that are different lengths
</summary>
<param name="sbOutput"></param>
<param name="expected"></param>
<param name="actual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildArrayLengthSameReport(System.Text.StringBuilder,System.Array,System.Array)">
<summary>
Reports the length of two arrays that are the same length
</summary>
<param name="sbOutput"></param>
<param name="expected"></param>
<param name="actual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildArrayLengthReport(System.Text.StringBuilder,System.Array,System.Array)">
<summary>
Reports whether the array lengths are the same or different, and
what the array lengths are.
</summary>
<param name="sbOutput"></param>
<param name="expected"></param>
<param name="actual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildContentDifferentAtPosition(System.Text.StringBuilder,System.String,System.String,System.Int32)">
<summary>
</summary>
<param name="sbOutput"></param>
<param name="sExpected"></param>
<param name="sActual"></param>
<param name="iPosition"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.ConvertWhitespace(System.String)">
<summary>
Turns CR, LF, or TAB into visual indicator to preserve visual marker
position. This is done by replacing the '\r' into '\\' and 'r'
characters, and the '\n' into '\\' and 'n' characters, and '\t' into
'\\' and 't' characters.
Thus the single character becomes two characters for display.
</summary>
<param name="sInput"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.FindMismatchPosition(System.String,System.String,System.Int32)">
<summary>
Shows the position two strings start to differ. Comparison
starts at the start index.
</summary>
<param name="sExpected"></param>
<param name="sActual"></param>
<param name="iStart"></param>
<returns>-1 if no mismatch found, or the index where mismatch found</returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildContentDifferentMessage(System.Text.StringBuilder,System.String,System.String)">
<summary>
Constructs a message that can be displayed when the content of two
strings are different, but the string lengths are the same. The
message will clip the strings to a reasonable length, centered
around the first position where they are mismatched, and draw
a line marking the position of the difference to make comparison
quicker.
</summary>
<param name="sbOutput"></param>
<param name="sExpected"></param>
<param name="sActual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildStringsDifferentMessage(System.Text.StringBuilder,System.String,System.String)">
<summary>
Called to append a message when the input strings are different.
A different message is rendered when the lengths are mismatched,
and when the lengths match but content is mismatched.
</summary>
<param name="sbOutput"></param>
<param name="expected"></param>
<param name="actual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.BuildArraysDifferentMessage(System.Text.StringBuilder,System.Int32,System.Array,System.Array)">
<summary>
Called to append a message when the input arrays are different.
A different message is rendered when the lengths are mismatched,
and when the lengths match but content is mismatched.
</summary>
<param name="sbOutput"></param>
<param name="expected"></param>
<param name="actual"></param>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.CreateStringBuilder(System.String,System.Object[])">
<summary>
Used to create a StringBuilder that is used for constructing
the output message when text is different. Handles initialization
when a message is provided. If message is null, an empty
StringBuilder is returned.
</summary>
<param name="message"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.FormatMessageForFailNotEquals(System.Object,System.Object,System.String,System.Object[])">
<summary>
Called to create a message when two objects have been found to
be unequal. If the inputs are strings, a special message is
rendered that can help track down where the strings are different,
based on differences in length, or differences in content.
If the inputs are not strings, the ToString method of the objects
is used to show what is different about them.
</summary>
<param name="expected"></param>
<param name="actual"></param>
<param name="message"></param>
<param name="args"></param>
<returns></returns>
</member>
<member name="M:NUnit.Framework.AssertionFailureMessage.FormatMessageForFailArraysNotEqual(System.Int32,System.Array,System.Array,System.String,System.Object[])">
<summary>
Called to create a message when two arrays are not equal.
</summary>
<param name="message"></param>
<param name="expected"></param>
<param name="actual"></param>
<returns></returns>
</member>
<member name="P:NUnit.Framework.AssertionFailureMessage.PreClipLength">
<summary>
Number of characters before a highlighted position before
clipping will occur. Clipped text is replaced with an
elipses "..."
</summary>
</member>
<member name="P:NUnit.Framework.AssertionFailureMessage.PostClipLength">
<summary>
Number of characters after a highlighted position before
clipping will occur. Clipped text is replaced with an
elipses "..."
</summary>
</member>
<member name="P:NUnit.Framework.AssertionFailureMessage.NewLine">
<summary>
Property called to insert newline characters into a string
</summary>
</member>
<member name="T:NUnit.Framework.CategoryAttribute">
<summary>
Summary description for CategoryAttribute.
</summary>
</member>
<member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
<summary>
Construct attribute for a given category
</summary>
<param name="name">The name of the category</param>
</member>
<member name="P:NUnit.Framework.CategoryAttribute.Name">
<summary>
The name of the category
</summary>
</member>
<member name="T:NUnit.Framework.ExpectedExceptionAttribute">
<summary>
ExpectedAttributeException.
</summary>
</member>
<member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
<summary>
Constructor for a given type of exception
</summary>
<param name="exceptionType"></param>
</member>
<member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type,System.String)">
<summary>
Constructor for a given type of exception and expected message text
</summary>
<param name="exceptionType"></param>
<param name="expectedMessage"></param>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExceptionType">
<summary>
The expected exception type
</summary>
</member>
<member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
<summary>
The expected message
</summary>
</member>
<member name="T:NUnit.Framework.ExplicitAttribute">
<summary>
ExplicitAttribute marks a test or test fixture so that it will
only be run if explicitly executed from the gui or command line
or if it is included by use of a filter. The test will not be
run simply because an enclosing suite is run.
</summary>
</member>
<member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="T:NUnit.Framework.IgnoreAttribute">
<summary>
IgnoreAttribute.
</summary>
</member>
<member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
<summary>
Constructor
</summary>
<param name="reason"></param>
</member>
<member name="P:NUnit.Framework.IgnoreAttribute.Reason">
<summary>
The reason for ignoring a test
</summary>
</member>
<member name="T:NUnit.Framework.IgnoreException">
<summary>
Thrown when an assertion failed.
</summary>
</member>
<member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
<summary>
</summary>
<param name="message"></param>