@@ -69,7 +69,7 @@ class AssertTestCest
69
69
$I->assertStringNotContainsStringIgnoringCase("apple", "banana", "pass"); // stepKey: assertStringNotContainsStringIgnoringCase
70
70
$I->assertNotEmpty([1, 2], "pass"); // stepKey: assertNotEmpty1
71
71
$I->assertNotEmpty($text, "pass"); // stepKey: assertNotEmpty2
72
- $I->assertNotEquals(2, 5, "pass", 0 ); // stepKey: assertNotEquals
72
+ $I->assertNotEquals(2, 5, "pass"); // stepKey: assertNotEquals
73
73
$I->assertNotNull("abc", "pass"); // stepKey: assertNotNull1
74
74
$I->assertNotNull($text, "pass"); // stepKey: assertNotNull2
75
75
$I->assertNotRegExp("/foo/", "bar", "pass"); // stepKey: assertNotRegExp
@@ -105,7 +105,7 @@ class AssertTestCest
105
105
$I->assertNotContains("bc", $text, "pass"); // stepKey: assertNotContains2BackwardCompatible
106
106
$I->assertNotEmpty([1, 2], "pass"); // stepKey: assertNotEmpty1BackwardCompatible
107
107
$I->assertNotEmpty($text, "pass"); // stepKey: assertNotEmpty2BackwardCompatible
108
- $I->assertNotEquals(2, 5, "pass", 0 ); // stepKey: assertNotEqualsBackwardCompatible
108
+ $I->assertNotEquals(2, 5, "pass"); // stepKey: assertNotEqualsBackwardCompatible
109
109
$I->assertNotNull("abc", "pass"); // stepKey: assertNotNull1BackwardCompatible
110
110
$I->assertNotNull($text, "pass"); // stepKey: assertNotNull2BackwardCompatible
111
111
$I->assertNotRegExp("/foo/", "bar", "pass"); // stepKey: assertNotRegExpBackwardCompatible
@@ -155,5 +155,11 @@ class AssertTestCest
155
155
$I->assertElementContainsAttribute("#username", "value", $I->retrieveEntityField('createData1', 'firstname', 'test')); // stepKey: assertElementContainsAttribute8
156
156
$I->comment("assert entity resolution");
157
157
$I->assertEquals("John", "Doe", "pass"); // stepKey: assertEqualsEntity
158
+ $I->assertEqualsWithDelta(10.0000, 10.0000, 1, "pass"); // stepKey: a1
159
+ $I->assertNotEqualsWithDelta(10.0000, 12.0000, 1, "pass"); // stepKey: a2
160
+ $I->assertEqualsCanonicalizing(["4", "2", "1", "3"], ["1", "2", "3", "4"], "pass"); // stepKey: a3
161
+ $I->assertNotEqualsCanonicalizing(["5", "8", "7", "9"], ["1", "2", "3", "4"], "pass"); // stepKey: a4
162
+ $I->assertEqualsIgnoringCase("Cat", "cat", "pass"); // stepKey: a5
163
+ $I->assertNotEqualsIgnoringCase("Cat", "Dog", "pass"); // stepKey: a6
158
164
}
159
165
}
0 commit comments