summaryrefslogtreecommitdiff
path: root/tests/unit/Web/UI/TTemplateControlTest.php
diff options
context:
space:
mode:
authorknut <>2007-06-19 22:37:27 +0000
committerknut <>2007-06-19 22:37:27 +0000
commit186da7689fbefd22726c5b751b60f7aeccba6a98 (patch)
treece0684bca2b3e3b2569a790eeb775fc262bb0736 /tests/unit/Web/UI/TTemplateControlTest.php
parent869a2aa2bad745d7363833489b234e45a2200692 (diff)
added some more unit test stubs
Diffstat (limited to 'tests/unit/Web/UI/TTemplateControlTest.php')
-rw-r--r--tests/unit/Web/UI/TTemplateControlTest.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/TTemplateControlTest.php b/tests/unit/Web/UI/TTemplateControlTest.php
new file mode 100644
index 00000000..a4468fd6
--- /dev/null
+++ b/tests/unit/Web/UI/TTemplateControlTest.php
@@ -0,0 +1,48 @@
+<?php
+require_once dirname(__FILE__).'/../../phpunit.php';
+
+Prado::using('System.Web.UI.TTemplateControl');
+
+/**
+ * @package System.Web.UI
+ */
+class TTemplateControlTest extends PHPUnit_Framework_TestCase {
+
+ public function testSetAndGetTemplate() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGetIsSourceTemplateControl() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGetTemplateDirectory() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testCreateChildControls() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testRegisterContent() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testRegisterContentPlaceHolder() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testSetAndGetMasterClass() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGetMaster() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testInjectContent() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+}
+?> \ No newline at end of file