| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:collection'; | 6 import 'dart:collection'; |
| 7 | 7 |
| 8 import 'package:test/test.dart'; | 8 import 'package:test/test.dart'; |
| 9 | 9 |
| 10 import 'completion_test_support.dart'; | 10 import 'completion_test_support.dart'; |
| 11 | 11 |
| (...skipping 2496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2508 } else { | 2508 } else { |
| 2509 ++expectedPassCount; | 2509 ++expectedPassCount; |
| 2510 test(testName, () { | 2510 test(testName, () { |
| 2511 CompletionTestCase test = new CompletionTestCase(); | 2511 CompletionTestCase test = new CompletionTestCase(); |
| 2512 return test.runTest(spec, extraFiles); | 2512 return test.runTest(spec, extraFiles); |
| 2513 }); | 2513 }); |
| 2514 } | 2514 } |
| 2515 } | 2515 } |
| 2516 } | 2516 } |
| 2517 } | 2517 } |
| OLD | NEW |