Configure Qualifier annotations for @MockkBean
masterWhen using custom qualifier annotations with @MockkBean, ensure the annotation targets fields rather than properties. If your annotation targets properties, use the @field: site-target prefix to ensure it is applied correctly to the bean:
@MockkBean
@field:YourQualifier
private lateinit var myService: MyService