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

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

Issue 319983005: pkg/unittest: test cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 6 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
« no previous file with comments | « pkg/unittest/test/test_common.dart ('k') | pkg/unittest/test/testcases_immutable_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/test/test_utils.dart
diff --git a/pkg/unittest/test/test_utils.dart b/pkg/unittest/test/test_utils.dart
deleted file mode 100644
index 783f71ba91839e7310c9a119de5fb3e36d5906c2..0000000000000000000000000000000000000000
--- a/pkg/unittest/test/test_utils.dart
+++ /dev/null
@@ -1,81 +0,0 @@
-// Copyright (c) 2012, 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 test_utils;
-
-import 'package:unittest/unittest.dart';
-
-import 'dart:async';
-
-int errorCount;
-String errorString;
-var _testHandler = null;
-
-class MyFailureHandler extends DefaultFailureHandler {
- void fail(String reason) {
- ++errorCount;
- errorString = reason;
- }
-}
-
-void initUtils() {
- if (_testHandler == null) {
- _testHandler = new MyFailureHandler();
- }
-}
-
-void shouldFail(value, Matcher matcher, expected, {bool isAsync: false}) {
- configureExpectFailureHandler(_testHandler);
- errorCount = 0;
- errorString = '';
- expect(value, matcher);
- afterTest() {
- configureExpectFailureHandler(null);
- expect(errorCount, equals(1));
- if (expected is String) {
- expect(errorString, equalsIgnoringWhitespace(expected));
- } else {
- expect(errorString.replaceAll('\n', ''), expected);
- }
- }
-
- if (isAsync) {
- Timer.run(expectAsync(afterTest));
- } else {
- afterTest();
- }
-}
-
-void shouldPass(value, Matcher matcher, {bool isAsync: false}) {
- configureExpectFailureHandler(_testHandler);
- errorCount = 0;
- errorString = '';
- expect(value, matcher);
- afterTest() {
- configureExpectFailureHandler(null);
- expect(errorCount, equals(0));
- }
- if (isAsync) {
- Timer.run(expectAsync(afterTest));
- } else {
- afterTest();
- }
-}
-
-doesNotThrow() {}
-doesThrow() { throw 'X'; }
-
-class PrefixMatcher extends Matcher {
- final String _prefix;
- const PrefixMatcher(this._prefix);
- bool matches(item, Map matchState) {
- return item is String &&
- (collapseWhitespace(item)).startsWith(collapseWhitespace(_prefix));
- }
-
- Description describe(Description description) =>
- description.add('a string starting with ').
- addDescriptionOf(collapseWhitespace(_prefix)).
- add(' ignoring whitespace');
-}
« no previous file with comments | « pkg/unittest/test/test_common.dart ('k') | pkg/unittest/test/testcases_immutable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698