/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
psy
/
psysh
/
test
/
Exception
/
Upload File
HOME
<?php /* * This file is part of Psy Shell. * * (c) 2012-2023 Justin Hileman * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Psy\Test\Exception; use Psy\Exception\Exception; use Psy\Exception\ThrowUpException; class ThrowUpExceptionTest extends \Psy\Test\TestCase { public function testException() { $previous = new \Exception('{{message}}', 123); $e = new ThrowUpException($previous); $this->assertInstanceOf(Exception::class, $e); $this->assertInstanceOf(ThrowUpException::class, $e); $this->assertSame("Throwing Exception with message '{{message}}'", $e->getMessage()); $this->assertSame('{{message}}', $e->getRawMessage()); $this->assertSame(123, $e->getCode()); $this->assertSame($previous, $e->getPrevious()); } }