OLD | NEW |
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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 | 6 |
7 const x = 19.5; | 7 const x = 19.5; |
8 const y = 3.3; | 8 const y = 3.3; |
9 const g1 = x + y; | 9 const g1 = x + y; |
10 const g2 = x * y; | 10 const g2 = x * y; |
(...skipping 25 matching lines...) Expand all Loading... |
36 Expect.equals(true, g9); | 36 Expect.equals(true, g9); |
37 Expect.equals(true, g10); | 37 Expect.equals(true, g10); |
38 Expect.equals(true, g11); | 38 Expect.equals(true, g11); |
39 Expect.equals(false, g12); | 39 Expect.equals(false, g12); |
40 Expect.equals(true, g13); | 40 Expect.equals(true, g13); |
41 Expect.equals(true, g14); | 41 Expect.equals(true, g14); |
42 Expect.equals(false, g15); | 42 Expect.equals(false, g15); |
43 Expect.equals(78.5590909090909, g16); | 43 Expect.equals(78.5590909090909, g16); |
44 Expect.equals(3.000000000000001, g17); | 44 Expect.equals(3.000000000000001, g17); |
45 } | 45 } |
OLD | NEW |