diff options
author | knut <> | 2007-06-19 22:37:27 +0000 |
---|---|---|
committer | knut <> | 2007-06-19 22:37:27 +0000 |
commit | 186da7689fbefd22726c5b751b60f7aeccba6a98 (patch) | |
tree | ce0684bca2b3e3b2569a790eeb775fc262bb0736 /tests/unit/Web/UI/THtmlWriterTest.php | |
parent | 869a2aa2bad745d7363833489b234e45a2200692 (diff) |
added some more unit test stubs
Diffstat (limited to 'tests/unit/Web/UI/THtmlWriterTest.php')
-rw-r--r-- | tests/unit/Web/UI/THtmlWriterTest.php | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/THtmlWriterTest.php b/tests/unit/Web/UI/THtmlWriterTest.php new file mode 100644 index 00000000..f2ed7086 --- /dev/null +++ b/tests/unit/Web/UI/THtmlWriterTest.php @@ -0,0 +1,68 @@ +<?php +require_once dirname(__FILE__).'/../../phpunit.php'; + +Prado::using('System.Web.UI.THtmlWriter'); + +/** + * @package System.Web.UI + */ +class THtmlWriterTest extends PHPUnit_Framework_TestCase { + + public function testConstruct() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testSetAndGetWriter() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testAddAttributes() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testAddAttribute() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRemoveAttribute() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testAddStyleAttributes() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testAddStyleAttribute() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRemoveStyleAttribute() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testFlush() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testWrite() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testWriteLine() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testWriteBreak() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRenderBeginTag() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRenderEndTag() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} +?>
\ No newline at end of file |