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