AssetManagerTest\ModuleTest::testWillIgnoreInvalidResponseType PHP Method

testWillIgnoreInvalidResponseType() public method

    public function testWillIgnoreInvalidResponseType()
    {
        $cliResponse = $this->getMock(ConsoleResponse::class, array(), array(), '', false);
        $mvcEvent = $this->getMock(MvcEvent::class);
        $module = new Module();
        $cliResponse->expects($this->never())->method('getStatusCode');
        $mvcEvent->expects($this->once())->method('getResponse')->will($this->returnValue($cliResponse));
        $this->assertNull($module->onDispatch($mvcEvent));
    }