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

Unified Diff: pkg/unittest/test/exception_test.dart

Issue 524153002: Sharing metatest logic between unittest and scheduled_test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: CR feedback Created 6 years, 3 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: pkg/unittest/test/exception_test.dart
diff --git a/pkg/unittest/test/exception_test.dart b/pkg/unittest/test/exception_test.dart
index f84ac18f8ef81440cb9d8e479f51e77895ae0fd9..352c7dfd22b6018d8d32b420c2ebbec7600fcefc 100644
--- a/pkg/unittest/test/exception_test.dart
+++ b/pkg/unittest/test/exception_test.dart
@@ -2,20 +2,21 @@
// 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 unittestTest;
-
-import 'dart:async';
-import 'dart:isolate';
+library unittest.exception_test;
import 'package:unittest/unittest.dart';
-part 'utils.dart';
+import 'package:metatest/metatest.dart';
-var testName = 'exception test';
+void main() => initTests(_test);
-var testFunction = (_) {
- test(testName, () { throw new Exception('Fail.'); });
-};
+void _test(message) {
+ initMetatest(message);
-var expected = buildStatusString(0, 0, 1, testName,
- message: 'Test failed: Caught Exception: Fail.');
+ expectSingleTest('good setup/good teardown', 'error',
+ 'Test failed: Caught Exception: Fail.', () {
+ test('test', () {
+ throw new Exception('Fail.');
+ });
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698