Search Results

1
vote

How are you able to Unit Test your controllers without an IoC container?

Isn't it possible to keep the direct instantiation of the field and also provide the setter? In this case you'd only be calling the setter during unit testing. Something like this: …
7
votes

How to mock a String using mockito?

The problem is the String class in Java is marked as final, so you cannot mock is using traditional mocking frameworks. According to the …