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

Unified Diff: pkg/analysis_server/test/protocol_test.dart

Issue 1266923004: More fixes for failures on the Windows bot (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/protocol_test.dart
diff --git a/pkg/analysis_server/test/protocol_test.dart b/pkg/analysis_server/test/protocol_test.dart
index ddd1b35b233399867626b367d0ddc75d51724c0d..16146efae0b16f8adf6ed0affb58bcb2472b3e58 100644
--- a/pkg/analysis_server/test/protocol_test.dart
+++ b/pkg/analysis_server/test/protocol_test.dart
@@ -11,8 +11,10 @@ import 'package:analysis_server/src/protocol.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'package:unittest/unittest.dart';
+import 'utils.dart';
+
main() {
- groupSep = ' | ';
+ initializeTestEnvironment();
defineReflectiveTests(NotificationTest);
defineReflectiveTests(RequestTest);
defineReflectiveTests(RequestErrorTest);
@@ -77,7 +79,11 @@ class NotificationTest {
expect(notification.event, equals('foo'));
expect(notification.toJson()['params'], equals({'x': 'y'}));
expect(
- notification.toJson(), equals({'event': 'foo', 'params': {'x': 'y'}}));
+ notification.toJson(),
+ equals({
+ 'event': 'foo',
+ 'params': {'x': 'y'}
+ }));
}
}
@@ -108,12 +114,10 @@ class RequestErrorTest {
void test_toJson() {
var trace = 'a stack trace\r\nbar';
RequestError error = new RequestError(
- RequestErrorCode.UNKNOWN_REQUEST, 'msg', stackTrace: trace);
- expect(error.toJson(), {
- CODE: 'UNKNOWN_REQUEST',
- MESSAGE: 'msg',
- STACK_TRACE: trace
- });
+ RequestErrorCode.UNKNOWN_REQUEST, 'msg',
+ stackTrace: trace);
+ expect(error.toJson(),
+ {CODE: 'UNKNOWN_REQUEST', MESSAGE: 'msg', STACK_TRACE: trace});
}
}
@@ -184,11 +188,13 @@ class RequestTest {
void test_toJson_withParams() {
Request request = new Request('one', 'aMethod', {'foo': 'bar'});
- expect(request.toJson(), equals({
- Request.ID: 'one',
- Request.METHOD: 'aMethod',
- Request.PARAMS: {'foo': 'bar'}
- }));
+ expect(
+ request.toJson(),
+ equals({
+ Request.ID: 'one',
+ Request.METHOD: 'aMethod',
+ Request.PARAMS: {'foo': 'bar'}
+ }));
}
}
@@ -198,33 +204,45 @@ class ResponseTest {
Response response = new Response.invalidRequestFormat();
expect(response.id, equals(''));
expect(response.error, isNotNull);
- expect(response.toJson(), equals({
- Response.ID: '',
- Response.ERROR: {'code': 'INVALID_REQUEST', 'message': 'Invalid request'}
- }));
+ expect(
+ response.toJson(),
+ equals({
+ Response.ID: '',
+ Response.ERROR: {
+ 'code': 'INVALID_REQUEST',
+ 'message': 'Invalid request'
+ }
+ }));
}
void test_create_unanalyzedPriorityFiles() {
Response response = new Response.unanalyzedPriorityFiles('0', 'file list');
expect(response.id, equals('0'));
expect(response.error, isNotNull);
- expect(response.toJson(), equals({
- Response.ID: '0',
- Response.ERROR: {
- 'code': 'UNANALYZED_PRIORITY_FILES',
- 'message': "Unanalyzed files cannot be a priority: 'file list'"
- }
- }));
+ expect(
+ response.toJson(),
+ equals({
+ Response.ID: '0',
+ Response.ERROR: {
+ 'code': 'UNANALYZED_PRIORITY_FILES',
+ 'message': "Unanalyzed files cannot be a priority: 'file list'"
+ }
+ }));
}
void test_create_unknownRequest() {
Response response = new Response.unknownRequest(new Request('0', ''));
expect(response.id, equals('0'));
expect(response.error, isNotNull);
- expect(response.toJson(), equals({
- Response.ID: '0',
- Response.ERROR: {'code': 'UNKNOWN_REQUEST', 'message': 'Unknown request'}
- }));
+ expect(
+ response.toJson(),
+ equals({
+ Response.ID: '0',
+ Response.ERROR: {
+ 'code': 'UNKNOWN_REQUEST',
+ 'message': 'Unknown request'
+ }
+ }));
}
void test_fromJson() {
« no previous file with comments | « pkg/analysis_server/test/protocol_server_test.dart ('k') | pkg/analysis_server/test/search/element_references_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698