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

Side by Side Diff: pkg/scheduled_test/test/value_future_test.dart

Issue 12782016: Switch pkg packages, pub, and dartdoc to use package: imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/scheduled_test/test/utils.dart ('k') | sdk/bin/dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 library value_future_test; 5 library value_future_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import '../lib/src/value_future.dart'; 9 import 'package:scheduled_test/src/value_future.dart';
10 import '../../../pkg/unittest/lib/unittest.dart'; 10 import 'package:unittest/unittest.dart';
11 11
12 void main() { 12 void main() {
13 group('works like a normal Future for', () { 13 group('works like a normal Future for', () {
14 var completer; 14 var completer;
15 var future; 15 var future;
16 16
17 setUp(() { 17 setUp(() {
18 completer = new Completer(); 18 completer = new Completer();
19 future = new ValueFuture(completer.future); 19 future = new ValueFuture(completer.future);
20 }); 20 });
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 118
119 test('.value is null', () { 119 test('.value is null', () {
120 expect(future.value, isNull); 120 expect(future.value, isNull);
121 }); 121 });
122 122
123 test('.hasValue is false', () { 123 test('.hasValue is false', () {
124 expect(future.hasValue, isFalse); 124 expect(future.hasValue, isFalse);
125 }); 125 });
126 }); 126 });
127 } 127 }
OLDNEW
« no previous file with comments | « pkg/scheduled_test/test/utils.dart ('k') | sdk/bin/dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698