| 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 | 6 |
| 7 import 'package:analysis_server/protocol/protocol.dart'; | 7 import 'package:analysis_server/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_generated.dart'; | 8 import 'package:analysis_server/protocol/protocol_generated.dart'; |
| 9 import 'package:analysis_server/src/edit/edit_domain.dart'; | 9 import 'package:analysis_server/src/edit/edit_domain.dart'; |
| 10 import 'package:analyzer_plugin/protocol/protocol_common.dart'; | 10 import 'package:analyzer_plugin/protocol/protocol_common.dart'; |
| 11 import 'package:plugin/manager.dart'; | |
| 12 import 'package:test/test.dart'; | 11 import 'package:test/test.dart'; |
| 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 12 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 14 | 13 |
| 15 import '../analysis_abstract.dart'; | 14 import '../analysis_abstract.dart'; |
| 16 import '../mocks.dart'; | 15 import '../mocks.dart'; |
| 17 | 16 |
| 18 main() { | 17 main() { |
| 19 defineReflectiveSuite(() { | 18 defineReflectiveSuite(() { |
| 20 defineReflectiveTests(FormatTest); | 19 defineReflectiveTests(FormatTest); |
| 21 }); | 20 }); |
| 22 } | 21 } |
| 23 | 22 |
| 24 @reflectiveTest | 23 @reflectiveTest |
| 25 class FormatTest extends AbstractAnalysisTest { | 24 class FormatTest extends AbstractAnalysisTest { |
| 26 @override | 25 @override |
| 27 void setUp() { | 26 void setUp() { |
| 28 super.setUp(); | 27 super.setUp(); |
| 29 createProject(); | 28 createProject(); |
| 30 ExtensionManager manager = new ExtensionManager(); | |
| 31 manager.processPlugins([server.serverPlugin]); | |
| 32 handler = new EditDomainHandler(server); | 29 handler = new EditDomainHandler(server); |
| 33 } | 30 } |
| 34 | 31 |
| 35 Future test_format_longLine() { | 32 Future test_format_longLine() { |
| 36 String content = ''' | 33 String content = ''' |
| 37 fun(firstParam, secondParam, thirdParam, fourthParam) { | 34 fun(firstParam, secondParam, thirdParam, fourthParam) { |
| 38 if (firstParam.noNull && secondParam.noNull && thirdParam.noNull && fourthPara
m.noNull) {} | 35 if (firstParam.noNull && secondParam.noNull && thirdParam.noNull && fourthPara
m.noNull) {} |
| 39 } | 36 } |
| 40 '''; | 37 '''; |
| 41 addTestFile(content); | 38 addTestFile(content); |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 EditFormatResult _formatAt(int selectionOffset, int selectionLength, | 116 EditFormatResult _formatAt(int selectionOffset, int selectionLength, |
| 120 {int lineLength}) { | 117 {int lineLength}) { |
| 121 Request request = new EditFormatParams( | 118 Request request = new EditFormatParams( |
| 122 testFile, selectionOffset, selectionLength, | 119 testFile, selectionOffset, selectionLength, |
| 123 lineLength: lineLength) | 120 lineLength: lineLength) |
| 124 .toRequest('0'); | 121 .toRequest('0'); |
| 125 Response response = handleSuccessfulRequest(request); | 122 Response response = handleSuccessfulRequest(request); |
| 126 return new EditFormatResult.fromResponse(response); | 123 return new EditFormatResult.fromResponse(response); |
| 127 } | 124 } |
| 128 } | 125 } |
| OLD | NEW |