Skip to content

Commit 118bc02

Browse files
committed
test: insert static constructor logging for StructuredEntries verification locally
1 parent ad57b27 commit 118bc02

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

  • clients/google-api-services-compute
    • alpha/2.0.0/com/google/api/services/compute
    • beta/2.0.0/com/google/api/services/compute
    • v1/2.0.0/com/google/api/services/compute

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/Main.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
public class Main {
99
public static void main(String[] args) throws Exception {
1010
System.out.println("Initializing Alpha GoogleCredential natively...");
11+
com.google.api.services.compute.model.StructuredEntries debugSe = new com.google.api.services.compute.model.StructuredEntries();
12+
System.out.println("StructuredEntries instantiated independently: " + debugSe);
1113
GoogleCredential credential = GoogleCredential.getApplicationDefault();
1214

1315
Compute computeService = new Compute.Builder(

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/Main.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
public class Main {
99
public static void main(String[] args) throws Exception {
1010
System.out.println("Initializing Beta GoogleCredential natively...");
11+
com.google.api.services.compute.model.StructuredEntries debugSe = new com.google.api.services.compute.model.StructuredEntries();
12+
System.out.println("StructuredEntries instantiated independently: " + debugSe);
1113
GoogleCredential credential = GoogleCredential.getApplicationDefault();
1214

1315
Compute computeService = new Compute.Builder(

clients/google-api-services-compute/v1/2.0.0/com/google/api/services/compute/Main.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
public class Main {
99
public static void main(String[] args) throws Exception {
1010
System.out.println("Initializing GoogleCredential via google-api-client natively...");
11+
com.google.api.services.compute.model.StructuredEntries debugSe = new com.google.api.services.compute.model.StructuredEntries();
12+
System.out.println("StructuredEntries instantiated independently: " + debugSe);
1113
GoogleCredential credential = GoogleCredential.getApplicationDefault();
1214

1315
Compute computeService = new Compute.Builder(

0 commit comments

Comments
 (0)