GcDevelopment\Controller\ViewControllerTest::testUploadActionWithInvalidId PHP Метод

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

Test
public testUploadActionWithInvalidId ( ) : void
Результат void
    public function testUploadActionWithInvalidId()
    {
        $this->dispatch('/admin/development/view/upload/9999');
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('ViewController');
        $this->assertControllerClass('ViewController');
        $this->assertMatchedRouteName('development/view/upload');
    }