21
21
<xs : element type =" assertCountType" name =" assertCount" minOccurs =" 0" maxOccurs =" unbounded" />
22
22
<xs : element type =" assertEmptyType" name =" assertEmpty" minOccurs =" 0" maxOccurs =" unbounded" />
23
23
<xs : element type =" assertEqualsType" name =" assertEquals" minOccurs =" 0" maxOccurs =" unbounded" />
24
+ <xs : element type =" assertEqualsWithDeltaType" name =" assertEqualsWithDelta" minOccurs =" 0" maxOccurs =" unbounded" />
25
+ <xs : element type =" assertEqualsCanonicalizingType" name =" assertEqualsCanonicalizing" minOccurs =" 0" maxOccurs =" unbounded" />
26
+ <xs : element type =" assertEqualsIgnoringCaseType" name =" assertEqualsIgnoringCase" minOccurs =" 0" maxOccurs =" unbounded" />
24
27
<xs : element type =" assertFalseType" name =" assertFalse" minOccurs =" 0" maxOccurs =" unbounded" />
25
28
<xs : element type =" assertFileExistsType" name =" assertFileExists" minOccurs =" 0" maxOccurs =" unbounded" />
26
29
<xs : element type =" assertFileNotExistsType" name =" assertFileNotExists" minOccurs =" 0" maxOccurs =" unbounded" />
38
41
<xs : element type =" assertStringNotContainsStringIgnoringCaseType" name =" assertStringNotContainsStringIgnoringCase" minOccurs =" 0" maxOccurs =" unbounded" />
39
42
<xs : element type =" assertNotEmptyType" name =" assertNotEmpty" minOccurs =" 0" maxOccurs =" unbounded" />
40
43
<xs : element type =" assertNotEqualsType" name =" assertNotEquals" minOccurs =" 0" maxOccurs =" unbounded" />
44
+ <xs : element type =" assertNotEqualsWithDeltaType" name =" assertNotEqualsWithDelta" minOccurs =" 0" maxOccurs =" unbounded" />
45
+ <xs : element type =" assertNotEqualsCanonicalizingType" name =" assertNotEqualsCanonicalizing" minOccurs =" 0" maxOccurs =" unbounded" />
46
+ <xs : element type =" assertNotEqualsIgnoringCaseType" name =" assertNotEqualsIgnoringCase" minOccurs =" 0" maxOccurs =" unbounded" />
41
47
<xs : element type =" assertNotInstanceOfType" name =" assertNotInstanceOf" minOccurs =" 0" maxOccurs =" unbounded" />
42
48
<xs : element type =" assertNotNullType" name =" assertNotNull" minOccurs =" 0" maxOccurs =" unbounded" />
43
49
<xs : element type =" assertNotRegExpType" name =" assertNotRegExp" minOccurs =" 0" maxOccurs =" unbounded" />
218
224
<xs : complexType name =" assertEqualsType" >
219
225
<xs : annotation >
220
226
<xs : documentation >
221
- Asserts that two given variables are equal. Can be given a "delta" to allow precision tolerance in floating point comparison.
227
+ Asserts that two given variables are equal.
228
+ </xs : documentation >
229
+ </xs : annotation >
230
+ <xs : choice maxOccurs =" unbounded" >
231
+ <xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
232
+ <xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
233
+ </xs : choice >
234
+ <xs : attribute ref =" message" />
235
+ <xs : attributeGroup ref =" commonActionAttributes" />
236
+ </xs : complexType >
237
+
238
+ <xs : complexType name =" assertEqualsWithDeltaType" >
239
+ <xs : annotation >
240
+ <xs : documentation >
241
+ Asserts that two given variables are equal. Accepts a delta.
222
242
</xs : documentation >
223
243
</xs : annotation >
224
244
<xs : choice maxOccurs =" unbounded" >
230
250
<xs : attributeGroup ref =" commonActionAttributes" />
231
251
</xs : complexType >
232
252
253
+ <xs : complexType name =" assertEqualsIgnoringCaseType" >
254
+ <xs : annotation >
255
+ <xs : documentation >
256
+ Asserts that two given variables are equal.
257
+ </xs : documentation >
258
+ </xs : annotation >
259
+ <xs : choice maxOccurs =" unbounded" >
260
+ <xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
261
+ <xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
262
+ </xs : choice >
263
+ <xs : attribute ref =" message" />
264
+ <xs : attributeGroup ref =" commonActionAttributes" />
265
+ </xs : complexType >
266
+
267
+ <xs : complexType name =" assertEqualsCanonicalizingType" >
268
+ <xs : annotation >
269
+ <xs : documentation >
270
+ Asserts that two given variables are equal. The contents are canonicalized before they are compared.
271
+ For instance, when the two variables $expected and $actual are arrays, then these arrays are
272
+ sorted before they are compared.
273
+ </xs : documentation >
274
+ </xs : annotation >
275
+ <xs : choice maxOccurs =" unbounded" >
276
+ <xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
277
+ <xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
278
+ </xs : choice >
279
+ <xs : attribute ref =" message" />
280
+ <xs : attributeGroup ref =" commonActionAttributes" />
281
+ </xs : complexType >
282
+
233
283
<xs : complexType name =" assertFalseType" >
234
284
<xs : annotation >
235
285
<xs : documentation >
452
502
<xs : complexType name =" assertNotEqualsType" >
453
503
<xs : annotation >
454
504
<xs : documentation >
455
- Asserts that actual and expected are not equal. Can be given a "delta" to allow precision tolerance in floating point comparison.
505
+ Asserts that actual and expected are not equal.
456
506
</xs : documentation >
457
507
</xs : annotation >
458
508
<xs : choice maxOccurs =" unbounded" >
459
509
<xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
460
510
<xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
461
511
</xs : choice >
462
512
<xs : attribute ref =" message" />
513
+ <xs : attributeGroup ref =" commonActionAttributes" />
514
+ </xs : complexType >
515
+
516
+ <xs : complexType name =" assertNotEqualsWithDeltaType" >
517
+ <xs : annotation >
518
+ <xs : documentation >
519
+ Asserts that two given variables are not equal. Accepts a delta.
520
+ </xs : documentation >
521
+ </xs : annotation >
522
+ <xs : choice maxOccurs =" unbounded" >
523
+ <xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
524
+ <xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
525
+ </xs : choice >
463
526
<xs : attribute ref =" delta" />
527
+ <xs : attribute ref =" message" />
528
+ <xs : attributeGroup ref =" commonActionAttributes" />
529
+ </xs : complexType >
530
+
531
+ <xs : complexType name =" assertNotEqualsIgnoringCaseType" >
532
+ <xs : annotation >
533
+ <xs : documentation >
534
+ Asserts that actual and expected are not equal.
535
+ </xs : documentation >
536
+ </xs : annotation >
537
+ <xs : choice maxOccurs =" unbounded" >
538
+ <xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
539
+ <xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
540
+ </xs : choice >
541
+ <xs : attribute ref =" message" />
542
+ <xs : attributeGroup ref =" commonActionAttributes" />
543
+ </xs : complexType >
544
+
545
+ <xs : complexType name =" assertNotEqualsCanonicalizingType" >
546
+ <xs : annotation >
547
+ <xs : documentation >
548
+ Asserts that two given variables are equal. The contents are canonicalized before they are compared.
549
+ For instance, when the two variables $expected and $actual are arrays, then these arrays are
550
+ sorted before they are compared.
551
+ </xs : documentation >
552
+ </xs : annotation >
553
+ <xs : choice maxOccurs =" unbounded" >
554
+ <xs : element name =" expectedResult" type =" expectedResultType" minOccurs =" 0" />
555
+ <xs : element name =" actualResult" type =" actualResultType" minOccurs =" 0" />
556
+ </xs : choice >
557
+ <xs : attribute ref =" message" />
464
558
<xs : attributeGroup ref =" commonActionAttributes" />
465
559
</xs : complexType >
466
560
669
763
<xs : enumeration value =" const" />
670
764
</xs : restriction >
671
765
</xs : simpleType >
672
- </xs : schema >
766
+ </xs : schema >
0 commit comments