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

Side by Side Diff: tests/language/adjacent_string_literals_test.dart

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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
5 main() { 7 main() {
6 testEmpty(); 8 testEmpty();
7 testInterpolation(); 9 testInterpolation();
8 testMultiline(); 10 testMultiline();
9 } 11 }
10 12
11 testEmpty() { 13 testEmpty() {
12 Expect.equals("", "" "" ""); 14 Expect.equals("", "" "" "");
13 Expect.equals("", "" '' ""); 15 Expect.equals("", "" '' "");
14 Expect.equals("", "" "" r""); 16 Expect.equals("", "" "" r"");
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 a""" "b" "e"); 77 a""" "b" "e");
76 Expect.equals("a b e", """ 78 Expect.equals("a b e", """
77 a""" " b" " e"); 79 a""" " b" " e");
78 80
79 Expect.equals("abe", """ 81 Expect.equals("abe", """
80 a""" """ 82 a""" """
81 b""" """ 83 b""" """
82 e"""); 84 e""");
83 } 85 }
84 86
OLDNEW
« no previous file with comments | « tests/language/adjacent_const_string_literals_test.dart ('k') | tests/language/allocate_large_object_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698