GcDevelopment\Controller\ScriptControllerTest::testDeleteActionWithInvalidId PHP Метод

testDeleteActionWithInvalidId() публичный Метод

Test
public testDeleteActionWithInvalidId ( ) : void
Результат void
    public function testDeleteActionWithInvalidId()
    {
        $this->dispatch('/admin/development/script/delete/9999');
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('ScriptController');
        $this->assertControllerClass('ScriptController');
        $this->assertMatchedRouteName('development/script/delete');
    }