spec\PhpSpec\Process\Shutdown\ShutdownSpec::it_runs_through_all_registered_actions PHP Method

it_runs_through_all_registered_actions() public method

public it_runs_through_all_registered_actions ( PhpSpec\Process\Shutdown\ShutdownAction $action )
$action PhpSpec\Process\Shutdown\ShutdownAction
    function it_runs_through_all_registered_actions(ShutdownAction $action)
    {
        $action->runAction(null)->shouldBeCalled();
        $this->registerAction($action);
        $this->runShutdown();
    }