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

Side by Side Diff: tests/corelib/core_runtime_types_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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
« no previous file with comments | « tests/corelib/const_list_set_range_test.dart ('k') | tests/corelib/date_time2_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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
7 /** 5 /**
8 * A test of simple runtime behavior on numbers, strings and lists with 6 * A test of simple runtime behavior on numbers, strings and lists with
9 * a focus on both correct behavior and runtime errors. 7 * a focus on both correct behavior and runtime errors.
10 * 8 *
11 * This file is written to use minimal type declarations to match a 9 * This file is written to use minimal type declarations to match a
12 * typical dynamic language coding style. 10 * typical dynamic language coding style.
13 */ 11 */
14 class CoreRuntimeTypesTest { 12 class CoreRuntimeTypesTest {
15 static testMain() { 13 static testMain() {
16 testBooleanOperators(); 14 testBooleanOperators();
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 '${true}'.toString(); 274 '${true}'.toString();
277 '${false}'.toString(); 275 '${false}'.toString();
278 ''.toString(); 276 ''.toString();
279 ''.endsWith(''); 277 ''.endsWith('');
280 } 278 }
281 } 279 }
282 280
283 main() { 281 main() {
284 CoreRuntimeTypesTest.testMain(); 282 CoreRuntimeTypesTest.testMain();
285 } 283 }
OLDNEW
« no previous file with comments | « tests/corelib/const_list_set_range_test.dart ('k') | tests/corelib/date_time2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698