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

testValid_Space() public method

public testValid_Space ( )
    public function testValid_Space()
    {
        // これも通っていいのか?
        $password = '1234 \\n\\s\\t78';
        $this->formData['password']['first'] = $password;
        $this->formData['password']['second'] = $password;
        $this->form->submit($this->formData);
        $this->assertTrue($this->form->isValid());
    }