BootstrapUI\Test\TestCase\View\Helper\FormHelperTest::testFormCreateWithTemplatesFile PHP Method

testFormCreateWithTemplatesFile() public method

    public function testFormCreateWithTemplatesFile()
    {
        unset($this->article['required']['title']);
        $this->Form->create($this->article, ['templates' => 'custom_templates']);
        $result = $this->Form->input('title');
        $expected = ['div' => ['class' => 'custom-container form-group'], 'label' => ['class' => 'control-label', 'for' => 'title'], 'Title', '/label', 'input' => ['type' => 'text', 'name' => 'title', 'id' => 'title', 'class' => 'form-control'], '/div'];
        $this->assertHtml($expected, $result);
    }