diff options
Diffstat (limited to 'tests/unit/Web/UI/TTemplateTest.php')
-rw-r--r-- | tests/unit/Web/UI/TTemplateTest.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/TTemplateTest.php b/tests/unit/Web/UI/TTemplateTest.php new file mode 100644 index 00000000..bfd4f1f4 --- /dev/null +++ b/tests/unit/Web/UI/TTemplateTest.php @@ -0,0 +1,48 @@ +<?php +require_once dirname(__FILE__).'/../../phpunit.php'; + +Prado::using('System.Web.UI.TTemplateManager'); + +/** + * @package System.Web.UI + */ +class TTemplateTest extends PHPUnit_Framework_TestCase { + + public function testConstruct() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetTemplateFile() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetIsSourceTemplate() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetContextPath() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetDirective() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetHashCode() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetItems() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testInstantiateIn() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGetIncludedFiles() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} +?>
\ No newline at end of file |