All Downloads are FREE. Search and download functionalities are using the official Maven repository.

run.qontract.core.Constants.kt Maven / Gradle / Ivy

Go to download

A Contract Testing Tool that leverages Gherkin to describe APIs in a human readable and machine enforceable manner

There is a newer version: 0.23.1
Show newest version
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"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy