grpc-gcp-benchmarks/src/main/java/com/google/grpc/gcp/SpannerClientTestCases.java [130:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testRead() throws InterruptedException {
    Spanner spanner = spannerOptions.getService();
    DatabaseClient db = getDbClient(spanner);
    System.out.println("\nTestRead");
    try {
      // Warm ups.
      readOneThread(db, 1, null);
      Func func = (int thread, List<Long> result) -> readOneThread(db, thread, result);
      runTest(func);
    } finally {
      spanner.close();
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



grpc-gcp-benchmarks/src/main/SpannerClientTestCases.java [127:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testRead() throws InterruptedException {
    Spanner spanner = spannerOptions.getService();
    DatabaseClient db = getDbClient(spanner);
    System.out.println("\nTestRead");
    try {
      // Warm ups.
      readOneThread(db, 1, null);
      Func func = (int thread, List<Long> result) -> readOneThread(db, thread, result);
      runTest(func);
    } finally {
      spanner.close();
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



grpc-gcp-benchmarks/src/benchmarkTest/java/SpannerClientTestCases.java [150:162]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testRead() throws InterruptedException {
    Spanner spanner = spannerOptions.getService();
    DatabaseClient db = getDbClient(spanner);
    System.out.println("\nTestRead");
    try {
      // Warm ups.
      readOneThread(db, 1, null);
      Func func = (int thread, List<Long> result) -> readOneThread(db, thread, result);
      runTest(func);
    } finally {
      spanner.close();
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



