Phalcon\Test\Unit\Tag\TagImageInputTest::testImageInputArrayParameterWithNameNoId PHP Method

testImageInputArrayParameterWithNameNoId() public method

Tests imageInput with name and no id in parameter
Since: 2014-09-05
Author: Nikolaos Dimopoulos ([email protected])
    public function testImageInputArrayParameterWithNameNoId()
    {
        $this->specify("imageInput with array parameter with name no id returns invalid HTML Strict", function () {
            $options = ['x_name', 'name' => 'x_other', 'class' => 'x_class', 'size' => '10'];
            $expected = '<input type="image" name="x_other" value="x_name" ' . 'class="x_class" size="10"';
            $this->tester->testFieldParameter('imageInput', $options, $expected, false);
        });
        $this->specify("imageInput with array parameter with name no id returns invalid HTML XHTML", function () {
            $options = ['x_name', 'name' => 'x_other', 'class' => 'x_class', 'size' => '10'];
            $expected = '<input type="image" name="x_other" value="x_name" ' . 'class="x_class" size="10"';
            $this->tester->testFieldParameter('imageInput', $options, $expected, false);
        });
    }