MultiMock

@Target(allowedTargets = [AnnotationTarget.CLASS])
annotation class MultiMock(val name: String, val interfaces: KClass<*>)

Determines which interfaces should be stubbed/mocked as a union of them.

Author

Matthias Geisler

Parameters

name

name which used for the mock.

interfaces

variable amount of interfaces.

Properties

Link copied to clipboard
val interfaces: Array<out KClass<*>>
Link copied to clipboard
val name: String