| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Test the Stream.single method. | 5 // Test the Stream.single method. |
| 6 library stream_single_test; | 6 library stream_single_test; |
| 7 | 7 |
| 8 import "package:expect/expect.dart"; |
| 8 import 'dart:async'; | 9 import 'dart:async'; |
| 9 import 'dart:isolate'; | 10 import 'dart:isolate'; |
| 10 import '../../../pkg/unittest/lib/unittest.dart'; | 11 import '../../../pkg/unittest/lib/unittest.dart'; |
| 11 import 'event_helper.dart'; | 12 import 'event_helper.dart'; |
| 12 | 13 |
| 13 main() { | 14 main() { |
| 14 test("single", () { | 15 test("single", () { |
| 15 StreamController c = new StreamController(); | 16 StreamController c = new StreamController(); |
| 16 Future f = c.stream.single; | 17 Future f = c.stream.single; |
| 17 f.then(expectAsync1((v) { Expect.equals(42, v);})); | 18 f.then(expectAsync1((v) { Expect.equals(42, v);})); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 }); | 43 }); |
| 43 | 44 |
| 44 test("single error 3", () { | 45 test("single error 3", () { |
| 45 StreamController c = new StreamController(); | 46 StreamController c = new StreamController(); |
| 46 Future f = c.stream.single; | 47 Future f = c.stream.single; |
| 47 f.catchError(expectAsync1((e) { Expect.equals("error", e.error); })); | 48 f.catchError(expectAsync1((e) { Expect.equals("error", e.error); })); |
| 48 Events errorEvents = new Events()..add(499)..error("error")..close(); | 49 Events errorEvents = new Events()..add(499)..error("error")..close(); |
| 49 errorEvents.replay(c); | 50 errorEvents.replay(c); |
| 50 }); | 51 }); |
| 51 } | 52 } |
| OLD | NEW |