| 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 analyzer.test.src.task.manager_test; | 5 library analyzer.test.src.task.manager_test; |
| 6 | 6 |
| 7 import 'package:analyzer/exception/exception.dart'; | 7 import 'package:analyzer/exception/exception.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:test/test.dart'; | 10 import 'package:test/test.dart'; |
| 11 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 11 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 12 | 12 |
| 13 import '../../generated/test_support.dart'; | 13 import '../../generated/test_support.dart'; |
| 14 import '../../utils.dart'; | |
| 15 | 14 |
| 16 main() { | 15 main() { |
| 17 initializeTestEnvironment(); | |
| 18 defineReflectiveSuite(() { | 16 defineReflectiveSuite(() { |
| 19 defineReflectiveTests(TaskManagerTest); | 17 defineReflectiveTests(TaskManagerTest); |
| 20 }); | 18 }); |
| 21 } | 19 } |
| 22 | 20 |
| 23 @reflectiveTest | 21 @reflectiveTest |
| 24 class TaskManagerTest extends EngineTestCase { | 22 class TaskManagerTest extends EngineTestCase { |
| 25 static final ResultDescriptor result1 = new ResultDescriptor('result1', null); | 23 static final ResultDescriptor result1 = new ResultDescriptor('result1', null); |
| 26 static final ResultDescriptor result2 = new ResultDescriptor('result2', null); | 24 static final ResultDescriptor result2 = new ResultDescriptor('result2', null); |
| 27 | 25 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 test_removePriorityResult_present() { | 123 test_removePriorityResult_present() { |
| 126 TaskManager manager = new TaskManager(); | 124 TaskManager manager = new TaskManager(); |
| 127 manager.addPriorityResult(result1); | 125 manager.addPriorityResult(result1); |
| 128 manager.addPriorityResult(result2); | 126 manager.addPriorityResult(result2); |
| 129 Set<ResultDescriptor> results = manager.priorityResults; | 127 Set<ResultDescriptor> results = manager.priorityResults; |
| 130 expect(results, unorderedEquals([result1, result2])); | 128 expect(results, unorderedEquals([result1, result2])); |
| 131 manager.removePriorityResult(result1); | 129 manager.removePriorityResult(result1); |
| 132 expect(results, unorderedEquals([result2])); | 130 expect(results, unorderedEquals([result2])); |
| 133 } | 131 } |
| 134 } | 132 } |
| OLD | NEW |