Eccube\Tests\Form\Type\RepeatedPasswordTypeTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        $app = $this->createApplication();
        // CSRF tokenを無効にしてFormを作成
        $this->form = $app['form.factory']->createBuilder('form', null, array('csrf_protection' => false))->add('password', 'repeated_password', array())->getForm();
    }