Symfony\Component\Console\Tests\Helper\SymfonyQuestionHelperTest::testAskThrowsExceptionOnMissingInput PHP Method

testAskThrowsExceptionOnMissingInput() public method

    public function testAskThrowsExceptionOnMissingInput()
    {
        $dialog = new SymfonyQuestionHelper();
        $dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream('')), $this->createOutputInterface(), new Question('What\'s your name?'));
    }