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

Unified Diff: tests/html/typed_arrays_4_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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 side-by-side diff with in-line comments
Download patch
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);
});
}

Powered by Google App Engine
This is Rietveld 408576698