GcConfig\Controller\CmsControllerTest::testEditAction PHP Метод

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

Test
public testEditAction ( ) : void
Результат void
    public function testEditAction()
    {
        $this->dispatch('/admin/config/server', 'POST', array('locale' => 'fr_FR', 'mail_from' => '[email protected]', 'mail_from_name' => 'Pierre Rambaud'));
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('GcConfig');
        $this->assertControllerName('CmsController');
        $this->assertControllerClass('CmsController');
        $this->assertMatchedRouteName('config/server');
    }