Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
class BookmarkTest implements EqualityTest<Bookmark> {
@Override
public Bookmark createValue() {
return Bookmark.create("http://www.test.com", "name");
}
@Override
public Bookmark createOtherValue() {
return Bookmark.create("http://www.test2.com", "other name");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment