示例#1
0
 /**
  * @test
  * @return void
  */
 public function noneThrowsExceptionForGet()
 {
     $this->setExpectedException('RuntimeException');
     $none = new None();
     $none->get();
 }