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

Side by Side Diff: tests/standalone/package/package_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 if (output != 'main|lib1|lib2|lib3') { 18 Expect.equals(output, 'main|lib1|lib2|lib3');
19 throw new Error("libraries were not reached successfully");
20 }
21 } 19 }
OLDNEW
« no previous file with comments | « tests/standalone/out_of_memory_test.dart ('k') | tests/standalone/package/packages/package1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698