diff options
author | knut <> | 2007-06-11 17:24:23 +0000 |
---|---|---|
committer | knut <> | 2007-06-11 17:24:23 +0000 |
commit | 664830a178052d915d5dfc59a3e023120781d6ba (patch) | |
tree | a353bc02db96af0e4a9c474c8bbfcf874f9611e5 /tests/unit/Web/UI/TFormTest.php | |
parent | dbd2306c6986e16e5cf92b01aa0a08040cb8b1b7 (diff) |
corrected TAPCCache according to #646 and added some more stubs for unit tests in System.Web.UI
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 |