paymill / paymill-java

Java wrapper for Paymill API
http://paymill.github.io
MIT License
26 stars 22 forks source link

removed final keywoards from PaymillContext and ClientService #57

Closed dobermai closed 10 years ago

dobermai commented 10 years ago

In order to properly mock these classes they must not be final since popular mocking frameworks like Mockito don't allow mocking of final classes.

Also, ClientService is the only service which is final so this PR removes this inconsistency.

stoilkov commented 10 years ago

thanks @dobermai , this was merged with #60