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

Unified Diff: pkg/analyzer/test/generated/utilities_string_test.dart

Issue 1411253007: Extract 'computeLineStarts' utility. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/generated/utilities_string_test.dart
diff --git a/pkg/analyzer/test/generated/utilities_string_test.dart b/pkg/analyzer/test/generated/utilities_string_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..241a4248d51f0fbc65130e1b2611cd5f0fdb2708
--- /dev/null
+++ b/pkg/analyzer/test/generated/utilities_string_test.dart
@@ -0,0 +1,34 @@
+// Copyright (c) 2015, 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 test.engine.utilities.string;
+
+import 'package:analyzer/src/generated/utilities_string.dart';
+import 'package:unittest/unittest.dart';
+
+import '../reflective_tests.dart';
+import '../utils.dart';
+
+main() {
+ initializeTestEnvironment();
+ runReflectiveTests(ComputeLineStartsTest);
+}
+
+@reflectiveTest
+class ComputeLineStartsTest {
+ void test_n() {
+ List<int> starts = computeLineStarts('a\nbb\nccc');
+ expect(starts, <int>[0, 2, 5]);
+ }
+
+ void test_r() {
+ List<int> starts = computeLineStarts('a\rbb\rccc');
+ expect(starts, <int>[0, 2, 5]);
+ }
+
+ void test_rn() {
+ List<int> starts = computeLineStarts('a\r\nbb\r\nccc');
+ expect(starts, <int>[0, 3, 7]);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698