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

Side by Side Diff: pkg/unittest/test/async_setup_teardown_test.dart

Issue 807193003: Re-apply "Remove unittest and matcher from the repo." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 years 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
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
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.
4
5 library unittest.async_setup_teardown;
6
7 import 'dart:async';
8
9 import 'package:metatest/metatest.dart';
10 import 'package:unittest/unittest.dart';
11
12 void main() => initTests(_test);
13
14 void _test(message) {
15 initMetatest(message);
16
17 expectTestsPass('good setup/good teardown', () {
18 setUp(() {
19 return new Future.value(0);
20 });
21 tearDown(() {
22 return new Future.value(0);
23 });
24 test('foo1', () {});
25 });
26
27 expectTestResults('good setup/bad teardown', () {
28 setUp(() {
29 return new Future.value(0);
30 });
31 tearDown(() {
32 return new Future.error("Failed to complete tearDown");
33 });
34 test('foo2', () {});
35 }, [{
36 'result': 'error',
37 'message': 'Teardown failed: Caught Failed to complete tearDown'
38 }]);
39
40 expectTestResults('bad setup/good teardown', () {
41 setUp(() {
42 return new Future.error("Failed to complete setUp");
43 });
44 tearDown(() {
45 return new Future.value(0);
46 });
47 test('foo3', () {});
48 }, [{
49 'result': 'error',
50 'message': 'Setup failed: Caught Failed to complete setUp'
51 }]);
52
53 expectTestResults('bad setup/bad teardown', () {
54 setUp(() {
55 return new Future.error("Failed to complete setUp");
56 });
57 tearDown(() {
58 return new Future.error("Failed to complete tearDown");
59 });
60 test('foo4', () {});
61 }, [{
62 'result': 'error',
63 'message': 'Setup failed: Caught Failed to complete setUp'
64 }]);
65 }
OLDNEW
« no previous file with comments | « pkg/unittest/test/async_exception_with_future_test.dart ('k') | pkg/unittest/test/breath_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698