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

Unified Diff: tests/compiler/dart2js/js_backend_cps_ir_literals_test.dart

Issue 1576093003: cpsir unittests: move all unittests into individual files and test runners. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js/js_backend_cps_ir_literals_test.dart
diff --git a/tests/compiler/dart2js/js_backend_cps_ir_literals_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_literals_test.dart
deleted file mode 100644
index ad9d2e7f856d2e290853f61eb714f48630692919..0000000000000000000000000000000000000000
--- a/tests/compiler/dart2js/js_backend_cps_ir_literals_test.dart
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2014, 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.
-
-// Tests of literals.
-
-library literals_tests;
-
-import 'js_backend_cps_ir.dart';
-
-const List<TestEntry> tests = const [
- const TestEntry("""
-main() {
- print([]);
- print([1]);
- print([1, 2]);
- print([1, [1, 2]]);
- print({});
- print({1: 2});
- print({[1, 2]: [3, 4]});
-}
-""",
-r"""
-function() {
- P.print([]);
- P.print([1]);
- P.print([1, 2]);
- P.print([1, [1, 2]]);
- P.print(P.LinkedHashMap_LinkedHashMap$_empty());
- P.print(P.LinkedHashMap_LinkedHashMap$_literal([1, 2]));
- P.print(P.LinkedHashMap_LinkedHashMap$_literal([[1, 2], [3, 4]]));
-}"""),
-];
-
-void main() {
- runTests(tests);
-}

Powered by Google App Engine
This is Rietveld 408576698