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

testInvalid_LengthMin() public method

    public function testInvalid_LengthMin()
    {
        $password = str_repeat('1', $this->config['password_min_len'] - 1);
        $this->formData['password']['first'] = $password;
        $this->formData['password']['second'] = $password;
        $this->form->submit($this->formData);
        $this->assertFalse($this->form->isValid());
    }