| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 smoke.test.common_utils; | 5 library smoke.test.common_utils; |
| 6 | 6 |
| 7 import 'package:smoke/src/common.dart'; | 7 import 'package:smoke/src/common.dart'; |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:test/test.dart'; |
| 9 | 9 |
| 10 main() { | 10 main() { |
| 11 test('adjustList', () { | 11 test('adjustList', () { |
| 12 expect(adjustList([1, 2, 3], 1, 2), [1, 2]); | 12 expect(adjustList([1, 2, 3], 1, 2), [1, 2]); |
| 13 expect(adjustList([1, 2, 3], 1, 3), [1, 2, 3]); | 13 expect(adjustList([1, 2, 3], 1, 3), [1, 2, 3]); |
| 14 expect(adjustList([1, 2, 3], 1, 4), [1, 2, 3]); | 14 expect(adjustList([1, 2, 3], 1, 4), [1, 2, 3]); |
| 15 expect(adjustList([1, 2, 3], 4, 4), [1, 2, 3, null]); | 15 expect(adjustList([1, 2, 3], 4, 4), [1, 2, 3, null]); |
| 16 expect(adjustList([], 1, 4), [null]); | 16 expect(adjustList([], 1, 4), [null]); |
| 17 }); | 17 }); |
| 18 | 18 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 29 compareLists([1, 1, 2, 3, 4, 2], [2, 2, 1, 1, 3, 4], unordered: true), | 29 compareLists([1, 1, 2, 3, 4, 2], [2, 2, 1, 1, 3, 4], unordered: true), |
| 30 isTrue); | 30 isTrue); |
| 31 expect( | 31 expect( |
| 32 compareLists([1, 4, 2, 3, 1, 2], [2, 2, 1, 1, 3, 4], unordered: true), | 32 compareLists([1, 4, 2, 3, 1, 2], [2, 2, 1, 1, 3, 4], unordered: true), |
| 33 isTrue); | 33 isTrue); |
| 34 expect( | 34 expect( |
| 35 compareLists([1, 1, 2, 3, 4, 1], [2, 2, 1, 1, 3, 4], unordered: true), | 35 compareLists([1, 1, 2, 3, 4, 1], [2, 2, 1, 1, 3, 4], unordered: true), |
| 36 isFalse); | 36 isFalse); |
| 37 }); | 37 }); |
| 38 } | 38 } |
| OLD | NEW |