OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 | 4 |
5 // PackageRoot=none | |
6 | |
7 #library('package_test'); | 5 #library('package_test'); |
8 | 6 |
9 #import('package:lib1.dart'); | 7 #import('package:lib1.dart'); |
10 #import('package:shared.dart'); | 8 #import('package:shared.dart'); |
11 | 9 |
12 void main() { | 10 void main() { |
13 output = 'main'; | 11 output = 'main'; |
14 // Call an imported lib, which will in turn call some others. | 12 // Call an imported lib, which will in turn call some others. |
15 lib1(); | 13 lib1(); |
16 | 14 |
17 // Make sure they were all reached successfully. | 15 // Make sure they were all reached successfully. |
18 Expect.equals(output, 'main|lib1|lib2|lib3'); | 16 Expect.equals(output, 'main|lib1|lib2|lib3'); |
19 } | 17 } |
OLD | NEW |