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

Unified Diff: sdk/lib/_internal/pub_generated/test/dependency_computer/error_test.dart

Issue 657673002: Regenerate pub sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub_generated/test/dependency_computer/error_test.dart
diff --git a/sdk/lib/_internal/pub_generated/test/dependency_computer/error_test.dart b/sdk/lib/_internal/pub_generated/test/dependency_computer/error_test.dart
index a776e21eb90f31984ece843673b7d15d1c81f5bf..2670867e2e4d39e133134302b60f7fb8dc8c05e9 100644
--- a/sdk/lib/_internal/pub_generated/test/dependency_computer/error_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/dependency_computer/error_test.dart
@@ -1,11 +1,19 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// 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 pub_tests;
+
import 'package:scheduled_test/scheduled_test.dart';
+
import '../../lib/src/exceptions.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
import 'utils.dart';
+
void main() {
initConfig();
+
integration("fails if an unknown package is imported", () {
d.dir(appPath, [d.pubspec({
"name": "myapp",
@@ -14,6 +22,7 @@ void main() {
d.dir(
'lib',
[d.file("myapp.dart", transformer(["package:foo/foo.dart"]))])]).create();
+
expectException(predicate((error) {
expect(error, new isInstanceOf<ApplicationException>());
expect(
@@ -24,11 +33,13 @@ void main() {
return true;
}));
});
+
integration("fails on a syntax error", () {
d.dir(appPath, [d.pubspec({
"name": "myapp",
"transformers": ["myapp"]
}), d.dir('lib', [d.file("myapp.dart", "library;")])]).create();
+
expectException(new isInstanceOf<AnalyzerErrorGroup>());
});
}

Powered by Google App Engine
This is Rietveld 408576698