diff options
Diffstat (limited to 'tests/unit/Web/UI/TFormTest.php')
-rw-r--r-- | tests/unit/Web/UI/TFormTest.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/TFormTest.php b/tests/unit/Web/UI/TFormTest.php new file mode 100644 index 00000000..e2f312d6 --- /dev/null +++ b/tests/unit/Web/UI/TFormTest.php @@ -0,0 +1,36 @@ +<?php +require_once dirname(__FILE__).'/../../phpunit.php'; + +Prado::using('System.Web.UI.TForm'); + +/** + * @package System.Web.UI + */ +class TFormTest extends PHPUnit_Framework_TestCase { + + public function testOnInit() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRender() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testSetAndGetDefaultButton() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testSetAndGetMethod() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testSetAndGetEnctype() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetName() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} +?>
\ No newline at end of file |