summaryrefslogtreecommitdiff
path: root/tests/unit/IO/TTextWriterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/IO/TTextWriterTest.php')
-rw-r--r--tests/unit/IO/TTextWriterTest.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/unit/IO/TTextWriterTest.php b/tests/unit/IO/TTextWriterTest.php
new file mode 100644
index 00000000..c011acae
--- /dev/null
+++ b/tests/unit/IO/TTextWriterTest.php
@@ -0,0 +1,32 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+Prado::using('System.IO.TTextWriter');
+
+/**
+ * @package System.IO
+ */
+class TTextWriterTest extends PHPUnit_Framework_TestCase {
+
+ public function testFlush() {
+ $writer = new TTextWriter();
+ self::assertEquals('', $writer->flush());
+ $writer->write('some text');
+ self::assertEquals('some text', $writer->flush());
+ }
+
+ public function testWrite() {
+ $writer = new TTextWriter();
+ $writer->write("some text\n");
+ $writer->write("more text\n");
+ self::assertEquals("some text\nmore text\n", $writer->flush());
+ }
+
+ public function testWriteLine() {
+ $writer = new TTextWriter();
+ $writer->writeLine('some text');
+ self::assertEquals("some text\n", $writer->flush());
+ }
+}
+
+?>