Index: tests/fletchc/incremental/production_mode.dart |
diff --git a/tests/fletchc/incremental/production_mode.dart b/tests/fletchc/incremental/production_mode.dart |
deleted file mode 100644 |
index 57d3aba20a996bf35fb2d7eef65ad5a11ee56ba5..0000000000000000000000000000000000000000 |
--- a/tests/fletchc/incremental/production_mode.dart |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright (c) 2016, the Dartino 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.md file. |
- |
-library tests.fletchc.incremental.production_mode; |
- |
-import 'feature_test.dart' show |
- compileAndRun; |
- |
-import 'package:fletchc/incremental/fletchc_incremental.dart' show |
- IncrementalMode; |
- |
-import 'common.dart'; |
- |
-class ProductionModeTestSuite extends IncrementalTestSuite { |
- const ProductionModeTestSuite() |
- : super("production"); |
- |
- Future<Null> run(String testName, EncodedResult encodedResult) { |
- return compileAndRun( |
- testName, encodedResult, incrementalMode: IncrementalMode.production); |
- } |
-} |
- |
-const ProductionModeTestSuite suite = const ProductionModeTestSuite(); |
- |
-/// Invoked by ../../fletch_tests/fletch_test_suite.dart. |
-Future<Map<String, NoArgFuture>> list() => suite.list(); |
- |
-Future<Null> main(List<String> arguments) => suite.runFromMain(arguments); |