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());
 }