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 test.integration.analysis.get.errors; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 | 6 |
9 import 'package:test/test.dart'; | 7 import 'package:test/test.dart'; |
10 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 8 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
11 | 9 |
12 import '../support/integration_tests.dart'; | 10 import '../support/integration_tests.dart'; |
13 | 11 |
14 main() { | 12 main() { |
15 defineReflectiveSuite(() { | 13 defineReflectiveSuite(() { |
16 defineReflectiveTests(GetErrorsTest); | 14 defineReflectiveTests(GetErrorsTest); |
(...skipping 12 matching lines...) Expand all Loading... |
29 standardAnalysisSetup(); | 27 standardAnalysisSetup(); |
30 Future finishTest() { | 28 Future finishTest() { |
31 return sendAnalysisGetErrors(pathname).then((result) { | 29 return sendAnalysisGetErrors(pathname).then((result) { |
32 expect(result.errors, equals(currentAnalysisErrors[pathname])); | 30 expect(result.errors, equals(currentAnalysisErrors[pathname])); |
33 }); | 31 }); |
34 } | 32 } |
35 | 33 |
36 return analysisFinished.then((_) => finishTest()); | 34 return analysisFinished.then((_) => finishTest()); |
37 } | 35 } |
38 } | 36 } |
OLD | NEW |