GcContent\Controller\TranslationControllerTest::testCreateActionWithInvalidPostData PHP Method

testCreateActionWithInvalidPostData() public method

Test
    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');
    }