de.codecentric.hikaku.converters.AbstractEndpointConverter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hikaku-core Show documentation
Show all versions of hikaku-core Show documentation
A library that tests if the implementation of a REST-API meets its specification. This module contains the core elements which can be used to create additional converters and reporters.
package de.codecentric.hikaku.converters
import de.codecentric.hikaku.endpoints.Endpoint
/**
* Abstract [EndpointConverter] which triggers conversion when accessing the [conversionResult]s.
*/
abstract class AbstractEndpointConverter : EndpointConverter {
override val conversionResult: Set by lazy {
this.convert()
}
abstract fun convert(): Set
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy