GcConfig\Controller\RoleControllerTest::testDeleteActionWithWrongId PHP 메소드

testDeleteActionWithWrongId() 공개 메소드

Test
public testDeleteActionWithWrongId ( ) : void
리턴 void
    public function testDeleteActionWithWrongId()
    {
        $this->dispatch('/admin/config/user/role/delete/9999');
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcConfig');
        $this->assertControllerName('RoleController');
        $this->assertControllerClass('RoleController');
        $this->assertMatchedRouteName('config/user/role/delete');
    }