Phalcon\Test\Unit\Tag\TagTimeFieldTest::testTimeFieldArrayParameterWithNameNoId PHP Method

testTimeFieldArrayParameterWithNameNoId() public method

Tests timeField with name and no id in parameter
Since: 2014-09-05
Author: Nikolaos Dimopoulos ([email protected])
    public function testTimeFieldArrayParameterWithNameNoId()
    {
        $this->specify("timeField 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="time" id="x_name" ' . 'name="x_other" class="x_class" size="10"';
            $this->tester->testFieldParameter('timeField', $options, $expected, false);
        });
        $this->specify("timeField 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="time" id="x_name" ' . 'name="x_other" class="x_class" size="10"';
            $this->tester->testFieldParameter('timeField', $options, $expected, false);
        });
    }