GcDevelopment\Controller\ViewControllerTest::testUploadActionWithInvalidId PHP Method

testUploadActionWithInvalidId() public method

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