• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

temporalio / sdk-java / #351

04 Aug 2026 11:58PM UTC coverage: 67.781% (-0.5%) from 68.245%
#351

push

github

web-flow
Add dev server downloader & runner to testing package (#2982)

7311 of 12876 branches covered (56.78%)

Branch coverage included in aggregate %.

331 of 703 new or added lines in 12 files covered. (47.08%)

28 existing lines in 13 files now uncovered.

30207 of 42476 relevant lines covered (71.12%)

0.71 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/temporal-testing/src/main/java/io/temporal/testing/internal/DevServerTestProcess.java
1
package io.temporal.testing.internal;
2

3
import io.temporal.testing.internal.devserver.SdkJavaTestServerProfile;
4
import javax.annotation.Nonnull;
5

6
/** Process entry point that owns sdk-java's repository dev server for a Gradle invocation. */
7
public final class DevServerTestProcess {
8
  private DevServerTestProcess() {}
9

10
  public static void main(@Nonnull String[] args) throws Exception {
11
    try {
NEW
12
      SdkJavaTestServerProfile.start();
×
NEW
13
      System.out.println("READY");
×
NEW
14
      System.out.flush();
×
NEW
15
      while (System.in.read() != -1) {
×
16
        // The Gradle shared service keeps stdin open for the lifetime of the build.
17
      }
18
    } finally {
NEW
19
      SdkJavaTestServerProfile.shutdown();
×
20
    }
NEW
21
  }
×
22
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc