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

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

Issue 16854005: First pass at build dependency graph for barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'dart:async';
6
7 import 'package:scheduled_test/scheduled_test.dart';
8
9 import 'package:barback/barback.dart';
10 import 'package:barback/src/asset_graph.dart';
11
12 import 'asset_graph/source_test.dart' as source_test;
13 import 'asset_graph/transform_test.dart' as transform_test;
14 import 'utils.dart';
15
16 main() {
17 initConfig();
18 group("AssetGraph sources", source_test.main);
19 group("AssetGraph transforms", transform_test.main);
20
21 // TODO(rnystrom): Still need more tests:
22 // - Various bad arguments to the APIs.
23 // - Can skip over phases to find an input for a later phase.
24 // - If a later phase is outputting an asset and then stops outputting it,
25 // it should stop shadowing an earlier asset and make it available.
26 // - Preprocessors that consume inputs versus transformers that just use
27 // inputs.
28 // - What happens after a collision has occurred.
29 }
nweiz 2013/06/14 00:57:57 What's this file for? The test infrastructure will
Bob Nystrom 2013/06/17 23:35:05 Removed it.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698