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

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

Issue 969113002: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
« no previous file with comments | « pkg/analysis_server/test/protocol_server_test.dart ('k') | pkg/analysis_server/test/reflective_tests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bc4016eb361d0c2048207a50f261d10ea6e1d4ba..3148cdf590e7280c4ac8ccd8e27b1c6055b99ed5 100644
--- a/pkg/analysis_server/test/protocol_test.dart
+++ b/pkg/analysis_server/test/protocol_test.dart
@@ -12,10 +12,8 @@ import 'package:unittest/unittest.dart';
import 'reflective_tests.dart';
-
Matcher _throwsRequestFailure = throwsA(new isInstanceOf<RequestFailure>());
-
main() {
groupSep = ' | ';
runReflectiveTests(NotificationTest);
@@ -24,7 +22,6 @@ main() {
runReflectiveTests(ResponseTest);
}
-
@reflectiveTest
class InvalidParameterResponseMatcher extends Matcher {
static const String ERROR_CODE = 'INVALID_PARAMETER';
@@ -53,7 +50,6 @@ class InvalidParameterResponseMatcher extends Matcher {
}
}
-
@reflectiveTest
class NotificationTest {
void test_fromJson() {
@@ -64,43 +60,28 @@ class NotificationTest {
}
void test_fromJson_withParams() {
- Notification original = new Notification('foo', {
- 'x': 'y'
- });
+ Notification original = new Notification('foo', {'x': 'y'});
Notification notification = new Notification.fromJson(original.toJson());
expect(notification.event, equals('foo'));
- expect(notification.toJson()['params'], equals({
- 'x': 'y'
- }));
+ expect(notification.toJson()['params'], equals({'x': 'y'}));
}
void test_toJson_noParams() {
Notification notification = new Notification('foo');
expect(notification.event, equals('foo'));
expect(notification.toJson().keys, isNot(contains('params')));
- expect(notification.toJson(), equals({
- 'event': 'foo'
- }));
+ expect(notification.toJson(), equals({'event': 'foo'}));
}
void test_toJson_withParams() {
- Notification notification = new Notification('foo', {
- 'x': 'y'
- });
+ Notification notification = new Notification('foo', {'x': 'y'});
expect(notification.event, equals('foo'));
- expect(notification.toJson()['params'], equals({
- 'x': 'y'
- }));
- expect(notification.toJson(), equals({
- 'event': 'foo',
- 'params': {
- 'x': 'y'
- }
- }));
+ expect(notification.toJson()['params'], equals({'x': 'y'}));
+ expect(
+ notification.toJson(), equals({'event': 'foo', 'params': {'x': 'y'}}));
}
}
-
@reflectiveTest
class RequestErrorTest {
void test_create() {
@@ -108,10 +89,7 @@ class RequestErrorTest {
new RequestError(RequestErrorCode.INVALID_REQUEST, 'msg');
expect(error.code, RequestErrorCode.INVALID_REQUEST);
expect(error.message, "msg");
- expect(error.toJson(), equals({
- CODE: 'INVALID_REQUEST',
- MESSAGE: "msg"
- }));
+ expect(error.toJson(), equals({CODE: 'INVALID_REQUEST', MESSAGE: "msg"}));
}
void test_fromJson() {
@@ -130,17 +108,13 @@ 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
- });
+ RequestError error = new RequestError(
+ RequestErrorCode.UNKNOWN_REQUEST, 'msg', stackTrace: trace);
+ expect(error.toJson(),
+ {CODE: 'UNKNOWN_REQUEST', MESSAGE: 'msg', STACK_TRACE: trace});
}
}
-
@reflectiveTest
class RequestTest {
void test_fromJson() {
@@ -192,41 +166,30 @@ class RequestTest {
}
void test_fromJson_withParams() {
- Request original = new Request('one', 'aMethod', {
- 'foo': 'bar'
- });
+ Request original = new Request('one', 'aMethod', {'foo': 'bar'});
String json = JSON.encode(original.toJson());
Request request = new Request.fromString(json);
expect(request.id, equals('one'));
expect(request.method, equals('aMethod'));
- expect(request.toJson()['params'], equals({
- 'foo': 'bar'
- }));
+ expect(request.toJson()['params'], equals({'foo': 'bar'}));
}
void test_toJson() {
Request request = new Request('one', 'aMethod');
- expect(request.toJson(), equals({
- Request.ID: 'one',
- Request.METHOD: 'aMethod'
- }));
+ expect(request.toJson(),
+ equals({Request.ID: 'one', Request.METHOD: 'aMethod'}));
}
void test_toJson_withParams() {
- Request request = new Request('one', 'aMethod', {
- 'foo': 'bar'
- });
+ Request request = new Request('one', 'aMethod', {'foo': 'bar'});
expect(request.toJson(), equals({
Request.ID: 'one',
Request.METHOD: 'aMethod',
- Request.PARAMS: {
- 'foo': 'bar'
- }
+ Request.PARAMS: {'foo': 'bar'}
}));
}
}
-
@reflectiveTest
class ResponseTest {
void test_create_invalidRequestFormat() {
@@ -235,10 +198,7 @@ class ResponseTest {
expect(response.error, isNotNull);
expect(response.toJson(), equals({
Response.ID: '',
- Response.ERROR: {
- 'code': 'INVALID_REQUEST',
- 'message': 'Invalid request'
- }
+ Response.ERROR: {'code': 'INVALID_REQUEST', 'message': 'Invalid request'}
}));
}
@@ -261,10 +221,7 @@ class ResponseTest {
expect(response.error, isNotNull);
expect(response.toJson(), equals({
Response.ID: '0',
- Response.ERROR: {
- 'code': 'UNKNOWN_REQUEST',
- 'message': 'Unknown request'
- }
+ Response.ERROR: {'code': 'UNKNOWN_REQUEST', 'message': 'Unknown request'}
}));
}
@@ -285,9 +242,7 @@ class ResponseTest {
}
void test_fromJson_withResult() {
- Response original = new Response('myId', result: {
- 'foo': 'bar'
- });
+ Response original = new Response('myId', result: {'foo': 'bar'});
Response response = new Response.fromJson(original.toJson());
expect(response.id, equals('myId'));
Map<String, Object> result = response.toJson()['result'];
« no previous file with comments | « pkg/analysis_server/test/protocol_server_test.dart ('k') | pkg/analysis_server/test/reflective_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698