diff options
author | knut <> | 2006-05-16 19:03:46 +0000 |
---|---|---|
committer | knut <> | 2006-05-16 19:03:46 +0000 |
commit | 042aecd418ba8294e05b4be816abcc880c166af1 (patch) | |
tree | 282d914d31553e8bb8875e17ea8578efbc6c8224 /tests/unit/Web/THttpUtilityTest.php | |
parent | c6730f23829f07c404b65ed3d1f5c2a5808be2cf (diff) |
Added unit test stubs for System.Web.* #168
Diffstat (limited to 'tests/unit/Web/THttpUtilityTest.php')
-rw-r--r-- | tests/unit/Web/THttpUtilityTest.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/unit/Web/THttpUtilityTest.php b/tests/unit/Web/THttpUtilityTest.php new file mode 100644 index 00000000..790bc9f6 --- /dev/null +++ b/tests/unit/Web/THttpUtilityTest.php @@ -0,0 +1,19 @@ +<?php +require_once dirname(__FILE__).'/../phpunit2.php'; + +Prado::using('System.Web.THttpUtility'); + +/** + * @package System.Web + */ +class THttpUtilityTest extends PHPUnit2_Framework_TestCase { + + public function testHtmlEncode() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } + + public function testHtmlDecode() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } +} +?>
\ No newline at end of file |