final case class RunningServer(app: Application, endpoints: ServerEndpoints, stopServer: AutoCloseable) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- RunningServer
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new RunningServer(app: Application, endpoints: ServerEndpoints, stopServer: AutoCloseable)
Value Members
- val app: Application
- val endpoints: ServerEndpoints
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val stopServer: AutoCloseable
Contains information about a running TestServer. This object can be used by tests to find out about the running server, e.g. port information.
We use a separate class to avoid including mutable state, such as methods for closing the server.