summaryrefslogtreecommitdiff
path: root/tests/unit/Xml/TXmlDocumentTest.php
diff options
context:
space:
mode:
authorknut <>2006-05-16 18:16:16 +0000
committerknut <>2006-05-16 18:16:16 +0000
commitc6730f23829f07c404b65ed3d1f5c2a5808be2cf (patch)
tree069e9665191f4822a18a06bba07aef916ea6a5ac /tests/unit/Xml/TXmlDocumentTest.php
parent5a73a2d3140db38cba43bf34f90831e0e26a8ffd (diff)
Added unit test stubs for Xml classes #168
Diffstat (limited to 'tests/unit/Xml/TXmlDocumentTest.php')
-rw-r--r--tests/unit/Xml/TXmlDocumentTest.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/unit/Xml/TXmlDocumentTest.php b/tests/unit/Xml/TXmlDocumentTest.php
new file mode 100644
index 00000000..fe08edda
--- /dev/null
+++ b/tests/unit/Xml/TXmlDocumentTest.php
@@ -0,0 +1,35 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit2.php';
+
+Prado::using('System.Xml.TXmlDocument');
+
+/**
+ * @package System.Xml
+ */
+class TXmlDocumentTest extends PHPUnit2_Framework_TestCase {
+
+ public function testConstruct() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetVersion() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetEncoding() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testLoadFromFile() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testLoadFromString() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSaveToString() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+}
+?> \ No newline at end of file