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