OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.src.task.manager_test; | 5 library analyzer.test.src.task.manager_test; |
6 | 6 |
7 import 'package:analyzer/src/generated/java_engine.dart'; | 7 import 'package:analyzer/src/generated/java_engine.dart'; |
8 import 'package:analyzer/src/task/manager.dart'; | 8 import 'package:analyzer/src/task/manager.dart'; |
9 import 'package:analyzer/task/model.dart'; | 9 import 'package:analyzer/task/model.dart'; |
10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
11 | 11 |
12 import '../../generated/test_support.dart'; | 12 import '../../generated/test_support.dart'; |
13 import '../../reflective_tests.dart'; | 13 import '../../reflective_tests.dart'; |
14 import '../../utils.dart'; | 14 import '../../utils.dart'; |
15 | 15 |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 test_removePriorityResult_present() { | 123 test_removePriorityResult_present() { |
124 TaskManager manager = new TaskManager(); | 124 TaskManager manager = new TaskManager(); |
125 manager.addPriorityResult(result1); | 125 manager.addPriorityResult(result1); |
126 manager.addPriorityResult(result2); | 126 manager.addPriorityResult(result2); |
127 Set<ResultDescriptor> results = manager.priorityResults; | 127 Set<ResultDescriptor> results = manager.priorityResults; |
128 expect(results, unorderedEquals([result1, result2])); | 128 expect(results, unorderedEquals([result1, result2])); |
129 manager.removePriorityResult(result1); | 129 manager.removePriorityResult(result1); |
130 expect(results, unorderedEquals([result2])); | 130 expect(results, unorderedEquals([result2])); |
131 } | 131 } |
132 } | 132 } |
OLD | NEW |