예제 #1
0
파일: NoneTest.php 프로젝트: ustream/option
 /**
  * @test
  * @throws RuntimeException
  * @return void
  */
 public function noneAlwaysThrowsException()
 {
     $this->setExpectedException('RuntimeException');
     $none = new None();
     $none->getOrThrow(new RuntimeException());
 }