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

Side by Side Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 2394683006: Switch analysis_server to use 'package:test'. (Closed)
Patch Set: Created 4 years, 2 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
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 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 /** 9 /**
10 * Matchers for data types defined in the analysis server API 10 * Matchers for data types defined in the analysis server API
11 */ 11 */
12 library test.integration.protocol.matchers; 12 library test.integration.protocol.matchers;
13 13
14 import 'package:unittest/unittest.dart'; 14 import 'package:test/test.dart';
15 15
16 import 'integration_tests.dart'; 16 import 'integration_tests.dart';
17 17
18 18
19 /** 19 /**
20 * server.getVersion params 20 * server.getVersion params
21 */ 21 */
22 final Matcher isServerGetVersionParams = isNull; 22 final Matcher isServerGetVersionParams = isNull;
23 23
24 /** 24 /**
(...skipping 2459 matching lines...) Expand 10 before | Expand all | Expand 10 after
2484 * 2484 *
2485 * { 2485 * {
2486 * "newName": String 2486 * "newName": String
2487 * } 2487 * }
2488 */ 2488 */
2489 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 2489 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
2490 "rename options", { 2490 "rename options", {
2491 "newName": isString 2491 "newName": isString
2492 })); 2492 }));
2493 2493
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698