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

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

Issue 2039113004: Api-roll 37: 2016-06-06 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 6 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
Index: generated/googleapis/test/cloudtrace/v1_test.dart
diff --git a/generated/googleapis/test/cloudtrace/v1_test.dart b/generated/googleapis/test/cloudtrace/v1_test.dart
index 8bdd26e5b118ac54dba38ff9716d417877e70236..4482a81eb3940fe52de1150bcdce90ec8bf6073d 100644
--- a/generated/googleapis/test/cloudtrace/v1_test.dart
+++ b/generated/googleapis/test/cloudtrace/v1_test.dart
@@ -68,14 +68,14 @@ checkEmpty(api.Empty o) {
buildCounterEmpty--;
}
-buildUnnamed667() {
+buildUnnamed124() {
var o = new core.List<api.Trace>();
o.add(buildTrace());
o.add(buildTrace());
return o;
}
-checkUnnamed667(core.List<api.Trace> o) {
+checkUnnamed124(core.List<api.Trace> o) {
unittest.expect(o, unittest.hasLength(2));
checkTrace(o[0]);
checkTrace(o[1]);
@@ -87,7 +87,7 @@ buildListTracesResponse() {
buildCounterListTracesResponse++;
if (buildCounterListTracesResponse < 3) {
o.nextPageToken = "foo";
- o.traces = buildUnnamed667();
+ o.traces = buildUnnamed124();
}
buildCounterListTracesResponse--;
return o;
@@ -97,19 +97,19 @@ checkListTracesResponse(api.ListTracesResponse o) {
buildCounterListTracesResponse++;
if (buildCounterListTracesResponse < 3) {
unittest.expect(o.nextPageToken, unittest.equals('foo'));
- checkUnnamed667(o.traces);
+ checkUnnamed124(o.traces);
}
buildCounterListTracesResponse--;
}
-buildUnnamed668() {
+buildUnnamed125() {
var o = new core.List<api.TraceSpan>();
o.add(buildTraceSpan());
o.add(buildTraceSpan());
return o;
}
-checkUnnamed668(core.List<api.TraceSpan> o) {
+checkUnnamed125(core.List<api.TraceSpan> o) {
unittest.expect(o, unittest.hasLength(2));
checkTraceSpan(o[0]);
checkTraceSpan(o[1]);
@@ -121,7 +121,7 @@ buildTrace() {
buildCounterTrace++;
if (buildCounterTrace < 3) {
o.projectId = "foo";
- o.spans = buildUnnamed668();
+ o.spans = buildUnnamed125();
o.traceId = "foo";
}
buildCounterTrace--;
@@ -132,20 +132,20 @@ checkTrace(api.Trace o) {
buildCounterTrace++;
if (buildCounterTrace < 3) {
unittest.expect(o.projectId, unittest.equals('foo'));
- checkUnnamed668(o.spans);
+ checkUnnamed125(o.spans);
unittest.expect(o.traceId, unittest.equals('foo'));
}
buildCounterTrace--;
}
-buildUnnamed669() {
+buildUnnamed126() {
var o = new core.Map<core.String, core.String>();
o["x"] = "foo";
o["y"] = "foo";
return o;
}
-checkUnnamed669(core.Map<core.String, core.String> o) {
+checkUnnamed126(core.Map<core.String, core.String> o) {
unittest.expect(o, unittest.hasLength(2));
unittest.expect(o["x"], unittest.equals('foo'));
unittest.expect(o["y"], unittest.equals('foo'));
@@ -158,7 +158,7 @@ buildTraceSpan() {
if (buildCounterTraceSpan < 3) {
o.endTime = "foo";
o.kind = "foo";
- o.labels = buildUnnamed669();
+ o.labels = buildUnnamed126();
o.name = "foo";
o.parentSpanId = "foo";
o.spanId = "foo";
@@ -173,7 +173,7 @@ checkTraceSpan(api.TraceSpan o) {
if (buildCounterTraceSpan < 3) {
unittest.expect(o.endTime, unittest.equals('foo'));
unittest.expect(o.kind, unittest.equals('foo'));
- checkUnnamed669(o.labels);
+ checkUnnamed126(o.labels);
unittest.expect(o.name, unittest.equals('foo'));
unittest.expect(o.parentSpanId, unittest.equals('foo'));
unittest.expect(o.spanId, unittest.equals('foo'));
@@ -182,14 +182,14 @@ checkTraceSpan(api.TraceSpan o) {
buildCounterTraceSpan--;
}
-buildUnnamed670() {
+buildUnnamed127() {
var o = new core.List<api.Trace>();
o.add(buildTrace());
o.add(buildTrace());
return o;
}
-checkUnnamed670(core.List<api.Trace> o) {
+checkUnnamed127(core.List<api.Trace> o) {
unittest.expect(o, unittest.hasLength(2));
checkTrace(o[0]);
checkTrace(o[1]);
@@ -200,7 +200,7 @@ buildTraces() {
var o = new api.Traces();
buildCounterTraces++;
if (buildCounterTraces < 3) {
- o.traces = buildUnnamed670();
+ o.traces = buildUnnamed127();
}
buildCounterTraces--;
return o;
@@ -209,7 +209,7 @@ buildTraces() {
checkTraces(api.Traces o) {
buildCounterTraces++;
if (buildCounterTraces < 3) {
- checkUnnamed670(o.traces);
+ checkUnnamed127(o.traces);
}
buildCounterTraces--;
}
« no previous file with comments | « generated/googleapis/test/cloudresourcemanager/v1_test.dart ('k') | generated/googleapis/test/compute/v1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698