spec\GrumPHP\Configuration\GrumPHPSpec::it_configures_the_symfony_process_timeout PHP Метод

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

public it_configures_the_symfony_process_timeout ( Symfony\Component\DependencyInjection\ContainerInterface $container )
$container Symfony\Component\DependencyInjection\ContainerInterface
    function it_configures_the_symfony_process_timeout(ContainerInterface $container)
    {
        $container->getParameter('process_timeout')->willReturn(null);
        $this->getProcessTimeout()->shouldReturn(null);
        $container->getParameter('process_timeout')->willReturn(120);
        $this->getProcessTimeout()->shouldReturn(120.0);
    }