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

Side by Side Diff: tests/html/typed_arrays_simd_test.dart

Issue 231413003: using unittest via package import (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/html/typed_arrays_range_checks_test.dart ('k') | tests/html/typing_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 TypedArraysSimdTest; 5 library TypedArraysSimdTest;
6 import '../../pkg/unittest/lib/unittest.dart'; 6 import 'package:unittest/unittest.dart';
7 import '../../pkg/unittest/lib/html_config.dart'; 7 import 'package:unittest/html_config.dart';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:typed_data'; 9 import 'dart:typed_data';
10 10
11 const _FLOATING_POINT_ERROR = 0.0000000001; 11 const _FLOATING_POINT_ERROR = 0.0000000001;
12 floatEquals(value) => closeTo(value, _FLOATING_POINT_ERROR); 12 floatEquals(value) => closeTo(value, _FLOATING_POINT_ERROR);
13 13
14 class MyFloat32x4 { 14 class MyFloat32x4 {
15 num x = 0.0; 15 num x = 0.0;
16 num y = 0.0; 16 num y = 0.0;
17 num z = 0.0; 17 num z = 0.0;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 expect(val.z, equals(3)); 76 expect(val.z, equals(3));
77 expect(val.w, equals(4)); 77 expect(val.w, equals(4));
78 final val2 = val ^ val; 78 final val2 = val ^ val;
79 expect(val2.x, equals(0)); 79 expect(val2.x, equals(0));
80 expect(val2.y, equals(0)); 80 expect(val2.y, equals(0));
81 expect(val2.z, equals(0)); 81 expect(val2.z, equals(0));
82 expect(val2.w, equals(0)); 82 expect(val2.w, equals(0));
83 } 83 }
84 }); 84 });
85 } 85 }
OLDNEW
« no previous file with comments | « tests/html/typed_arrays_range_checks_test.dart ('k') | tests/html/typing_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698