File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
sdk/scala-sdk-protobuf-testkit/src/main/scala/kalix/scalasdk/testkit Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,23 @@ class KalixTestKit private (delegate: JTestKit) {
142142 def getGrpcClientForPrincipal [T ](clientClass : Class [T ], principal : Principal ): T =
143143 delegate.getGrpcClientForPrincipal(clientClass, Principal .toJava(principal))
144144
145+ /**
146+ * Get the host name/IP address where the Kalix service is available. This is relevant in certain Continuous
147+ * Integration environments.
148+ *
149+ * @return
150+ * Kalix host
151+ */
152+ def getHost : String = delegate.getHost
153+
154+ /**
155+ * Get the local port where the Kalix service is available.
156+ *
157+ * @return
158+ * local Kalix port
159+ */
160+ def getPort : Int = delegate.getPort
161+
145162 /**
146163 * Get incoming messages for ValueEntity.
147164 *
You can’t perform that action at this time.
0 commit comments