All Questions
1 question
1
vote
2
answers
249
views
Unit testing similar wrappers - or single unit test is enough?
I'm working on a service which has a lots of dependencies. The way how I call them is I'm wrapping each service client around an Adapter. Like this (I'm using Java):
public abstract class AdapterBase&...