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

Side by Side Diff: test/glob_test.dart

Issue 1234433006: Upgrade to the new test runner. (Closed) Base URL: git@github.com:dart-lang/glob@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 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 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 import 'package:glob/glob.dart'; 5 import 'package:glob/glob.dart';
6 import 'package:unittest/unittest.dart'; 6 import 'package:test/test.dart';
7 7
8 void main() { 8 void main() {
9 group("Glob.quote()", () { 9 group("Glob.quote()", () {
10 test("quotes all active characters", () { 10 test("quotes all active characters", () {
11 expect(Glob.quote("*{[?\\}],-"), equals(r"\*\{\[\?\\\}\]\,\-")); 11 expect(Glob.quote("*{[?\\}],-"), equals(r"\*\{\[\?\\\}\]\,\-"));
12 }); 12 });
13 13
14 test("doesn't quote inactive characters", () { 14 test("doesn't quote inactive characters", () {
15 expect(Glob.quote("abc~`_+="), equals("abc~`_+=")); 15 expect(Glob.quote("abc~`_+="), equals("abc~`_+="));
16 }); 16 });
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 }); 85 });
86 86
87 test("throws a range error for an invalid group", () { 87 test("throws a range error for an invalid group", () {
88 expect(() => match[1], throwsRangeError); 88 expect(() => match[1], throwsRangeError);
89 expect(() => match[-1], throwsRangeError); 89 expect(() => match[-1], throwsRangeError);
90 expect(() => match.group(1), throwsRangeError); 90 expect(() => match.group(1), throwsRangeError);
91 expect(() => match.groups([1]), throwsRangeError); 91 expect(() => match.groups([1]), throwsRangeError);
92 }); 92 });
93 }); 93 });
94 } 94 }
OLDNEW
« .test_config ('K') | « pubspec.yaml ('k') | test/match_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698