summaryrefslogtreecommitdiff
path: root/tests/unit/Util/TLoggerTest.php
diff options
context:
space:
mode:
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();
+ }
+
+}
+
+?>