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');
    }