diff options
author | knut <> | 2007-05-29 20:29:10 +0000 |
---|---|---|
committer | knut <> | 2007-05-29 20:29:10 +0000 |
commit | 376a5af2d258f87e2be75b667850436987c68a55 (patch) | |
tree | ff97724cc6ff4d5a474835d7d915ccbde0ca2c54 /tests/unit/Web/TAssetManagerTest.php | |
parent | 82a351192f38cc73268ea7de7a48e2e0425d5cbf (diff) |
upgraded unit test suite to use PHPUnit3
use "cd tests/; phpunit AllTests.php" to run the tests
use "cd tests/; phpunit --report=coverage AllTests.php" to get a nice code coverage report (need xdebug)
Diffstat (limited to 'tests/unit/Web/TAssetManagerTest.php')
-rw-r--r-- | tests/unit/Web/TAssetManagerTest.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/unit/Web/TAssetManagerTest.php b/tests/unit/Web/TAssetManagerTest.php index 1821f28b..49d42165 100644 --- a/tests/unit/Web/TAssetManagerTest.php +++ b/tests/unit/Web/TAssetManagerTest.php @@ -1,31 +1,31 @@ <?php -require_once dirname(__FILE__).'/../phpunit2.php'; +require_once dirname(__FILE__).'/../phpunit.php'; Prado::using('System.Web.TAssetManager'); /** * @package System.Web */ -class TAssetManagerTest extends PHPUnit2_Framework_TestCase { +class TAssetManagerTest extends PHPUnit_Framework_TestCase { public function testInit() { - throw new PHPUnit2_Framework_IncompleteTestError(); + throw new PHPUnit_Framework_IncompleteTestError(); } public function testSetBasePath() { - throw new PHPUnit2_Framework_IncompleteTestError(); + throw new PHPUnit_Framework_IncompleteTestError(); } public function testSetBaseUrl() { - throw new PHPUnit2_Framework_IncompleteTestError(); + throw new PHPUnit_Framework_IncompleteTestError(); } public function testPublishFilePath() { - throw new PHPUnit2_Framework_IncompleteTestError(); + throw new PHPUnit_Framework_IncompleteTestError(); } public function testPublishTarFile() { - throw new PHPUnit2_Framework_IncompleteTestError(); + throw new PHPUnit_Framework_IncompleteTestError(); } } ?>
\ No newline at end of file |