lithium\tests\cases\template\helper\FormTest::testTextareaGeneration PHP Метод

testTextareaGeneration() публичный Метод

    public function testTextareaGeneration()
    {
        $result = $this->form->textarea('foo', array('value' => 'some content >'));
        $this->assertTags($result, array('textarea' => array('name' => 'foo', 'id' => 'Foo'), 'some content >', '/textarea'));
    }
FormTest