addVoidMethod() 공개 메소드

public addVoidMethod ( $file, $class, $method )
예제 #1
0
파일: score.php 프로젝트: xihewang/atoum
 public function testGetLastVoidMethod()
 {
     $this->if($score = new atoum\score())->then->variable($score->getLastVoidMethod())->isNull()->if($score->addPass())->then->variable($score->getLastVoidMethod())->isNull()->if($score->addVoidMethod($file = uniqid(), $class = uniqid(), $method = uniqid()))->then->array($score->getLastVoidMethod())->isEqualTo(array('file' => $file, 'class' => $class, 'method' => $method));
 }