This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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