Pantheon\Terminus\FeatureTests\FeatureContext::iShouldNotGetOneOfTheFollowing PHP Метод

iShouldNotGetOneOfTheFollowing() публичный Метод

public iShouldNotGetOneOfTheFollowing ( [array] $list_string ) : [boolean]
$list_string [array]
Результат [boolean]
    public function iShouldNotGetOneOfTheFollowing($list_string)
    {
        try {
            $this->iShouldGetOneOfTheFollowing($list_string);
        } catch (\Exception $e) {
            return true;
        }
        throw new \Exception("Actual output:\n" . $this->output);
    }