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

testFormErrorWithout() public method

    public function testFormErrorWithout()
    {
        $this->form->create(null);
        $result = $this->form->error('name');
        $this->assertInternalType('null', $result);
    }
FormTest