GcDevelopment\Controller\ViewControllerTest::testCreateActionWithInvalidPostData PHP Method

testCreateActionWithInvalidPostData() public method

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