Index: tests/compiler/dart2js/strip_comment_test.dart |
diff --git a/tests/compiler/dart2js/strip_comment_test.dart b/tests/compiler/dart2js/strip_comment_test.dart |
deleted file mode 100644 |
index 40921a94eb5ba9b6ce470bfe0ca6f43ab5eabfff..0000000000000000000000000000000000000000 |
--- a/tests/compiler/dart2js/strip_comment_test.dart |
+++ /dev/null |
@@ -1,80 +0,0 @@ |
-// Copyright (c) 2013, 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 strip_comment_test; |
- |
-import "package:expect/expect.dart"; |
-import 'package:compiler/src/mirrors/mirrors_util.dart'; |
- |
-testComment(String strippedText, String commentText) { |
- Expect.stringEquals(strippedText, stripComment(commentText)); |
-} |
- |
-void main() { |
- testComment('', '//'); |
- testComment('', '// '); |
- testComment(' ', '// '); |
- testComment('foo bar baz', '//foo bar baz'); |
- testComment('foo bar baz', '// foo bar baz'); |
- testComment('foo bar baz ', '// foo bar baz '); |
- testComment(' foo bar baz ', '// foo bar baz '); |
- |
- testComment('', '///'); |
- testComment('', '/// '); |
- testComment(' ', '/// '); |
- testComment('foo bar baz', '///foo bar baz'); |
- testComment('foo bar baz', '/// foo bar baz'); |
- testComment('foo bar baz ', '/// foo bar baz '); |
- testComment(' foo bar baz ', '/// foo bar baz '); |
- |
- testComment('', '/**/'); |
- testComment('', '/* */'); |
- testComment(' ', '/* */'); |
- testComment('foo bar baz', '/*foo bar baz*/'); |
- testComment('foo bar baz', '/* foo bar baz*/'); |
- testComment('foo bar baz ', '/* foo bar baz */'); |
- testComment(' foo bar baz ', '/* foo bar baz */'); |
- testComment('foo\nbar\nbaz', '/*foo\nbar\nbaz*/'); |
- testComment('foo\nbar\nbaz', '/* foo\nbar\nbaz*/'); |
- testComment('foo \n bar \n baz ', '/* foo \n bar \n baz */'); |
- testComment('foo\nbar\nbaz', '/* foo\n *bar\n *baz*/'); |
- testComment('foo\nbar\nbaz', '/* foo\n * bar\n * baz*/'); |
- testComment('foo \nbar \nbaz ', '/* foo \n * bar \n * baz */'); |
- testComment('\nfoo\nbar\nbaz', |
- '''/* |
- * foo |
- * bar |
- * baz*/'''); |
- testComment('\nfoo\nbar\nbaz\n', |
- '''/* |
- * foo |
- * bar |
- * baz |
- */'''); |
- |
- testComment('', '/***/'); |
- testComment('', '/** */'); |
- testComment(' ', '/** */'); |
- testComment('foo bar baz', '/**foo bar baz*/'); |
- testComment('foo bar baz', '/** foo bar baz*/'); |
- testComment('foo bar baz ', '/** foo bar baz */'); |
- testComment(' foo bar baz ', '/** foo bar baz */'); |
- testComment('foo\nbar\nbaz', '/**foo\nbar\nbaz*/'); |
- testComment('foo\nbar\nbaz', '/** foo\nbar\nbaz*/'); |
- testComment('foo \n bar \n baz ', '/** foo \n bar \n baz */'); |
- testComment('foo\nbar\nbaz', '/** foo\n *bar\n *baz*/'); |
- testComment('foo\nbar\nbaz', '/** foo\n * bar\n * baz*/'); |
- testComment('foo \nbar \nbaz ', '/** foo \n * bar \n * baz */'); |
- testComment('\nfoo\nbar\nbaz', |
- '''/** |
- * foo |
- * bar |
- * baz*/'''); |
- testComment('\nfoo\nbar\nbaz\n', |
- '''/** |
- * foo |
- * bar |
- * baz |
- */'''); |
-} |