Skip to content

Instantly share code, notes, and snippets.

@ralphpina
Last active February 16, 2017 19:59
Show Gist options
  • Save ralphpina/fd513e575b912a28a603e0e5a93efbe1 to your computer and use it in GitHub Desktop.
Save ralphpina/fd513e575b912a28a603e0e5a93efbe1 to your computer and use it in GitHub Desktop.
base test class
public class BaseTest {
public List<Giphy> getGiphies(int count) {
List<Giphy> list = new ArrayList<>();
for (int i = count; i > 0; i--) {
list.add(new Giphy.Builder().url("some_url_" + i).build());
}
return list;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment