Example #1
0
 /**
  * Tests getting exception presentation
  * @covers \Copycat\System\Exception::__toString()
  */
 public function testToString()
 {
     $this->assertInternalType('string', $this->exception->__toString());
     $this->assertEquals($this->exception->getPresentation() . \PHP_EOL . $this->exception->getTraceAsString(), $this->exception->__toString());
 }