GcDevelopment\Controller\LayoutControllerTest::testDeleteActionWithInvalidId PHP Method

testDeleteActionWithInvalidId() public method

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