Skip to content

Instantly share code, notes, and snippets.

@IvanShafran
Last active August 22, 2019 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IvanShafran/04ea80e8c7cf6ac6d311760ca3918631 to your computer and use it in GitHub Desktop.
Save IvanShafran/04ea80e8c7cf6ac6d311760ca3918631 to your computer and use it in GitHub Desktop.
public class BuyPreferencesMock implements BuyPreferences {
private int count;
@Override public void incrementBuyCount() {
++count;
}
@Override public int getBuyCount() {
return count;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment