mattinger
10/28/2025, 8:20 PM@BindValue val myLogger = mock<MyLogger>()
and then extend that base class and let the child classes be able to set mock expectations on that.
Is there a restriction on only being able to use @BindValue in a concrete class? (for the record, @Inject) works fine, and for now i've created a module with the mocks and injected those into my testmattinger
10/31/2025, 3:29 PM