You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->assertSame('Access to an undefined property EnumTypeAssertions\Foo::$value.', $errors[0]->getMessage());
477
+
$this->assertCount(3, $errors);
478
+
$this->assertSame('Access to an undefined property EnumTypeAssertions\Foo::TWO::$value.', $errors[0]->getMessage());
479
479
$this->assertSame(23, $errors[0]->getLine());
480
480
$this->assertSame('Access to undefined constant EnumTypeAssertions\Baz::NONEXISTENT.', $errors[1]->getMessage());
481
481
$this->assertSame(78, $errors[1]->getLine());
482
+
$this->assertSame('Strict comparison using === between EnumTypeAssertions\Foo::ONE and EnumTypeAssertions\Foo::TWO will always evaluate to false.', $errors[2]->getMessage());
0 commit comments