ZendTest\Stratigility\NextTest::throwablesProvider PHP Method

throwablesProvider() public method

public throwablesProvider ( )
    public function throwablesProvider()
    {
        if (class_exists('Error')) {
            (yield 'throwable' => [new \Error()]);
        }
        (yield 'exception' => [new \Exception()]);
    }
NextTest