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

Side by Side Diff: sdk/lib/_internal/pub/test/test_pub.dart

Issue 184823012: [pub] clean up Editor messages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Test infrastructure for testing pub. Unlike typical unit tests, most pub 5 /// Test infrastructure for testing pub. Unlike typical unit tests, most pub
6 /// tests are integration tests that stage some stuff on the file system, run 6 /// tests are integration tests that stage some stuff on the file system, run
7 /// pub, and then validate the results. This library provides an API to build 7 /// pub, and then validate the results. This library provides an API to build
8 /// tests like that. 8 /// tests like that.
9 library test_pub; 9 library test_pub;
10 10
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 857
858 _PairMatcher(this._firstMatcher, this._lastMatcher); 858 _PairMatcher(this._firstMatcher, this._lastMatcher);
859 859
860 bool matches(item, Map matchState) { 860 bool matches(item, Map matchState) {
861 if (item is! Pair) return false; 861 if (item is! Pair) return false;
862 return _firstMatcher.matches(item.first, matchState) && 862 return _firstMatcher.matches(item.first, matchState) &&
863 _lastMatcher.matches(item.last, matchState); 863 _lastMatcher.matches(item.last, matchState);
864 } 864 }
865 865
866 Description describe(Description description) { 866 Description describe(Description description) {
867 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); 867 return description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]);
868 } 868 }
869 } 869 }
870 870
871 /// A [StreamMatcher] that matches multiple lines of output. 871 /// A [StreamMatcher] that matches multiple lines of output.
872 StreamMatcher emitsLines(String output) => inOrder(output.split("\n")); 872 StreamMatcher emitsLines(String output) => inOrder(output.split("\n"));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698