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

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

Test
public testCreateActionWithInvalidPostData ( ) : void
Результат void
    public function testCreateActionWithInvalidPostData()
    {
        $this->dispatch('/admin/development/view/create', 'POST', array());
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('ViewController');
        $this->assertControllerClass('ViewController');
        $this->assertMatchedRouteName('development/view/create');
    }