Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: tests/standalone/io/stdin_sync_test.dart

Issue 102123010: Add getter for hasTerminal, terminalColumns and terminalLines on stdout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add include of thread.h and fix io_patch. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/io/stdio.dart ('k') | tests/standalone/io/stdout_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/stdin_sync_test.dart
diff --git a/tests/standalone/io/stdin_sync_test.dart b/tests/standalone/io/stdin_sync_test.dart
index 03e794cdd2501e2d9d6ecd9e7539b951106d8dd6..97c4b58460e81ed71c264645b490fed667008bf1 100644
--- a/tests/standalone/io/stdin_sync_test.dart
+++ b/tests/standalone/io/stdin_sync_test.dart
@@ -44,6 +44,7 @@ void testReadByte() {
test("hej", ['hej']);
}
+
void testEchoMode() {
stdin.echoMode = true;
Expect.isTrue(stdin.echoMode);
@@ -55,6 +56,7 @@ void testEchoMode() {
}
}
+
void testLineMode() {
stdin.lineMode = true;
Expect.isTrue(stdin.lineMode);
@@ -70,7 +72,7 @@ void testLineMode() {
void main() {
testReadByte();
- // testEchoMode and testLineMode is an developer-interactive test, thus not
+ // testEchoMode and testLineMode is developer-interactive tests, thus not
// enabled.
//testEchoMode();
//testLineMode();
« no previous file with comments | « sdk/lib/io/stdio.dart ('k') | tests/standalone/io/stdout_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698