summaryrefslogtreecommitdiff
path: root/tests/unit/Util/TLoggerTest.php
diff options
context:
space:
mode:
authorknut <>2007-06-04 23:33:06 +0000
committerknut <>2007-06-04 23:33:06 +0000
commit996bb8664856b302c96e19c6899010ea72ababe6 (patch)
tree0daad116697c7c9f58bc74244277457ede412348 /tests/unit/Util/TLoggerTest.php
parentb7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff)
added more unit test stubs
Diffstat (limited to 'tests/unit/Util/TLoggerTest.php')
-rw-r--r--tests/unit/Util/TLoggerTest.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/unit/Util/TLoggerTest.php b/tests/unit/Util/TLoggerTest.php
new file mode 100644
index 00000000..4da5aaa1
--- /dev/null
+++ b/tests/unit/Util/TLoggerTest.php
@@ -0,0 +1,27 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+Prado::using('System.Util.TLogger');
+
+/**
+ * @package System.Util
+ */
+class TLoggerTest extends PHPUnit_Framework_TestCase {
+
+ public function setUp() {
+ }
+
+ public function tearDown() {
+ }
+
+ public function testLog() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGetLogs() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+}
+
+?>