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 | 5 // PackageRoot=none |
6 | 6 |
7 library package_test; | 7 library package_test; |
8 | 8 |
9 import 'package:lib1.dart'; | 9 import 'package:lib1.dart'; |
10 import 'package:shared.dart'; | 10 import 'package:shared.dart'; |
11 | 11 |
12 void main() { | 12 void main() { |
13 output = 'main'; | 13 output = 'main'; |
14 // Call an imported lib, which will in turn call some others. | 14 // Call an imported lib, which will in turn call some others. |
15 lib1(); | 15 lib1(); |
16 | 16 |
17 // Make sure they were all reached successfully. | 17 // Make sure they were all reached successfully. |
18 Expect.equals(output, 'main|lib1|lib2|lib3'); | 18 if (output != 'main|lib1|lib2|lib3') { |
| 19 throw new Error("libraries were not reached successfully"); |
| 20 } |
19 } | 21 } |
OLD | NEW |