GcDevelopment\Controller\ViewControllerTest::testDeleteActionWithInvalidId PHP Method

testDeleteActionWithInvalidId() public method

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