| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |