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]); |
+ } |
+} |