codacy.test.docker.PortHelper.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codacy-test-bench_2.13 Show documentation
Show all versions of codacy-test-bench_2.13 Show documentation
A library to send events on rabbit-mq
The newest version!
package codacy.test.docker
import scala.util.Random
trait PortHelper {
protected def genPort(): Int = {
val base = 30000
val top = 65000
val rnd = Random.nextInt(top - base)
rnd + base
}
}