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 b605b55 commit 3c7344eCopy full SHA for 3c7344e
tests/EnumTest.php
@@ -242,4 +242,12 @@ public function testEqualsComparesProblematicValuesProperly()
242
$this->assertFalse($emptyString->equals($null));
243
$this->assertFalse($null->equals($false));
244
}
245
+
246
+ /**
247
+ * equals()
248
+ */
249
+ public function testEqualsConflictValues()
250
+ {
251
+ $this->assertFalse(EnumFixture::FOO()->equals(EnumConflict::FOO()));
252
+ }
253
0 commit comments