Index: packages/smoke/test/mirrors_test.dart |
diff --git a/collection/lib/src/utils.dart b/packages/smoke/test/mirrors_test.dart |
similarity index 52% |
rename from collection/lib/src/utils.dart |
rename to packages/smoke/test/mirrors_test.dart |
index c9c753777f07c1c5bd930fa4a3a7e32a5377db0f..cac643aab81c93a6e746f0e98bda711882f6c7f6 100644 |
--- a/collection/lib/src/utils.dart |
+++ b/packages/smoke/test/mirrors_test.dart |
@@ -2,12 +2,13 @@ |
// 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 dart.pkg.collection.utils; |
+library smoke.test.mirrors_test; |
-/// A pair of values. |
-class Pair<E, F> { |
- E first; |
- F last; |
+import 'package:smoke/mirrors.dart'; |
+import 'package:unittest/unittest.dart'; |
+import 'common.dart' as common show main; |
- Pair(this.first, this.last); |
+main() { |
+ setUp(useMirrors); |
+ common.main(); |
} |