Posts by Adelino • 41 points
1 post
-
4
votes1
answer1107
viewsQ: Unit test of implementations of a Generic class
Suppose we have the following interface: public interface ICRUDService<T> { T Create(T entity); } Abstract implementation: public abstract class CrudService<T> : ICRUDService<T> {…