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

Unified Diff: tests/lib/mirrors/constructor_list_test.dart

Issue 1632163004: Use existing test for reflectClass(List).createInstance(...) (Closed) Base URL: https://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
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/constructor_optional_args_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/constructor_list_test.dart
diff --git a/tests/lib/mirrors/constructor_list_test.dart b/tests/lib/mirrors/constructor_list_test.dart
deleted file mode 100644
index da5faee360a368af99ad37d2a3a115be60c07ee4..0000000000000000000000000000000000000000
--- a/tests/lib/mirrors/constructor_list_test.dart
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2016, 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.
-
-library test.constructor_lsit_test;
-
-@MirrorsUsed(targets: const [List])
-import 'dart:mirrors';
-import 'package:expect/expect.dart';
-
-main() {
- ClassMirror cm;
- MethodMirror mm;
-
- cm = reflectClass(List);
- print(cm);
-
- var list1 = cm.newInstance(const Symbol(''), []).reflectee;
- var list2 = cm.newInstance(const Symbol(''), [10]).reflectee;
-
- Expect.equals(0, list1.length);
- Expect.equals(10, list2.length);
-}
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/constructor_optional_args_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698