Skip to content

Commit c69b2fa

Browse files
marac19901990sebastianbergmann
authored andcommitted
add test case to prove issue
1 parent 44a5e5d commit c69b2fa

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace PHPUnit\Framework;
4+
5+
class AssertNotEqualsTest extends TestCase
6+
{
7+
public function testConfusingMessagesForLogicalNot()
8+
{
9+
$a = 'test contains something';
10+
$b = 'test contains something';
11+
12+
$this->assertNotEquals($b, $a);
13+
}
14+
}

0 commit comments

Comments
 (0)