Example #1
0
 public function testGetClass()
 {
     $std = new \Psc\Exception('Standard');
     $this->assertEquals('Psc\\Exception', $std->getClass());
     $special = new MySpecialException('spec');
     $this->assertEquals('Psc\\MySpecialException', $special->getClass());
 }