Skip to content

Commit

Permalink
Merge branch '8.5' into 9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 17, 2021
2 parents 0da12cc + 5071503 commit aad51c0
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions tests/unit/Framework/Exception/ExceptionTest.php
Expand Up @@ -13,16 +13,13 @@ class ExceptionTest extends TestCase
{
public function testExceptionSleep(): void
{
$exception = new Exception();
$actual = (new Exception)->__sleep();

$expectedArray = [
'serializableTrace',
'message',
'code',
'file',
'line',
];

$this->assertSame($expectedArray, $exception->__sleep());
$this->assertCount(5, $actual);
$this->assertContains('serializableTrace', $actual);
$this->assertContains('message', $actual);
$this->assertContains('code', $actual);
$this->assertContains('file', $actual);
$this->assertContains('line', $actual);
}
}

0 comments on commit aad51c0

Please sign in to comment.