Index: tests/html/typed_arrays_4_test.dart |
diff --git a/tests/html/typed_arrays_4_test.dart b/tests/html/typed_arrays_4_test.dart |
index 9f00357ec91591a426e19778fb64e85a0eeff52b..3967d2bc5dd8bbdc528f1056b3c12c5b2e32357f 100644 |
--- a/tests/html/typed_arrays_4_test.dart |
+++ b/tests/html/typed_arrays_4_test.dart |
@@ -3,6 +3,7 @@ |
// BSD-style license that can be found in the LICENSE file. |
library TypedArrays4Test; |
+ |
import 'package:unittest/unittest.dart'; |
import 'package:unittest/html_config.dart'; |
import 'dart:html'; |
@@ -17,32 +18,32 @@ main() { |
} |
test('indexOf_dynamic', () { |
- var a1 = new Uint8List(1024); |
- for (int i = 0; i < a1.length; i++) { |
- a1[i] = i; |
- } |
- |
- expect(a1.indexOf(50), 50); |
- expect(a1.indexOf(50, 50), 50); |
- expect(a1.indexOf(50, 51), 256 + 50); |
- |
- expect(a1.lastIndexOf(50), 768 + 50); |
- expect(a1.lastIndexOf(50, 768 + 50), 768 + 50); |
- expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50); |
+ var a1 = new Uint8List(1024); |
+ for (int i = 0; i < a1.length; i++) { |
+ a1[i] = i; |
+ } |
+ |
+ expect(a1.indexOf(50), 50); |
+ expect(a1.indexOf(50, 50), 50); |
+ expect(a1.indexOf(50, 51), 256 + 50); |
+ |
+ expect(a1.lastIndexOf(50), 768 + 50); |
+ expect(a1.lastIndexOf(50, 768 + 50), 768 + 50); |
+ expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50); |
}); |
test('indexOf_typed', () { |
- Uint8List a1 = new Uint8List(1024); |
- for (int i = 0; i < a1.length; i++) { |
- a1[i] = i; |
- } |
- |
- expect(a1.indexOf(50), 50); |
- expect(a1.indexOf(50, 50), 50); |
- expect(a1.indexOf(50, 51), 256 + 50); |
- |
- expect(a1.lastIndexOf(50), 768 + 50); |
- expect(a1.lastIndexOf(50, 768 + 50), 768 + 50); |
- expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50); |
+ Uint8List a1 = new Uint8List(1024); |
+ for (int i = 0; i < a1.length; i++) { |
+ a1[i] = i; |
+ } |
+ |
+ expect(a1.indexOf(50), 50); |
+ expect(a1.indexOf(50, 50), 50); |
+ expect(a1.indexOf(50, 51), 256 + 50); |
+ |
+ expect(a1.lastIndexOf(50), 768 + 50); |
+ expect(a1.lastIndexOf(50, 768 + 50), 768 + 50); |
+ expect(a1.lastIndexOf(50, 768 + 50 - 1), 512 + 50); |
}); |
} |