Alex\BehatLauncher\Behat\RunUnitList::isPending PHP Method

isPending() public method

public isPending ( ) : boolean
return boolean
    public function isPending()
    {
        foreach ($this->all() as $one) {
            if (!$one->isPending()) {
                return false;
            }
        }
        return true;
    }

Usage Example

Example #1
0
 /**
  * @return boolean
  */
 public function isPending()
 {
     return $this->units->isPending();
 }