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

Side by Side Diff: tests/fletchc/incremental/production_mode.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 10 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
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dartino 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.md file.
4
5 library tests.fletchc.incremental.production_mode;
6
7 import 'feature_test.dart' show
8 compileAndRun;
9
10 import 'package:fletchc/incremental/fletchc_incremental.dart' show
11 IncrementalMode;
12
13 import 'common.dart';
14
15 class ProductionModeTestSuite extends IncrementalTestSuite {
16 const ProductionModeTestSuite()
17 : super("production");
18
19 Future<Null> run(String testName, EncodedResult encodedResult) {
20 return compileAndRun(
21 testName, encodedResult, incrementalMode: IncrementalMode.production);
22 }
23 }
24
25 const ProductionModeTestSuite suite = const ProductionModeTestSuite();
26
27 /// Invoked by ../../fletch_tests/fletch_test_suite.dart.
28 Future<Map<String, NoArgFuture>> list() => suite.list();
29
30 Future<Null> main(List<String> arguments) => suite.runFromMain(arguments);
OLDNEW
« no previous file with comments | « tests/fletchc/incremental/feature_test.dart ('k') | tests/fletchc/incremental/program_result.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698