integration\PhpSpec\Console\Prompter\QuestionTest::setUp PHP Method

setUp() protected method

protected setUp ( )
    protected function setUp()
    {
        $this->input = $this->createMock('Symfony\\Component\\Console\\Input\\InputInterface');
        $this->output = $this->createMock('Symfony\\Component\\Console\\Output\\OutputInterface');
        $this->questionHelper = $this->createMock('Symfony\\Component\\Console\\Helper\\QuestionHelper');
        $this->prompter = new Question($this->input, $this->output, $this->questionHelper);
    }