I am using @Inject
annotation for injecting interface(IFMJobHandler
is an interface) in my class like this
@Inject
@Reference
IFMJobHandler jobHandler;
While running application with JUnit test, jobHandler
property returning null
value because of spring annotations for that interface.
Kindly let me know to solve this issue