예제 #1
0
파일: NoneTest.php 프로젝트: ustream/option
 /**
  * @test
  * @return void
  */
 public function otherwiseTranslatesNoneForVoid()
 {
     $none = new None();
     $this->assertInstanceOf('\\Ustream\\Option\\None', $none->otherwise(function () {
     }));
 }