Skip to content

Instantly share code, notes, and snippets.

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