↧
Is it possible to do black box tests when I inject dependencies in the class?
This is my case.I have a class in which I inject a service as dependency, an IService.I want to test one method of this class. This method use one of the methods of the service.Now I want to test this...
View Article