|
|
fun <T : Annotation> KFunction<*>.shouldBeAnnotatedWith(block: (T) -> Unit = {}): Unit |
|
|
fun KFunction<*>.shouldBeInfix(): Unit |
|
|
fun KFunction<*>.shouldBeInline(): Unit |
|
|
fun KFunction<*>.shouldHaveAnnotations(): Unit
infix fun KFunction<*>.shouldHaveAnnotations(count: Int): Unit |
|
|
fun <T> KFunction<*>.shouldHaveReturnType(): Unit |
|
|
fun <T : Annotation> KFunction<*>.shouldNotBeAnnotatedWith(): Unit |
|
|
fun KFunction<*>.shouldNotBeInfix(): Unit |
|
|
fun KFunction<*>.shouldNotBeInline(): Unit |
|
|
fun KFunction<*>.shouldNotHaveAnnotations(): Unit
infix fun KFunction<*>.shouldNotHaveAnnotations(count: Int): Unit |
|
|
fun <T> KFunction<*>.shouldNotHaveReturnType(): Unit |