mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
1b2454b85e
Change-Id: Ib09f268c8a8edffba007cdd4962550a5e78ff808 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151090 Reviewed-by: Erik Ernst <eernst@google.com> Commit-Queue: Bob Nystrom <rnystrom@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com>
100 lines
1.9 KiB
Dart
100 lines
1.9 KiB
Dart
// Copyright (c) 2012, 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.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
main() {
|
|
testEmpty();
|
|
testInterpolation();
|
|
testMultiline();
|
|
}
|
|
|
|
testEmpty() {
|
|
Expect.equals("", "" "" "");
|
|
Expect.equals("", "" '' "");
|
|
Expect.equals("", "" "" r"");
|
|
|
|
Expect.equals("a", "a" "");
|
|
Expect.equals("a", "a" '');
|
|
Expect.equals("a", "a" r'');
|
|
|
|
Expect.equals("b", 'b' "");
|
|
Expect.equals("b", 'b' '');
|
|
Expect.equals("b", 'b' r'');
|
|
|
|
Expect.equals("c", r'c' "");
|
|
Expect.equals("c", r'c' '');
|
|
Expect.equals("c", r'c' r'');
|
|
|
|
Expect.equals("a", "" "a");
|
|
Expect.equals("a", "" 'a');
|
|
Expect.equals("a", "" r'a');
|
|
|
|
Expect.equals("b", '' "b");
|
|
Expect.equals("b", '' 'b');
|
|
Expect.equals("b", '' r'b');
|
|
|
|
Expect.equals("c", r'' "c");
|
|
Expect.equals("c", r'' 'c');
|
|
Expect.equals("c", r'' r'c');
|
|
}
|
|
|
|
testInterpolation() {
|
|
var s = "a";
|
|
Expect.equals(r"ab", "$s" "b");
|
|
Expect.equals(r"ab", '$s' "b");
|
|
Expect.equals(r"$sb", r'$s' "b");
|
|
|
|
Expect.equals(r"-a-b", "-$s-" "b");
|
|
Expect.equals(r"-a-b", '-$s-' "b");
|
|
Expect.equals(r"-$s-b", r'-$s-' "b");
|
|
|
|
Expect.equals(r"ba", 'b' "$s");
|
|
Expect.equals(r"ba", 'b' '$s');
|
|
Expect.equals(r"b$s", 'b' r'$s');
|
|
|
|
Expect.equals(r"b-a-", 'b' "-$s-");
|
|
Expect.equals(r"b-a-", 'b' '-$s-');
|
|
Expect.equals(r"b-$s-", 'b' r'-$s-');
|
|
}
|
|
|
|
testMultiline() {
|
|
Expect.equals(
|
|
"abe",
|
|
"a"
|
|
"b"
|
|
"e");
|
|
Expect.equals(
|
|
"a b e",
|
|
"a "
|
|
"b "
|
|
"e");
|
|
Expect.equals(
|
|
"a b e",
|
|
"a"
|
|
" b"
|
|
" e");
|
|
|
|
Expect.equals(
|
|
"abe",
|
|
"""
|
|
a"""
|
|
"b"
|
|
"e");
|
|
Expect.equals(
|
|
"a b e",
|
|
"""
|
|
a"""
|
|
" b"
|
|
" e");
|
|
|
|
Expect.equals(
|
|
"abe",
|
|
"""
|
|
a"""
|
|
"""
|
|
b"""
|
|
"""
|
|
e""");
|
|
}
|