verify

fun verify(module: Module, extraTypes: List<KClass<*>> = emptyList(), injections: List<ParameterTypeInjection>? = null): Verification

Make a static verification about all declared classes constructors, to ensure they are all bound to an existing definition Throws MissingDefinitionException if any definition is missing

Parameters

module

the moduel to verify

extraTypes

allow to declare extra type, to be bound above the existing definitions

Throws