GcConfig\Controller\RoleControllerTest::testDeleteActionWithWrongId PHP Méthode

testDeleteActionWithWrongId() public méthode

Test
public testDeleteActionWithWrongId ( ) : void
Résultat 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');
    }