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

Side by Side Diff: runtime/tests/vm/dart/byte_array_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
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 // Library tag to be able to run in html test framework. 5 // Library tag to be able to run in html test framework.
6 library byte_array_test; 6 library byte_array_test;
7 7
8 import "package:expect/expect.dart";
9 import 'dart:scalarlist'; 8 import 'dart:scalarlist';
10 9
11 class ByteArrayTest { 10 class ByteArrayTest {
12 static testInt8ListImpl(Int8List array) { 11 static testInt8ListImpl(Int8List array) {
13 Expect.isTrue(array is List<int>); 12 Expect.isTrue(array is List<int>);
14 Expect.equals(10, array.length); 13 Expect.equals(10, array.length);
15 Expect.equals(1, array.bytesPerElement()); 14 Expect.equals(1, array.bytesPerElement());
16 Expect.equals(10, array.lengthInBytes()); 15 Expect.equals(10, array.lengthInBytes());
17 Expect.listEquals([0, 0, 0, 0, 0, 16 Expect.listEquals([0, 0, 0, 0, 0,
18 0, 0, 0, 0, 0], 17 0, 0, 0, 0, 0],
(...skipping 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after
2480 testFloat32ListView(); 2479 testFloat32ListView();
2481 testFloat64ListView(); 2480 testFloat64ListView();
2482 } 2481 }
2483 } 2482 }
2484 2483
2485 main() { 2484 main() {
2486 for (var i=0; i<1000; i++) { 2485 for (var i=0; i<1000; i++) {
2487 ByteArrayTest.testMain(); 2486 ByteArrayTest.testMain();
2488 } 2487 }
2489 } 2488 }
OLDNEW
« no previous file with comments | « runtime/tests/vm/dart/byte_array_optimized_test.dart ('k') | runtime/tests/vm/dart/inline_stack_frame_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698