summaryrefslogtreecommitdiff
path: root/tests/unit/Web/UI/TThemeManagerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Web/UI/TThemeManagerTest.php')
-rw-r--r--tests/unit/Web/UI/TThemeManagerTest.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/TThemeManagerTest.php b/tests/unit/Web/UI/TThemeManagerTest.php
new file mode 100644
index 00000000..7db1bd38
--- /dev/null
+++ b/tests/unit/Web/UI/TThemeManagerTest.php
@@ -0,0 +1,32 @@
+<?php
+require_once dirname(__FILE__).'/../../phpunit.php';
+
+Prado::using('System.Web.UI.TThemeManager');
+
+/**
+ * @package System.Web.UI
+ */
+class TThemeManagerTest extends PHPUnit_Framework_TestCase {
+
+ public function testInit() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGetTheme() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGetAvailableThemes() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testSetAndGetBasePath() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testSetAndGetBaseUrl() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+}
+?> \ No newline at end of file