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

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

Issue 814953002: Remove unittest and matcher from the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « pkg/unittest/test/testcases_immutable_test.dart ('k') | site/try/build_try.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2014, 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.with_test_environment_test;
6
7 import 'dart:async';
8 import 'package:unittest/unittest.dart';
9
10 class TestConfiguration extends SimpleConfiguration {
11 final Completer _completer = new Completer();
12 List<TestCase> _results;
13
14 TestConfiguration();
15
16 void onSummary(int passed, int failed, int errors, List<TestCase> results,
17 String uncaughtError) {
18 super.onSummary(passed, failed, errors, results, uncaughtError);
19 _results = results;
20 }
21
22 Future get done => _completer.future;
23
24 onDone(success) {
25 new Future.sync(() => super.onDone(success))
26 .then(_completer.complete)
27 .catchError(_completer.completeError);
28 }
29
30 bool checkIfTestRan(String testName) {
31 return _results.any((test) => test.description == testName);
32 }
33 }
34
35 Future runUnittests(Function callback) {
36 TestConfiguration config = unittestConfiguration = new TestConfiguration();
37 callback();
38
39 return config.done;
40 }
41
42 void runTests() {
43 test('test', () => expect(2 + 3, equals(5)));
44 }
45
46 void runTests1() {
47 test('test1', () => expect(4 + 3, equals(7)));
48 }
49
50 // Test that we can run two different sets of tests in the same run using the
51 // withTestEnvironment method.
52 void main() {
53 // Check that setting config a second time does not change the configuration
54 runUnittests(runTests);
55 var config = unittestConfiguration;
56 runUnittests(runTests1);
57 expect(config, unittestConfiguration);
58
59 // Test that we can run both when encapsulating in their own private test
60 // environment. Also test that the tests actually running are the ones
61 // scheduled in the runTests/runTests1 methods.
62 withTestEnvironment(() {
63 runUnittests(runTests).whenComplete(() {
64 TestConfiguration config = unittestConfiguration;
65 expect(config.checkIfTestRan('test'), true);
66 expect(config.checkIfTestRan('test1'), false);
67 });
68 });
69 withTestEnvironment(() {
70 runUnittests(runTests1).whenComplete(() {
71 TestConfiguration config = unittestConfiguration;
72 expect(config.checkIfTestRan('test'), false);
73 expect(config.checkIfTestRan('test1'), true);
74 });
75 });
76
77 // Third test that we can run with two nested test environments.
78 withTestEnvironment(() {
79 runUnittests(runTests);
80 withTestEnvironment(() {
81 runUnittests(runTests1);
82 });
83 });
84 }
OLDNEW
« no previous file with comments | « pkg/unittest/test/testcases_immutable_test.dart ('k') | site/try/build_try.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698