GcDevelopment\Controller\ViewControllerTest::testDeleteActionWithInvalidId PHP Méthode

testDeleteActionWithInvalidId() public méthode

Test
public testDeleteActionWithInvalidId ( ) : void
Résultat void
    public function testDeleteActionWithInvalidId()
    {
        $this->dispatch('/admin/development/view/delete/9999');
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('ViewController');
        $this->assertControllerClass('ViewController');
        $this->assertMatchedRouteName('development/view/delete');
    }