| 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.protocol; | 5 library test.protocol; |
| 6 | 6 |
| 7 import 'dart:convert'; | 7 import 'dart:convert'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/protocol.dart'; | 9 import 'package:analysis_server/src/protocol.dart'; |
| 10 import 'package:analysis_services/json.dart'; |
| 10 import 'package:analysis_testing/reflective_tests.dart'; | 11 import 'package:analysis_testing/reflective_tests.dart'; |
| 11 import 'package:unittest/unittest.dart'; | 12 import 'package:unittest/unittest.dart'; |
| 12 import 'package:analysis_server/src/collections.dart'; | |
| 13 | 13 |
| 14 | 14 |
| 15 Matcher _throwsRequestFailure = throwsA(new isInstanceOf<RequestFailure>()); | 15 Matcher _throwsRequestFailure = throwsA(new isInstanceOf<RequestFailure>()); |
| 16 | 16 |
| 17 | 17 |
| 18 main() { | 18 main() { |
| 19 groupSep = ' | '; | 19 groupSep = ' | '; |
| 20 group('Notification', () { | 20 group('Notification', () { |
| 21 runReflectiveTests(NotificationTest); | 21 runReflectiveTests(NotificationTest); |
| 22 }); | 22 }); |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 response.setResult(resultName, resultValue); | 704 response.setResult(resultName, resultValue); |
| 705 expect(response.getResult(resultName), same(resultValue)); | 705 expect(response.getResult(resultName), same(resultValue)); |
| 706 expect(response.toJson(), equals({ | 706 expect(response.toJson(), equals({ |
| 707 Response.ID: '0', | 707 Response.ID: '0', |
| 708 Response.RESULT: { | 708 Response.RESULT: { |
| 709 resultName: resultValue | 709 resultName: resultValue |
| 710 } | 710 } |
| 711 })); | 711 })); |
| 712 } | 712 } |
| 713 } | 713 } |
| OLD | NEW |