GcDevelopment\Controller\LayoutControllerTest::testCreateActionWithInvalidPostData PHP Method

testCreateActionWithInvalidPostData() public method

Test
    public function testCreateActionWithInvalidPostData()
    {
        $this->dispatch('/admin/development/layout/create', 'POST', array());
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcDevelopment');
        $this->assertControllerName('LayoutController');
        $this->assertControllerClass('LayoutController');
        $this->assertMatchedRouteName('development/layout/create');
    }