Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: pkg/analysis_server/test/protocol_test.dart

Issue 533243002: Merge analysis_testing package into analysis_server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/analysis_server/test/mocks2.dart ('k') | pkg/analysis_server/test/reflective_tests.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/mocks2.dart ('k') | pkg/analysis_server/test/reflective_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698