application.CompatibleReport.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specmatic-executable Show documentation
Show all versions of specmatic-executable Show documentation
Command-line standalone executable jar for Specmatic
package application
class CompatibleReport(private val msg: String = "The newer contract is backward compatible."): CompatibilityReport {
override fun message(): String {
return msg
}
override val exitCode: Int = 0
}