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

Side by Side Diff: tests/corelib/string_replace_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 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
« no previous file with comments | « tests/corelib/string_replace_dollar_test.dart ('k') | tests/corelib/string_runes_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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:expect/expect.dart";
6
7 class StringReplaceTest { 5 class StringReplaceTest {
8 static testMain() { 6 static testMain() {
9 Expect.equals( 7 Expect.equals(
10 "AtoBtoCDtoE", "AfromBtoCDtoE".replaceFirst("from", "to")); 8 "AtoBtoCDtoE", "AfromBtoCDtoE".replaceFirst("from", "to"));
11 9
12 // Test with the replaced string at the begining. 10 // Test with the replaced string at the begining.
13 Expect.equals( 11 Expect.equals(
14 "toABtoCDtoE", "fromABtoCDtoE".replaceFirst("from", "to")); 12 "toABtoCDtoE", "fromABtoCDtoE".replaceFirst("from", "to"));
15 13
16 // Test with the replaced string at the end. 14 // Test with the replaced string at the end.
(...skipping 24 matching lines...) Expand all
41 Expect.equals("to", "".replaceFirst("", "to")); 39 Expect.equals("to", "".replaceFirst("", "to"));
42 40
43 // Test replacing the empty string. 41 // Test replacing the empty string.
44 Expect.equals("toAtoBtoCto", "AtoBtoCto".replaceFirst("", "to")); 42 Expect.equals("toAtoBtoCto", "AtoBtoCto".replaceFirst("", "to"));
45 } 43 }
46 } 44 }
47 45
48 main() { 46 main() {
49 StringReplaceTest.testMain(); 47 StringReplaceTest.testMain();
50 } 48 }
OLDNEW
« no previous file with comments | « tests/corelib/string_replace_dollar_test.dart ('k') | tests/corelib/string_runes_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698