| OLD | NEW |
| 1 library googleapis.translate.v2.test; | 1 library googleapis.translate.v2.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 res.list(arg_q, arg_target, cid: arg_cid, format: arg_format, source: arg_
source).then(unittest.expectAsync(((api.TranslationsListResponse response) { | 444 res.list(arg_q, arg_target, cid: arg_cid, format: arg_format, source: arg_
source).then(unittest.expectAsync(((api.TranslationsListResponse response) { |
| 445 checkTranslationsListResponse(response); | 445 checkTranslationsListResponse(response); |
| 446 }))); | 446 }))); |
| 447 }); | 447 }); |
| 448 | 448 |
| 449 }); | 449 }); |
| 450 | 450 |
| 451 | 451 |
| 452 } | 452 } |
| 453 | 453 |
| OLD | NEW |