All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mlk.junit.rules.Helper Maven / Gradle / Ivy

There is a newer version: 1.5.39
Show newest version
package com.github.mlk.junit.rules;

import java.io.IOException;
import java.net.ServerSocket;

public class Helper {

  private Helper() {
  }

  public static int findRandomOpenPortOnAllLocalInterfaces() throws IOException {
    try (ServerSocket socket = new ServerSocket(0)) {
      return socket.getLocalPort();
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy