main.wisp.deployment.FakeDeploymentLocation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisp-deployment-testing Show documentation
Show all versions of wisp-deployment-testing Show documentation
a module containing deployment testing helpers, e.g. fakes
The newest version!
package wisp.deployment
class FakeDeploymentLocation @JvmOverloads constructor(private val deploymentLocation: String = "FakeDeploymentLocation") :
DeploymentLocation {
/**
* Deployment identification, e.g. Kubernetes pod name or host name, etc.
*/
override val id: String
get() = deploymentLocation
}