Eccube\Tests\Form\Type\Master\ZipTypeTest::testInvalidZip01_LengthMax PHP Method

testInvalidZip01_LengthMax() public method

    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());
    }