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

Side by Side Diff: pkg/barback/test/utils.dart

Issue 23543005: Make Transform a little more pleasant to use: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise test code for handling primaryInput. Created 7 years, 3 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
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 barback.test.utils; 5 library barback.test.utils;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection'; 8 import 'dart:collection';
9 import 'dart:convert' show Encoding; 9 import 'dart:convert' show Encoding;
10 import 'dart:io';
11 10
12 import 'package:barback/barback.dart'; 11 import 'package:barback/barback.dart';
13 import 'package:barback/src/cancelable_future.dart'; 12 import 'package:barback/src/cancelable_future.dart';
14 import 'package:barback/src/utils.dart'; 13 import 'package:barback/src/utils.dart';
15 import 'package:path/path.dart' as pathos; 14 import 'package:path/path.dart' as pathos;
16 import 'package:scheduled_test/scheduled_test.dart'; 15 import 'package:scheduled_test/scheduled_test.dart';
17 import 'package:stack_trace/stack_trace.dart'; 16 import 'package:stack_trace/stack_trace.dart';
18 import 'package:unittest/compact_vm_config.dart'; 17 import 'package:unittest/compact_vm_config.dart';
19 18
20 export 'transformer/bad.dart'; 19 export 'transformer/bad.dart';
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 519
521 _MockAsset(this.id, this.contents); 520 _MockAsset(this.id, this.contents);
522 521
523 Future<String> readAsString({Encoding encoding}) => 522 Future<String> readAsString({Encoding encoding}) =>
524 new Future.value(contents); 523 new Future.value(contents);
525 524
526 Stream<List<int>> read() => throw new UnimplementedError(); 525 Stream<List<int>> read() => throw new UnimplementedError();
527 526
528 String toString() => "MockAsset $id $contents"; 527 String toString() => "MockAsset $id $contents";
529 } 528 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698