We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ba1fd commit c5e11d9Copy full SHA for c5e11d9
test/unit/test/limeTestTest.php
@@ -2,7 +2,7 @@
2
3
require_once(__DIR__.'/../../bootstrap/unit.php');
4
5
-$t = new lime_test(26);
+$t = new lime_test(28);
6
7
$t->comment('A. Equal numbers');
8
$t->is(1, 1);
@@ -41,3 +41,5 @@
41
$t->comment('F. Values that should not be equal');
42
$t->isnt(true, 'Hello');
43
$t->isnt('Hello', true);
44
+$t->isnt('Hello', 0);
45
+$t->isnt(0, 'Hello');
0 commit comments