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

Unified Diff: lib/unittest/vm_config.dart

Issue 10153005: unittest step 3 and 4: remove TestFramework.dart, make test.dart use (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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: lib/unittest/vm_config.dart
diff --git a/lib/unittest/vm_config.dart b/lib/unittest/vm_config.dart
index dcf50007cd8151058c393f6f321d71569521a15d..39197191412c4fcead131002d65ab1665cba6c33 100644
--- a/lib/unittest/vm_config.dart
+++ b/lib/unittest/vm_config.dart
@@ -11,9 +11,10 @@
#import('unittest.dart');
class VmConfiguration extends Configuration {
- void onDone(int passed, int failed, int errors, List<TestCase> results) {
+ void onDone(int passed, int failed, int errors, List<TestCase> results,
+ String uncaughtError) {
try {
- super.onDone(passed, failed, errors, results);
+ super.onDone(passed, failed, errors, results, uncaughtError);
} catch (Exception ex) {
// A non-zero exit code is used by the test infrastructure to detect
// failure.

Powered by Google App Engine
This is Rietveld 408576698