Chromium Code Reviews| Index: pkg/barback/test/test_all.dart |
| diff --git a/pkg/barback/test/test_all.dart b/pkg/barback/test/test_all.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..149d9adf5d9b3d80b041ea4b3ab580e3cf46b913 |
| --- /dev/null |
| +++ b/pkg/barback/test/test_all.dart |
| @@ -0,0 +1,29 @@ |
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +import 'dart:async'; |
| + |
| +import 'package:scheduled_test/scheduled_test.dart'; |
| + |
| +import 'package:barback/barback.dart'; |
| +import 'package:barback/src/asset_graph.dart'; |
| + |
| +import 'asset_graph/source_test.dart' as source_test; |
| +import 'asset_graph/transform_test.dart' as transform_test; |
| +import 'utils.dart'; |
| + |
| +main() { |
| + initConfig(); |
| + group("AssetGraph sources", source_test.main); |
| + group("AssetGraph transforms", transform_test.main); |
| + |
| + // TODO(rnystrom): Still need more tests: |
| + // - Various bad arguments to the APIs. |
| + // - Can skip over phases to find an input for a later phase. |
| + // - If a later phase is outputting an asset and then stops outputting it, |
| + // it should stop shadowing an earlier asset and make it available. |
| + // - Preprocessors that consume inputs versus transformers that just use |
| + // inputs. |
| + // - What happens after a collision has occurred. |
| +} |
|
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.
|