OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 import 'package:kernel/kernel.dart'; | 4 import 'package:kernel/kernel.dart'; |
5 import 'package:test/test.dart'; | 5 import 'package:test/test.dart'; |
6 import 'class_hierarchy_tester.dart'; | 6 import 'class_hierarchy_self_check.dart'; |
7 | 7 |
8 main() { | 8 main() { |
9 test('All-pairs class hierarchy tests on dart2js', () { | 9 test('All-pairs class hierarchy tests on dart2js', () { |
10 testClassHierarchyOnProgram( | 10 testClassHierarchyOnProgram( |
11 loadProgramFromBinary('test/data/dart2js.dill')); | 11 loadProgramFromBinary('test/data/dart2js.dill')); |
12 }); | 12 }); |
13 } | 13 } |
OLD | NEW |