lithium\tests\cases\template\helper\FormTest::testTextBox PHP Method

testTextBox() public method

public testTextBox ( )
    public function testTextBox()
    {
        $result = $this->form->text('foo');
        $this->assertTags($result, array('input' => array('type' => 'text', 'name' => 'foo', 'id' => 'Foo')));
    }
FormTest