Example #1
0
 public function testGetSourceValidatorName()
 {
     $exception = new Exception();
     $this->assertSame('', $exception->getSourceValidatorName());
     $exception->pushValidatorName('foo');
     $this->assertSame('foo', $exception->getSourceValidatorName());
     $exception->pushValidatorName('bar');
     $this->assertSame('bar::foo', $exception->getSourceValidatorName());
 }