Scientist\Result::isMatch PHP 메소드

isMatch() 공개 메소드

Determine whether the callback result matches the control.
public isMatch ( ) : boolean
리턴 boolean
    public function isMatch()
    {
        return $this->match;
    }

Usage Example

예제 #1
0
 public function test_result_can_have_match_status()
 {
     $r = new Result();
     $r->setMatch(true);
     $this->assertTrue(true, $r->isMatch());
 }