eZ\Bundle\EzPublishCoreBundle\Tests\EventListener\ConsoleCommandListenerTest::testInvalidSiteAccess PHP 메소드

testInvalidSiteAccess() 공개 메소드

    public function testInvalidSiteAccess()
    {
        $this->dispatcher->expects($this->never())->method('dispatch');
        $input = new ArrayInput(array('--siteaccess' => 'foo'), $this->inputDefinition);
        $event = new ConsoleCommandEvent($this->command, $input, $this->testOutput);
        $this->listener->onConsoleCommand($event);
    }