|
|
fun KCallable<*>.shouldAcceptParameters(parameters: List<KClass<*>>, block: (List<KParameter>) -> Unit): Unit
infix fun KCallable<*>.shouldAcceptParameters(parameters: List<KClass<*>>): Unit |
|
|
fun KCallable<*>.shouldBeAbstract(): Unit |
|
|
fun KCallable<*>.shouldBeFinal(): Unit |
|
|
fun KCallable<*>.shouldBeOpen(): Unit |
|
|
fun KCallable<*>.shouldBeSuspendable(): Unit |
|
|
fun KCallable<*>.shouldHaveParametersWithName(parameters: List<String>, block: (List<KParameter>) -> Unit): Unit
infix fun KCallable<*>.shouldHaveParametersWithName(parameters: List<String>): Unit |
|
|
infix fun KCallable<*>.shouldHaveVisibility(visibility: KVisibility): Unit |
|
|
infix fun KCallable<*>.shouldNotAcceptParameters(parameters: List<KClass<*>>): Unit |
|
|
fun KCallable<*>.shouldNotBeAbstract(): Unit |
|
|
fun KCallable<*>.shouldNotBeFinal(): Unit |
|
|
fun KCallable<*>.shouldNotBeOpen(): Unit |
|
|
fun KCallable<*>.shouldNotBeSuspendable(): Unit |
|
|
infix fun KCallable<*>.shouldNotHaveParametersWithName(parameters: List<String>): Unit |
|
|
infix fun KCallable<*>.shouldNotHaveVisibility(visibility: KVisibility): Unit |