| 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/constants.dart'; | 9 import 'package:analysis_server/src/constants.dart'; |
| 10 import 'package:analysis_server/src/protocol.dart'; | 10 import 'package:analysis_server/src/protocol.dart'; |
| 11 import 'package:analysis_testing/reflective_tests.dart'; | 11 import '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); |
| 21 runReflectiveTests(RequestTest); | 21 runReflectiveTests(RequestTest); |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 void test_fromJson_withResult() { | 257 void test_fromJson_withResult() { |
| 258 Response original = new Response('myId', result: {'foo': 'bar'}); | 258 Response original = new Response('myId', result: {'foo': 'bar'}); |
| 259 Response response = new Response.fromJson(original.toJson()); | 259 Response response = new Response.fromJson(original.toJson()); |
| 260 expect(response.id, equals('myId')); | 260 expect(response.id, equals('myId')); |
| 261 Map<String, Object> result = response.toJson()['result']; | 261 Map<String, Object> result = response.toJson()['result']; |
| 262 expect(result.length, equals(1)); | 262 expect(result.length, equals(1)); |
| 263 expect(result['foo'], equals('bar')); | 263 expect(result['foo'], equals('bar')); |
| 264 } | 264 } |
| 265 } | 265 } |
| OLD | NEW |