Skip to content

Instantly share code, notes, and snippets.

@drewcsillag
Last active December 6, 2016 19:02
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 drewcsillag/bd87b3b1062847ba47933a4a7bd37e93 to your computer and use it in GitHub Desktop.
Save drewcsillag/bd87b3b1062847ba47933a4a7bd37e93 to your computer and use it in GitHub Desktop.
Example of trial framework control and experiment
final Callable<Observable<Boolean>> control =
() -> oldPasswordCeckingApi.matches(username, password);
final Callable<Observable<Boolean>> experiment =
() -> authService.doPasswordCheck(username, password);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment