Skip to content

Commit 1aad234

Browse files
committed
MQE-2076: [PHPUnit 9] assertEquals and assertNotEquals optional parameters removed
1 parent 8d6b4fc commit 1aad234

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

docs/test/assertions.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,17 @@ Attribute|Type|Use|Description
179179

180180
See [assertEquals docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertEquals).
181181

182+
Attribute|Type|Use|Description
183+
---|---|---|---
184+
`message`|string|optional|Text of informational message about a cause of failure.
185+
`stepKey`|string|required| A unique identifier of the text step.
186+
`before`|string|optional| `stepKey` of action that must be executed next.
187+
`after`|string|optional| `stepKey` of the preceding action.
188+
189+
### assertEqualsWithDelta
190+
191+
See [assertEqualsWithDelta docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertEqualsWithDelta).
192+
182193
Attribute|Type|Use|Description
183194
---|---|---|---
184195
`delta`|string|optional|
@@ -187,6 +198,28 @@ Attribute|Type|Use|Description
187198
`before`|string|optional| `stepKey` of action that must be executed next.
188199
`after`|string|optional| `stepKey` of the preceding action.
189200

201+
### assertEqualsCanonicalizing
202+
203+
See [assertEqualsCanonicalizing docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertEqualsCanonicalizing).
204+
205+
Attribute|Type|Use|Description
206+
---|---|---|---
207+
`message`|string|optional|Text of informational message about a cause of failure.
208+
`stepKey`|string|required| A unique identifier of the text step.
209+
`before`|string|optional| `stepKey` of action that must be executed next.
210+
`after`|string|optional| `stepKey` of the preceding action.
211+
212+
### assertEqualsIgnoringCase
213+
214+
See [assertEqualsIgnoringCase docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertEqualsIgnoringCase).
215+
216+
Attribute|Type|Use|Description
217+
---|---|---|---
218+
`message`|string|optional|Text of informational message about a cause of failure.
219+
`stepKey`|string|required| A unique identifier of the text step.
220+
`before`|string|optional| `stepKey` of action that must be executed next.
221+
`after`|string|optional| `stepKey` of the preceding action.
222+
190223
### assertFalse
191224

192225
See [assertFalse docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertFalse).
@@ -367,6 +400,17 @@ Attribute|Type|Use|Description
367400

368401
See [assertNotEquals docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertNotEquals).
369402

403+
Attribute|Type|Use|Description
404+
---|---|---|---
405+
`message`|string|optional|Text of informational message about a cause of failure.
406+
`stepKey`|string|required| A unique identifier of the text step.
407+
`before`|string|optional| `stepKey` of action that must be executed next.
408+
`after`|string|optional| `stepKey` of the preceding action.
409+
410+
### assertNotEqualsWithDelta
411+
412+
See [assertNotEqualsWithDelta docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertNotEqualsWithDelta).
413+
370414
Attribute|Type|Use|Description
371415
---|---|---|---
372416
`delta`|string|optional|
@@ -375,6 +419,28 @@ Attribute|Type|Use|Description
375419
`before`|string|optional| `stepKey` of action that must be executed next.
376420
`after`|string|optional| `stepKey` of the preceding action.
377421

422+
### assertNotEqualsCanonicalizing
423+
424+
See [assertNotEqualsCanonicalizing docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertNotEqualsCanonicalizing).
425+
426+
Attribute|Type|Use|Description
427+
---|---|---|---
428+
`message`|string|optional|Text of informational message about a cause of failure.
429+
`stepKey`|string|required| A unique identifier of the text step.
430+
`before`|string|optional| `stepKey` of action that must be executed next.
431+
`after`|string|optional| `stepKey` of the preceding action.
432+
433+
### assertNotEqualsIgnoringCase
434+
435+
See [assertNotEqualsIgnoringCase docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertNotEqualsIgnoringCase).
436+
437+
Attribute|Type|Use|Description
438+
---|---|---|---
439+
`message`|string|optional|Text of informational message about a cause of failure.
440+
`stepKey`|string|required| A unique identifier of the text step.
441+
`before`|string|optional| `stepKey` of action that must be executed next.
442+
`after`|string|optional| `stepKey` of the preceding action.
443+
378444
### assertNotInstanceOf
379445

380446
See [assertNotInstanceOf docs on codeception.com](http://codeception.com/docs/modules/Asserts#assertNotInstanceOf).

0 commit comments

Comments
 (0)