You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CDI-Unit
Hi All, Good Evening !
I have multi module maven project where data-module,service-module and ui-module are present.I have written test for data module which is working fine but I am facing problem while testing service layer because in order to test service layer I have to make UserDaoImpl public which I don't want to do.So is there better way we can do with CDI-Unit.
abc-data-module public interface UserDao{ public void addUser(User user); } @Named UserDaoImpl implements UserDao{}
abc-service-module public interface UserService{ }