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/TAssetManagerTest.php | |
parent | c6730f23829f07c404b65ed3d1f5c2a5808be2cf (diff) |
Added unit test stubs for System.Web.* #168
Diffstat (limited to 'tests/unit/Web/TAssetManagerTest.php')
-rw-r--r-- | tests/unit/Web/TAssetManagerTest.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/unit/Web/TAssetManagerTest.php b/tests/unit/Web/TAssetManagerTest.php new file mode 100644 index 00000000..1821f28b --- /dev/null +++ b/tests/unit/Web/TAssetManagerTest.php @@ -0,0 +1,31 @@ +<?php +require_once dirname(__FILE__).'/../phpunit2.php'; + +Prado::using('System.Web.TAssetManager'); + +/** + * @package System.Web + */ +class TAssetManagerTest extends PHPUnit2_Framework_TestCase { + + public function testInit() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } + + public function testSetBasePath() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } + + public function testSetBaseUrl() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } + + public function testPublishFilePath() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } + + public function testPublishTarFile() { + throw new PHPUnit2_Framework_IncompleteTestError(); + } +} +?>
\ No newline at end of file |