diff options
Diffstat (limited to 'tests/unit/Web/UI/TThemeTest.php')
-rw-r--r-- | tests/unit/Web/UI/TThemeTest.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/TThemeTest.php b/tests/unit/Web/UI/TThemeTest.php new file mode 100644 index 00000000..e007cc49 --- /dev/null +++ b/tests/unit/Web/UI/TThemeTest.php @@ -0,0 +1,40 @@ +<?php +require_once dirname(__FILE__).'/../../phpunit.php'; + +Prado::using('System.Web.UI.TThemeManager'); + +/** + * @package System.Web.UI + */ +class TThemeTest extends PHPUnit_Framework_TestCase { + + public function testConstruct() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetName() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetBaseUrl() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetBasePath() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testApplySkin() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetStyleSheetFiles() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetJavaScriptFiles() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} +?>
\ No newline at end of file |