Eccube\Tests\Form\Type\Master\ZipTypeTest::testInvalidZip01_LengthMax PHP 메소드

testInvalidZip01_LengthMax() 공개 메소드

    public function testInvalidZip01_LengthMax()
    {
        $this->formData['zip']['zip01'] = str_repeat('1', $this->config['zip01_len'] + 1);
        $this->form->submit($this->formData);
        $this->assertFalse($this->form->isValid());
    }