run.qontract.core.Constants.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qontract-core Show documentation
Show all versions of qontract-core Show documentation
A Contract Testing Tool that leverages Gherkin to describe APIs in a human readable and machine enforceable manner
package run.qontract.core
class Constants {
companion object {
const val DEFAULT_QONTRACT_CONFIG_FILE_NAME = "qontract.json"
const val DEFAULT_QONTRACT_CONFIG_IN_CURRENT_DIRECTORY = "./$DEFAULT_QONTRACT_CONFIG_FILE_NAME"
private const val ALL_IPV4_ADDRESS_ON_LOCAL_MACHINE = "0.0.0.0"
const val DEFAULT_HTTP_STUB_HOST = ALL_IPV4_ADDRESS_ON_LOCAL_MACHINE
const val DEFAULT_HTTP_STUB_PORT = "9000"
}
}