0

ExceptionMatcherの使用に問題があります...私のサンプル仕様:

class DescribeBall extends \PHPSpec\Context {

private $_ball = null;

function before() {
    $this->_ball = $this->spec(new Ball);
}

function itShouldHaveStatusRolledOnRoll() {
        $this->_ball->roll();
        $this->_ball->getStatus()->should->be('Rolled');
}

function itShouldThrowException() {
    $this->_ball->getException()->should->throwException('Exception','Error');
}
}

私のサンプルクラス

class Ball {
    private $status = null;

    public function roll() {
        $this->status = 'Rolled';
    }

    public function getStatus() {
        return $this->status;
    }

    public function getException() {
        throw new Exception('Error');
    }

}

誰かがこのマッチャーを成功裏に使用しましたか?

$this->_ball->getException()->should->throwException('Exception','Error');
4

1 に答える 1

4

私の同僚に感謝します:

「私が最後にそれを見たとき、それはクロージャを使用していました(マルチェロがその間にそれを変更しない限り)それはまだこのように機能するはずです」:

function itShouldThrowException() { 
    $ball = $this->_ball;
    $this->spec(function() use ($ball) {
            $ball->getException();
        })->should->throwException('Exception','Error');
}
于 2012-07-31T08:39:30.380 に答える