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

Unified Diff: generated/googleapis/test/reseller/v1_test.dart

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years 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: generated/googleapis/test/reseller/v1_test.dart
diff --git a/generated/googleapis/test/reseller/v1_test.dart b/generated/googleapis/test/reseller/v1_test.dart
index ada6b513275fea04fed177a8cfffa0fd683efa0d..a8fb4e8cc59828dde638afdbacf3b7f88a4b2852 100644
--- a/generated/googleapis/test/reseller/v1_test.dart
+++ b/generated/googleapis/test/reseller/v1_test.dart
@@ -246,6 +246,7 @@ buildSubscription() {
var o = new api.Subscription();
buildCounterSubscription++;
if (buildCounterSubscription < 3) {
+ o.billingMethod = "foo";
o.creationTime = "foo";
o.customerId = "foo";
o.kind = "foo";
@@ -267,6 +268,7 @@ buildSubscription() {
checkSubscription(api.Subscription o) {
buildCounterSubscription++;
if (buildCounterSubscription < 3) {
+ unittest.expect(o.billingMethod, unittest.equals('foo'));
unittest.expect(o.creationTime, unittest.equals('foo'));
unittest.expect(o.customerId, unittest.equals('foo'));
unittest.expect(o.kind, unittest.equals('foo'));
@@ -284,14 +286,14 @@ checkSubscription(api.Subscription o) {
buildCounterSubscription--;
}
-buildUnnamed1023() {
+buildUnnamed1052() {
var o = new core.List<api.Subscription>();
o.add(buildSubscription());
o.add(buildSubscription());
return o;
}
-checkUnnamed1023(core.List<api.Subscription> o) {
+checkUnnamed1052(core.List<api.Subscription> o) {
unittest.expect(o, unittest.hasLength(2));
checkSubscription(o[0]);
checkSubscription(o[1]);
@@ -304,7 +306,7 @@ buildSubscriptions() {
if (buildCounterSubscriptions < 3) {
o.kind = "foo";
o.nextPageToken = "foo";
- o.subscriptions = buildUnnamed1023();
+ o.subscriptions = buildUnnamed1052();
}
buildCounterSubscriptions--;
return o;
@@ -315,7 +317,7 @@ checkSubscriptions(api.Subscriptions o) {
if (buildCounterSubscriptions < 3) {
unittest.expect(o.kind, unittest.equals('foo'));
unittest.expect(o.nextPageToken, unittest.equals('foo'));
- checkUnnamed1023(o.subscriptions);
+ checkUnnamed1052(o.subscriptions);
}
buildCounterSubscriptions--;
}
« no previous file with comments | « generated/googleapis/test/qpxexpress/v1_test.dart ('k') | generated/googleapis/test/siteverification/v1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698