| Index: client/tests/client/dom/TypedArrays4Test.dart
|
| diff --git a/client/tests/client/dom/TypedArrays4Test.dart b/client/tests/client/dom/TypedArrays4Test.dart
|
| deleted file mode 100644
|
| index 047a426efef2f083460f19957e7aa665abc1d6f1..0000000000000000000000000000000000000000
|
| --- a/client/tests/client/dom/TypedArrays4Test.dart
|
| +++ /dev/null
|
| @@ -1,43 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -#library('TypedArrays4Test');
|
| -#import('../../../../lib/unittest/unittest.dart');
|
| -#import('../../../../lib/unittest/dom_config.dart');
|
| -#import('dart:dom');
|
| -
|
| -main() {
|
| -
|
| - useDomConfiguration();
|
| -
|
| - test('indexOf_dynamic', () {
|
| - var a1 = new Uint8Array(1024);
|
| - for (int i = 0; i < a1.length; i++) {
|
| - a1[i] = i;
|
| - }
|
| -
|
| - Expect.equals(50, a1.indexOf(50));
|
| - Expect.equals(50, a1.indexOf(50, 50));
|
| - Expect.equals(256 + 50, a1.indexOf(50, 51));
|
| -
|
| - Expect.equals(768 + 50, a1.lastIndexOf(50));
|
| - Expect.equals(768 + 50, a1.lastIndexOf(50, 768 + 50));
|
| - Expect.equals(512 + 50, a1.lastIndexOf(50, 768 + 50 - 1));
|
| - });
|
| -
|
| - test('indexOf_typed', () {
|
| - Uint8Array a1 = new Uint8Array(1024);
|
| - for (int i = 0; i < a1.length; i++) {
|
| - a1[i] = i;
|
| - }
|
| -
|
| - Expect.equals(50, a1.indexOf(50));
|
| - Expect.equals(50, a1.indexOf(50, 50));
|
| - Expect.equals(256 + 50, a1.indexOf(50, 51));
|
| -
|
| - Expect.equals(768 + 50, a1.lastIndexOf(50));
|
| - Expect.equals(768 + 50, a1.lastIndexOf(50, 768 + 50));
|
| - Expect.equals(512 + 50, a1.lastIndexOf(50, 768 + 50 - 1));
|
| - });
|
| -}
|
|
|