Eccube\Tests\Form\Type\TelTypeTest::testSubmitFromZenToHan PHP Method

testSubmitFromZenToHan() public method

    public function testSubmitFromZenToHan()
    {
        $input = array('tel' => array('tel01' => '12345', 'tel02' => '12345', 'tel03' => '67890'));
        $output = array('tel01' => '12345', 'tel02' => '12345', 'tel03' => '67890');
        $this->form->submit($input);
        $this->assertEquals($output, $this->form->getData());
    }