Package-level declarations
Types
Link copied to clipboard
Defines the building step for associating an inbound request specification with its corresponding response definition. This class is part of a fluent API used to define mappings between request specifications and their respective responses.
Link copied to clipboard
Link copied to clipboard
open class MokksyServer(port: Int = 0, host: String = DEFAULT_HOST, configuration: ServerConfiguration, wait: Boolean = false, configurer: (<Error class: unknown class>) -> Unit = {})
Represents an embedded mock server capable of handling various HTTP requests and responses for testing purposes. Provides functionality to configure request specifications for different HTTP methods and manage request matching.
Link copied to clipboard
data class ServerConfiguration(val verbose: Boolean = false, val contentNegotiationConfigurer: (<Error class: unknown class>) -> Unit = ::configureContentNegotiation)
Link copied to clipboard
data class StubConfiguration(val name: String? = null, val removeAfterMatch: Boolean = false, val verbose: Boolean = false)