Symfony\Component\Console\Tests\Helper\QuestionHelperTest::testNoInteraction PHP Method

testNoInteraction() public method

public testNoInteraction ( )
    public function testNoInteraction()
    {
        $dialog = new QuestionHelper();
        $question = new Question('Do you have a job?', 'not yet');
        $this->assertEquals('not yet', $dialog->ask($this->createStreamableInputInterfaceMock(null, false), $this->createOutputInterface(), $question));
    }