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_server/src/services/json.dart'; |
11 import 'package:analysis_testing/reflective_tests.dart'; | 11 import 'package:analysis_testing/reflective_tests.dart'; |
12 import 'package:unittest/unittest.dart'; | 12 import 'package:unittest/unittest.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 runReflectiveTests(NotificationTest); | 20 runReflectiveTests(NotificationTest); |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 response.setResult(resultName, resultValue); | 694 response.setResult(resultName, resultValue); |
695 expect(response.getResult(resultName), same(resultValue)); | 695 expect(response.getResult(resultName), same(resultValue)); |
696 expect(response.toJson(), equals({ | 696 expect(response.toJson(), equals({ |
697 Response.ID: '0', | 697 Response.ID: '0', |
698 Response.RESULT: { | 698 Response.RESULT: { |
699 resultName: resultValue | 699 resultName: resultValue |
700 } | 700 } |
701 })); | 701 })); |
702 } | 702 } |
703 } | 703 } |
OLD | NEW |