GcDevelopment\Controller\ViewControllerTest::testDownloadActionWithInvalidId PHP Method

testDownloadActionWithInvalidId() public method

Test
    public function testDownloadActionWithInvalidId()
    {
        $this->dispatch('/admin/development/view/download/9999');
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('ViewController');
        $this->assertControllerClass('ViewController');
        $this->assertMatchedRouteName('development/view/download');
    }