Suppress Konsist Test
fun `every api declaration has KDoc`() {
// ...
}package com.myapp.api
/**
* Represents a simple `Book` entity.
*/
interface Book {
/**
* The title of the book.
*/
val title: String
@Suppress("konsist.every api declaration has KDoc")
val author: String
}Suppressing Kotest Test
Last updated