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

Unified Diff: pkg/args/test/utils.dart

Issue 814113004: Pull args, intl, logging, shelf, and source_maps out of the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also csslib. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/args/test/usage_test.dart ('k') | pkg/csslib/CHANGELOG.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/args/test/utils.dart
diff --git a/pkg/args/test/utils.dart b/pkg/args/test/utils.dart
deleted file mode 100644
index 9d85fb07df3205ffac69791fdec3deafe949b5c5..0000000000000000000000000000000000000000
--- a/pkg/args/test/utils.dart
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright (c) 2013, 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 utils;
-
-import 'dart:async';
-
-import 'package:args/args.dart';
-import 'package:args/command_runner.dart';
-import 'package:unittest/unittest.dart';
-
-class CommandRunnerWithFooter extends CommandRunner {
- final usageFooter = "Also, footer!";
-
- CommandRunnerWithFooter(String executableName, String description)
- : super(executableName, description);
-}
-
-class FooCommand extends Command {
- var hasRun = false;
-
- final name = "foo";
- final description = "Set a value.";
- final takesArguments = false;
-
- void run() {
- hasRun = true;
- }
-}
-
-class HiddenCommand extends Command {
- var hasRun = false;
-
- final name = "hidden";
- final description = "Set a value.";
- final hidden = true;
- final takesArguments = false;
-
- void run() {
- hasRun = true;
- }
-}
-
-class AliasedCommand extends Command {
- var hasRun = false;
-
- final name = "aliased";
- final description = "Set a value.";
- final takesArguments = false;
- final aliases = const ["alias", "als"];
-
- void run() {
- hasRun = true;
- }
-}
-
-class AsyncCommand extends Command {
- var hasRun = false;
-
- final name = "async";
- final description = "Set a value asynchronously.";
- final takesArguments = false;
-
- Future run() => new Future.value().then((_) => hasRun = true);
-}
-
-void throwsIllegalArg(function, {String reason: null}) {
- expect(function, throwsArgumentError, reason: reason);
-}
-
-void throwsFormat(ArgParser parser, List<String> args) {
- expect(() => parser.parse(args), throwsFormatException);
-}
-
-Matcher throwsUsageError(message, usage) {
- return throwsA(predicate((error) {
- expect(error, new isInstanceOf<UsageException>());
- expect(error.message, message);
- expect(error.usage, usage);
- return true;
- }));
-}
« no previous file with comments | « pkg/args/test/usage_test.dart ('k') | pkg/csslib/CHANGELOG.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698