Chromium Code Reviews| OLD | NEW |
|---|---|
| (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.
| |
| OLD | NEW |