| Index: tests/html/typed_arrays_2_test.dart
|
| diff --git a/tests/html/typed_arrays_2_test.dart b/tests/html/typed_arrays_2_test.dart
|
| index 5a0d83a4db8076814fdbe6859c4ad56f8addeca6..83355f00df0561667f7c2ff8f55f24c96b76f463 100644
|
| --- a/tests/html/typed_arrays_2_test.dart
|
| +++ b/tests/html/typed_arrays_2_test.dart
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| library TypedArrays2Test;
|
| +
|
| import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_config.dart';
|
| import 'dart:html';
|
| @@ -17,70 +18,70 @@ main() {
|
| }
|
|
|
| test('viewTest_dynamic', () {
|
| - var a1 = new Uint8List(1024);
|
| - for (int i = 0; i < a1.length; i++) {
|
| - a1[i] = i; // 0,1,2,...,254,255,0,1,2,...
|
| - }
|
| + var a1 = new Uint8List(1024);
|
| + for (int i = 0; i < a1.length; i++) {
|
| + a1[i] = i; // 0,1,2,...,254,255,0,1,2,...
|
| + }
|
|
|
| - var a2 = new Uint32List.view(a1.buffer);
|
| - expect(1024 ~/ 4, a2.length);
|
| - expect(a2[0], 0x03020100);
|
| - expect(a2[1], 0x07060504);
|
| - expect(a2[2], 0x0B0A0908);
|
| - expect(a2[50], 0xCBCAC9C8);
|
| - expect(a2[51], 0xCFCECDCC);
|
| - expect(a2[64], 0x03020100);
|
| + var a2 = new Uint32List.view(a1.buffer);
|
| + expect(1024 ~/ 4, a2.length);
|
| + expect(a2[0], 0x03020100);
|
| + expect(a2[1], 0x07060504);
|
| + expect(a2[2], 0x0B0A0908);
|
| + expect(a2[50], 0xCBCAC9C8);
|
| + expect(a2[51], 0xCFCECDCC);
|
| + expect(a2[64], 0x03020100);
|
|
|
| - a2 = new Uint32List.view(a1.buffer, 200);
|
| - expect(a2.length, (1024 - 200) ~/ 4);
|
| - expect(a2[0], 0xCBCAC9C8);
|
| - expect(a2[1], 0xCFCECDCC);
|
| - expect(a2[14], 0x03020100);
|
| + a2 = new Uint32List.view(a1.buffer, 200);
|
| + expect(a2.length, (1024 - 200) ~/ 4);
|
| + expect(a2[0], 0xCBCAC9C8);
|
| + expect(a2[1], 0xCFCECDCC);
|
| + expect(a2[14], 0x03020100);
|
|
|
| - a2 = new Uint32List.view(a1.buffer, 456, 20);
|
| - expect(a2.length, 20);
|
| - expect(a2[0], 0xCBCAC9C8);
|
| - expect(a2[1], 0xCFCECDCC);
|
| - expect(a2[14], 0x03020100);
|
| + a2 = new Uint32List.view(a1.buffer, 456, 20);
|
| + expect(a2.length, 20);
|
| + expect(a2[0], 0xCBCAC9C8);
|
| + expect(a2[1], 0xCFCECDCC);
|
| + expect(a2[14], 0x03020100);
|
|
|
| - // OPTIONALS a2 = new Uint32List.view(a1.buffer, length: 30, byteOffset: 456);
|
| - a2 = new Uint32List.view(a1.buffer, 456, 30);
|
| - expect(a2.length, 30);
|
| - expect(a2[0], 0xCBCAC9C8);
|
| - expect(a2[1], 0xCFCECDCC);
|
| - expect(a2[14], 0x03020100);
|
| + // OPTIONALS a2 = new Uint32List.view(a1.buffer, length: 30, byteOffset: 456);
|
| + a2 = new Uint32List.view(a1.buffer, 456, 30);
|
| + expect(a2.length, 30);
|
| + expect(a2[0], 0xCBCAC9C8);
|
| + expect(a2[1], 0xCFCECDCC);
|
| + expect(a2[14], 0x03020100);
|
| });
|
|
|
| test('viewTest_typed', () {
|
| - Uint8List a1 = new Uint8List(1024);
|
| - for (int i = 0; i < a1.length; i++) {
|
| - a1[i] = i;
|
| - }
|
| + Uint8List a1 = new Uint8List(1024);
|
| + for (int i = 0; i < a1.length; i++) {
|
| + a1[i] = i;
|
| + }
|
|
|
| - Uint32List a2 = new Uint32List.view(a1.buffer);
|
| - expect(a2.length, 1024 ~/ 4);
|
| - expect(a2[0], 0x03020100);
|
| - expect(a2[50], 0xCBCAC9C8);
|
| - expect(a2[51], 0xCFCECDCC);
|
| - expect(a2[64], 0x03020100);
|
| + Uint32List a2 = new Uint32List.view(a1.buffer);
|
| + expect(a2.length, 1024 ~/ 4);
|
| + expect(a2[0], 0x03020100);
|
| + expect(a2[50], 0xCBCAC9C8);
|
| + expect(a2[51], 0xCFCECDCC);
|
| + expect(a2[64], 0x03020100);
|
|
|
| - a2 = new Uint32List.view(a1.buffer, 200);
|
| - expect(a2.length, (1024 - 200) ~/ 4);
|
| - expect(a2[0], 0xCBCAC9C8);
|
| - expect(a2[1], 0xCFCECDCC);
|
| - expect(a2[14], 0x03020100);
|
| + a2 = new Uint32List.view(a1.buffer, 200);
|
| + expect(a2.length, (1024 - 200) ~/ 4);
|
| + expect(a2[0], 0xCBCAC9C8);
|
| + expect(a2[1], 0xCFCECDCC);
|
| + expect(a2[14], 0x03020100);
|
|
|
| - a2 = new Uint32List.view(a1.buffer, 456, 20);
|
| - expect(20, a2.length);
|
| - expect(a2[0], 0xCBCAC9C8);
|
| - expect(a2[1], 0xCFCECDCC);
|
| - expect(a2[14], 0x03020100);
|
| + a2 = new Uint32List.view(a1.buffer, 456, 20);
|
| + expect(20, a2.length);
|
| + expect(a2[0], 0xCBCAC9C8);
|
| + expect(a2[1], 0xCFCECDCC);
|
| + expect(a2[14], 0x03020100);
|
|
|
| - // OPTIONALS a2 = new Uint32List.view(a1.buffer, length: 30, byteOffset: 456);
|
| - a2 = new Uint32List.view(a1.buffer, 456, 30);
|
| - expect(a2.length, 30);
|
| - expect(a2[0], 0xCBCAC9C8);
|
| - expect(a2[1], 0xCFCECDCC);
|
| - expect(a2[14], 0x03020100);
|
| + // OPTIONALS a2 = new Uint32List.view(a1.buffer, length: 30, byteOffset: 456);
|
| + a2 = new Uint32List.view(a1.buffer, 456, 30);
|
| + expect(a2.length, 30);
|
| + expect(a2[0], 0xCBCAC9C8);
|
| + expect(a2[1], 0xCFCECDCC);
|
| + expect(a2[14], 0x03020100);
|
| });
|
| }
|
|
|