GcDevelopment\Controller\ViewControllerTest::testEditActionWithInvalidId PHP Method

testEditActionWithInvalidId() public method

Test
public testEditActionWithInvalidId ( ) : void
return void
    public function testEditActionWithInvalidId()
    {
        $this->dispatch('/admin/development/view/edit/99999');
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('ViewController');
        $this->assertControllerClass('ViewController');
        $this->assertMatchedRouteName('development/view/edit');
    }