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