GcContent\Controller\TranslationControllerTest::testCreateActionWithInvalidPostData PHP Метод

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

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