Skip to content

Instantly share code, notes, and snippets.

@bisignam
Last active April 24, 2017 18:42
Show Gist options
  • Save bisignam/efafeb16d324cab985e65c4fb0677ad3 to your computer and use it in GitHub Desktop.
Save bisignam/efafeb16d324cab985e65c4fb0677ad3 to your computer and use it in GitHub Desktop.
An example of untestable service
@Service
public class UntestableService {
private AnotherService myDependency;
UntestableService(){
this.myDependency = SpringFactory.createMyDependency();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment