GcConfig\Controller\RoleControllerTest::testEditActionWithWrongId PHP Method

testEditActionWithWrongId() public method

Test
public testEditActionWithWrongId ( ) : void
return void
    public function testEditActionWithWrongId()
    {
        $this->dispatch('/admin/config/user/role/edit/9999');
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('GcConfig');
        $this->assertControllerName('RoleController');
        $this->assertControllerClass('RoleController');
        $this->assertMatchedRouteName('config/user/role/edit');
    }