Index: generated/googleapis/test/fusiontables/v2_test.dart |
diff --git a/generated/googleapis/test/fusiontables/v2_test.dart b/generated/googleapis/test/fusiontables/v2_test.dart |
index f89d007c776d62b517b51286c3976b17133593f2..e8bf5382eb3c559f1ed03a44ed9064baf3746cb8 100644 |
--- a/generated/googleapis/test/fusiontables/v2_test.dart |
+++ b/generated/googleapis/test/fusiontables/v2_test.dart |
@@ -101,14 +101,14 @@ checkColumnBaseColumn(api.ColumnBaseColumn o) { |
buildCounterColumnBaseColumn--; |
} |
-buildUnnamed406() { |
+buildUnnamed408() { |
var o = new core.List<core.String>(); |
o.add("foo"); |
o.add("foo"); |
return o; |
} |
-checkUnnamed406(core.List<core.String> o) { |
+checkUnnamed408(core.List<core.String> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals('foo')); |
unittest.expect(o[1], unittest.equals('foo')); |
@@ -129,7 +129,7 @@ buildColumn() { |
o.kind = "foo"; |
o.name = "foo"; |
o.type = "foo"; |
- o.validValues = buildUnnamed406(); |
+ o.validValues = buildUnnamed408(); |
o.validateData = true; |
} |
buildCounterColumn--; |
@@ -149,20 +149,20 @@ checkColumn(api.Column o) { |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.name, unittest.equals('foo')); |
unittest.expect(o.type, unittest.equals('foo')); |
- checkUnnamed406(o.validValues); |
+ checkUnnamed408(o.validValues); |
unittest.expect(o.validateData, unittest.isTrue); |
} |
buildCounterColumn--; |
} |
-buildUnnamed407() { |
+buildUnnamed409() { |
var o = new core.List<api.Column>(); |
o.add(buildColumn()); |
o.add(buildColumn()); |
return o; |
} |
-checkUnnamed407(core.List<api.Column> o) { |
+checkUnnamed409(core.List<api.Column> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkColumn(o[0]); |
checkColumn(o[1]); |
@@ -173,7 +173,7 @@ buildColumnList() { |
var o = new api.ColumnList(); |
buildCounterColumnList++; |
if (buildCounterColumnList < 3) { |
- o.items = buildUnnamed407(); |
+ o.items = buildUnnamed409(); |
o.kind = "foo"; |
o.nextPageToken = "foo"; |
o.totalItems = 42; |
@@ -185,7 +185,7 @@ buildColumnList() { |
checkColumnList(api.ColumnList o) { |
buildCounterColumnList++; |
if (buildCounterColumnList < 3) { |
- checkUnnamed407(o.items); |
+ checkUnnamed409(o.items); |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.nextPageToken, unittest.equals('foo')); |
unittest.expect(o.totalItems, unittest.equals(42)); |
@@ -193,14 +193,14 @@ checkColumnList(api.ColumnList o) { |
buildCounterColumnList--; |
} |
-buildUnnamed408() { |
+buildUnnamed410() { |
var o = new core.List<core.Object>(); |
o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
return o; |
} |
-checkUnnamed408(core.List<core.Object> o) { |
+checkUnnamed410(core.List<core.Object> o) { |
unittest.expect(o, unittest.hasLength(2)); |
var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expect(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], unittest.equals('foo')); |
var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expect(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], unittest.equals('foo')); |
@@ -211,7 +211,7 @@ buildGeometry() { |
var o = new api.Geometry(); |
buildCounterGeometry++; |
if (buildCounterGeometry < 3) { |
- o.geometries = buildUnnamed408(); |
+ o.geometries = buildUnnamed410(); |
o.geometry = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
o.type = "foo"; |
} |
@@ -222,7 +222,7 @@ buildGeometry() { |
checkGeometry(api.Geometry o) { |
buildCounterGeometry++; |
if (buildCounterGeometry < 3) { |
- checkUnnamed408(o.geometries); |
+ checkUnnamed410(o.geometries); |
var casted3 = (o.geometry) as core.Map; unittest.expect(casted3, unittest.hasLength(3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expect(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], unittest.equals('foo')); |
unittest.expect(o.type, unittest.equals('foo')); |
} |
@@ -250,30 +250,30 @@ checkImport(api.Import o) { |
buildCounterImport--; |
} |
-buildUnnamed409() { |
+buildUnnamed411() { |
var o = new core.List<core.double>(); |
o.add(42.0); |
o.add(42.0); |
return o; |
} |
-checkUnnamed409(core.List<core.double> o) { |
+checkUnnamed411(core.List<core.double> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals(42.0)); |
unittest.expect(o[1], unittest.equals(42.0)); |
} |
-buildUnnamed410() { |
+buildUnnamed412() { |
var o = new core.List<core.List<core.double>>(); |
- o.add(buildUnnamed409()); |
- o.add(buildUnnamed409()); |
+ o.add(buildUnnamed411()); |
+ o.add(buildUnnamed411()); |
return o; |
} |
-checkUnnamed410(core.List<core.List<core.double>> o) { |
+checkUnnamed412(core.List<core.List<core.double>> o) { |
unittest.expect(o, unittest.hasLength(2)); |
- checkUnnamed409(o[0]); |
- checkUnnamed409(o[1]); |
+ checkUnnamed411(o[0]); |
+ checkUnnamed411(o[1]); |
} |
core.int buildCounterLine = 0; |
@@ -281,7 +281,7 @@ buildLine() { |
var o = new api.Line(); |
buildCounterLine++; |
if (buildCounterLine < 3) { |
- o.coordinates = buildUnnamed410(); |
+ o.coordinates = buildUnnamed412(); |
o.type = "foo"; |
} |
buildCounterLine--; |
@@ -291,7 +291,7 @@ buildLine() { |
checkLine(api.Line o) { |
buildCounterLine++; |
if (buildCounterLine < 3) { |
- checkUnnamed410(o.coordinates); |
+ checkUnnamed412(o.coordinates); |
unittest.expect(o.type, unittest.equals('foo')); |
} |
buildCounterLine--; |
@@ -324,14 +324,14 @@ checkLineStyle(api.LineStyle o) { |
buildCounterLineStyle--; |
} |
-buildUnnamed411() { |
+buildUnnamed413() { |
var o = new core.List<core.double>(); |
o.add(42.0); |
o.add(42.0); |
return o; |
} |
-checkUnnamed411(core.List<core.double> o) { |
+checkUnnamed413(core.List<core.double> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals(42.0)); |
unittest.expect(o[1], unittest.equals(42.0)); |
@@ -342,7 +342,7 @@ buildPoint() { |
var o = new api.Point(); |
buildCounterPoint++; |
if (buildCounterPoint < 3) { |
- o.coordinates = buildUnnamed411(); |
+ o.coordinates = buildUnnamed413(); |
o.type = "foo"; |
} |
buildCounterPoint--; |
@@ -352,7 +352,7 @@ buildPoint() { |
checkPoint(api.Point o) { |
buildCounterPoint++; |
if (buildCounterPoint < 3) { |
- checkUnnamed411(o.coordinates); |
+ checkUnnamed413(o.coordinates); |
unittest.expect(o.type, unittest.equals('foo')); |
} |
buildCounterPoint--; |
@@ -379,43 +379,43 @@ checkPointStyle(api.PointStyle o) { |
buildCounterPointStyle--; |
} |
-buildUnnamed412() { |
+buildUnnamed414() { |
var o = new core.List<core.double>(); |
o.add(42.0); |
o.add(42.0); |
return o; |
} |
-checkUnnamed412(core.List<core.double> o) { |
+checkUnnamed414(core.List<core.double> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals(42.0)); |
unittest.expect(o[1], unittest.equals(42.0)); |
} |
-buildUnnamed413() { |
+buildUnnamed415() { |
var o = new core.List<core.List<core.double>>(); |
- o.add(buildUnnamed412()); |
- o.add(buildUnnamed412()); |
+ o.add(buildUnnamed414()); |
+ o.add(buildUnnamed414()); |
return o; |
} |
-checkUnnamed413(core.List<core.List<core.double>> o) { |
+checkUnnamed415(core.List<core.List<core.double>> o) { |
unittest.expect(o, unittest.hasLength(2)); |
- checkUnnamed412(o[0]); |
- checkUnnamed412(o[1]); |
+ checkUnnamed414(o[0]); |
+ checkUnnamed414(o[1]); |
} |
-buildUnnamed414() { |
+buildUnnamed416() { |
var o = new core.List<core.List<core.List<core.double>>>(); |
- o.add(buildUnnamed413()); |
- o.add(buildUnnamed413()); |
+ o.add(buildUnnamed415()); |
+ o.add(buildUnnamed415()); |
return o; |
} |
-checkUnnamed414(core.List<core.List<core.List<core.double>>> o) { |
+checkUnnamed416(core.List<core.List<core.List<core.double>>> o) { |
unittest.expect(o, unittest.hasLength(2)); |
- checkUnnamed413(o[0]); |
- checkUnnamed413(o[1]); |
+ checkUnnamed415(o[0]); |
+ checkUnnamed415(o[1]); |
} |
core.int buildCounterPolygon = 0; |
@@ -423,7 +423,7 @@ buildPolygon() { |
var o = new api.Polygon(); |
buildCounterPolygon++; |
if (buildCounterPolygon < 3) { |
- o.coordinates = buildUnnamed414(); |
+ o.coordinates = buildUnnamed416(); |
o.type = "foo"; |
} |
buildCounterPolygon--; |
@@ -433,7 +433,7 @@ buildPolygon() { |
checkPolygon(api.Polygon o) { |
buildCounterPolygon++; |
if (buildCounterPolygon < 3) { |
- checkUnnamed414(o.coordinates); |
+ checkUnnamed416(o.coordinates); |
unittest.expect(o.type, unittest.equals('foo')); |
} |
buildCounterPolygon--; |
@@ -472,43 +472,43 @@ checkPolygonStyle(api.PolygonStyle o) { |
buildCounterPolygonStyle--; |
} |
-buildUnnamed415() { |
+buildUnnamed417() { |
var o = new core.List<core.String>(); |
o.add("foo"); |
o.add("foo"); |
return o; |
} |
-checkUnnamed415(core.List<core.String> o) { |
+checkUnnamed417(core.List<core.String> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals('foo')); |
unittest.expect(o[1], unittest.equals('foo')); |
} |
-buildUnnamed416() { |
+buildUnnamed418() { |
var o = new core.List<core.Object>(); |
o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
return o; |
} |
-checkUnnamed416(core.List<core.Object> o) { |
+checkUnnamed418(core.List<core.Object> o) { |
unittest.expect(o, unittest.hasLength(2)); |
var casted4 = (o[0]) as core.Map; unittest.expect(casted4, unittest.hasLength(3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expect(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], unittest.equals('foo')); |
var casted5 = (o[1]) as core.Map; unittest.expect(casted5, unittest.hasLength(3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expect(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], unittest.equals('foo')); |
} |
-buildUnnamed417() { |
+buildUnnamed419() { |
var o = new core.List<core.List<core.Object>>(); |
- o.add(buildUnnamed416()); |
- o.add(buildUnnamed416()); |
+ o.add(buildUnnamed418()); |
+ o.add(buildUnnamed418()); |
return o; |
} |
-checkUnnamed417(core.List<core.List<core.Object>> o) { |
+checkUnnamed419(core.List<core.List<core.Object>> o) { |
unittest.expect(o, unittest.hasLength(2)); |
- checkUnnamed416(o[0]); |
- checkUnnamed416(o[1]); |
+ checkUnnamed418(o[0]); |
+ checkUnnamed418(o[1]); |
} |
core.int buildCounterSqlresponse = 0; |
@@ -516,9 +516,9 @@ buildSqlresponse() { |
var o = new api.Sqlresponse(); |
buildCounterSqlresponse++; |
if (buildCounterSqlresponse < 3) { |
- o.columns = buildUnnamed415(); |
+ o.columns = buildUnnamed417(); |
o.kind = "foo"; |
- o.rows = buildUnnamed417(); |
+ o.rows = buildUnnamed419(); |
} |
buildCounterSqlresponse--; |
return o; |
@@ -527,21 +527,21 @@ buildSqlresponse() { |
checkSqlresponse(api.Sqlresponse o) { |
buildCounterSqlresponse++; |
if (buildCounterSqlresponse < 3) { |
- checkUnnamed415(o.columns); |
+ checkUnnamed417(o.columns); |
unittest.expect(o.kind, unittest.equals('foo')); |
- checkUnnamed417(o.rows); |
+ checkUnnamed419(o.rows); |
} |
buildCounterSqlresponse--; |
} |
-buildUnnamed418() { |
+buildUnnamed420() { |
var o = new core.List<api.Bucket>(); |
o.add(buildBucket()); |
o.add(buildBucket()); |
return o; |
} |
-checkUnnamed418(core.List<api.Bucket> o) { |
+checkUnnamed420(core.List<api.Bucket> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkBucket(o[0]); |
checkBucket(o[1]); |
@@ -568,14 +568,14 @@ checkStyleFunctionGradientColors(api.StyleFunctionGradientColors o) { |
buildCounterStyleFunctionGradientColors--; |
} |
-buildUnnamed419() { |
+buildUnnamed421() { |
var o = new core.List<api.StyleFunctionGradientColors>(); |
o.add(buildStyleFunctionGradientColors()); |
o.add(buildStyleFunctionGradientColors()); |
return o; |
} |
-checkUnnamed419(core.List<api.StyleFunctionGradientColors> o) { |
+checkUnnamed421(core.List<api.StyleFunctionGradientColors> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkStyleFunctionGradientColors(o[0]); |
checkStyleFunctionGradientColors(o[1]); |
@@ -586,7 +586,7 @@ buildStyleFunctionGradient() { |
var o = new api.StyleFunctionGradient(); |
buildCounterStyleFunctionGradient++; |
if (buildCounterStyleFunctionGradient < 3) { |
- o.colors = buildUnnamed419(); |
+ o.colors = buildUnnamed421(); |
o.max = 42.0; |
o.min = 42.0; |
} |
@@ -597,7 +597,7 @@ buildStyleFunctionGradient() { |
checkStyleFunctionGradient(api.StyleFunctionGradient o) { |
buildCounterStyleFunctionGradient++; |
if (buildCounterStyleFunctionGradient < 3) { |
- checkUnnamed419(o.colors); |
+ checkUnnamed421(o.colors); |
unittest.expect(o.max, unittest.equals(42.0)); |
unittest.expect(o.min, unittest.equals(42.0)); |
} |
@@ -609,7 +609,7 @@ buildStyleFunction() { |
var o = new api.StyleFunction(); |
buildCounterStyleFunction++; |
if (buildCounterStyleFunction < 3) { |
- o.buckets = buildUnnamed418(); |
+ o.buckets = buildUnnamed420(); |
o.columnName = "foo"; |
o.gradient = buildStyleFunctionGradient(); |
o.kind = "foo"; |
@@ -621,7 +621,7 @@ buildStyleFunction() { |
checkStyleFunction(api.StyleFunction o) { |
buildCounterStyleFunction++; |
if (buildCounterStyleFunction < 3) { |
- checkUnnamed418(o.buckets); |
+ checkUnnamed420(o.buckets); |
unittest.expect(o.columnName, unittest.equals('foo')); |
checkStyleFunctionGradient(o.gradient); |
unittest.expect(o.kind, unittest.equals('foo')); |
@@ -660,14 +660,14 @@ checkStyleSetting(api.StyleSetting o) { |
buildCounterStyleSetting--; |
} |
-buildUnnamed420() { |
+buildUnnamed422() { |
var o = new core.List<api.StyleSetting>(); |
o.add(buildStyleSetting()); |
o.add(buildStyleSetting()); |
return o; |
} |
-checkUnnamed420(core.List<api.StyleSetting> o) { |
+checkUnnamed422(core.List<api.StyleSetting> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkStyleSetting(o[0]); |
checkStyleSetting(o[1]); |
@@ -678,7 +678,7 @@ buildStyleSettingList() { |
var o = new api.StyleSettingList(); |
buildCounterStyleSettingList++; |
if (buildCounterStyleSettingList < 3) { |
- o.items = buildUnnamed420(); |
+ o.items = buildUnnamed422(); |
o.kind = "foo"; |
o.nextPageToken = "foo"; |
o.totalItems = 42; |
@@ -690,7 +690,7 @@ buildStyleSettingList() { |
checkStyleSettingList(api.StyleSettingList o) { |
buildCounterStyleSettingList++; |
if (buildCounterStyleSettingList < 3) { |
- checkUnnamed420(o.items); |
+ checkUnnamed422(o.items); |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.nextPageToken, unittest.equals('foo')); |
unittest.expect(o.totalItems, unittest.equals(42)); |
@@ -698,27 +698,27 @@ checkStyleSettingList(api.StyleSettingList o) { |
buildCounterStyleSettingList--; |
} |
-buildUnnamed421() { |
+buildUnnamed423() { |
var o = new core.List<core.String>(); |
o.add("foo"); |
o.add("foo"); |
return o; |
} |
-checkUnnamed421(core.List<core.String> o) { |
+checkUnnamed423(core.List<core.String> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals('foo')); |
unittest.expect(o[1], unittest.equals('foo')); |
} |
-buildUnnamed422() { |
+buildUnnamed424() { |
var o = new core.List<api.Column>(); |
o.add(buildColumn()); |
o.add(buildColumn()); |
return o; |
} |
-checkUnnamed422(core.List<api.Column> o) { |
+checkUnnamed424(core.List<api.Column> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkColumn(o[0]); |
checkColumn(o[1]); |
@@ -731,9 +731,9 @@ buildTable() { |
if (buildCounterTable < 3) { |
o.attribution = "foo"; |
o.attributionLink = "foo"; |
- o.baseTableIds = buildUnnamed421(); |
+ o.baseTableIds = buildUnnamed423(); |
o.columnPropertiesJsonSchema = "foo"; |
- o.columns = buildUnnamed422(); |
+ o.columns = buildUnnamed424(); |
o.description = "foo"; |
o.isExportable = true; |
o.kind = "foo"; |
@@ -752,9 +752,9 @@ checkTable(api.Table o) { |
if (buildCounterTable < 3) { |
unittest.expect(o.attribution, unittest.equals('foo')); |
unittest.expect(o.attributionLink, unittest.equals('foo')); |
- checkUnnamed421(o.baseTableIds); |
+ checkUnnamed423(o.baseTableIds); |
unittest.expect(o.columnPropertiesJsonSchema, unittest.equals('foo')); |
- checkUnnamed422(o.columns); |
+ checkUnnamed424(o.columns); |
unittest.expect(o.description, unittest.equals('foo')); |
unittest.expect(o.isExportable, unittest.isTrue); |
unittest.expect(o.kind, unittest.equals('foo')); |
@@ -767,14 +767,14 @@ checkTable(api.Table o) { |
buildCounterTable--; |
} |
-buildUnnamed423() { |
+buildUnnamed425() { |
var o = new core.List<api.Table>(); |
o.add(buildTable()); |
o.add(buildTable()); |
return o; |
} |
-checkUnnamed423(core.List<api.Table> o) { |
+checkUnnamed425(core.List<api.Table> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkTable(o[0]); |
checkTable(o[1]); |
@@ -785,7 +785,7 @@ buildTableList() { |
var o = new api.TableList(); |
buildCounterTableList++; |
if (buildCounterTableList < 3) { |
- o.items = buildUnnamed423(); |
+ o.items = buildUnnamed425(); |
o.kind = "foo"; |
o.nextPageToken = "foo"; |
} |
@@ -796,7 +796,7 @@ buildTableList() { |
checkTableList(api.TableList o) { |
buildCounterTableList++; |
if (buildCounterTableList < 3) { |
- checkUnnamed423(o.items); |
+ checkUnnamed425(o.items); |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.nextPageToken, unittest.equals('foo')); |
} |
@@ -830,14 +830,14 @@ checkTask(api.Task o) { |
buildCounterTask--; |
} |
-buildUnnamed424() { |
+buildUnnamed426() { |
var o = new core.List<api.Task>(); |
o.add(buildTask()); |
o.add(buildTask()); |
return o; |
} |
-checkUnnamed424(core.List<api.Task> o) { |
+checkUnnamed426(core.List<api.Task> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkTask(o[0]); |
checkTask(o[1]); |
@@ -848,7 +848,7 @@ buildTaskList() { |
var o = new api.TaskList(); |
buildCounterTaskList++; |
if (buildCounterTaskList < 3) { |
- o.items = buildUnnamed424(); |
+ o.items = buildUnnamed426(); |
o.kind = "foo"; |
o.nextPageToken = "foo"; |
o.totalItems = 42; |
@@ -860,7 +860,7 @@ buildTaskList() { |
checkTaskList(api.TaskList o) { |
buildCounterTaskList++; |
if (buildCounterTaskList < 3) { |
- checkUnnamed424(o.items); |
+ checkUnnamed426(o.items); |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.nextPageToken, unittest.equals('foo')); |
unittest.expect(o.totalItems, unittest.equals(42)); |
@@ -868,14 +868,14 @@ checkTaskList(api.TaskList o) { |
buildCounterTaskList--; |
} |
-buildUnnamed425() { |
+buildUnnamed427() { |
var o = new core.List<core.String>(); |
o.add("foo"); |
o.add("foo"); |
return o; |
} |
-checkUnnamed425(core.List<core.String> o) { |
+checkUnnamed427(core.List<core.String> o) { |
unittest.expect(o, unittest.hasLength(2)); |
unittest.expect(o[0], unittest.equals('foo')); |
unittest.expect(o[1], unittest.equals('foo')); |
@@ -886,7 +886,7 @@ buildTemplate() { |
var o = new api.Template(); |
buildCounterTemplate++; |
if (buildCounterTemplate < 3) { |
- o.automaticColumnNames = buildUnnamed425(); |
+ o.automaticColumnNames = buildUnnamed427(); |
o.body = "foo"; |
o.kind = "foo"; |
o.name = "foo"; |
@@ -900,7 +900,7 @@ buildTemplate() { |
checkTemplate(api.Template o) { |
buildCounterTemplate++; |
if (buildCounterTemplate < 3) { |
- checkUnnamed425(o.automaticColumnNames); |
+ checkUnnamed427(o.automaticColumnNames); |
unittest.expect(o.body, unittest.equals('foo')); |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.name, unittest.equals('foo')); |
@@ -910,14 +910,14 @@ checkTemplate(api.Template o) { |
buildCounterTemplate--; |
} |
-buildUnnamed426() { |
+buildUnnamed428() { |
var o = new core.List<api.Template>(); |
o.add(buildTemplate()); |
o.add(buildTemplate()); |
return o; |
} |
-checkUnnamed426(core.List<api.Template> o) { |
+checkUnnamed428(core.List<api.Template> o) { |
unittest.expect(o, unittest.hasLength(2)); |
checkTemplate(o[0]); |
checkTemplate(o[1]); |
@@ -928,7 +928,7 @@ buildTemplateList() { |
var o = new api.TemplateList(); |
buildCounterTemplateList++; |
if (buildCounterTemplateList < 3) { |
- o.items = buildUnnamed426(); |
+ o.items = buildUnnamed428(); |
o.kind = "foo"; |
o.nextPageToken = "foo"; |
o.totalItems = 42; |
@@ -940,7 +940,7 @@ buildTemplateList() { |
checkTemplateList(api.TemplateList o) { |
buildCounterTemplateList++; |
if (buildCounterTemplateList < 3) { |
- checkUnnamed426(o.items); |
+ checkUnnamed428(o.items); |
unittest.expect(o.kind, unittest.equals('foo')); |
unittest.expect(o.nextPageToken, unittest.equals('foo')); |
unittest.expect(o.totalItems, unittest.equals(42)); |