Created
July 14, 2022 22:24
-
-
Save beyondxscratch/543b6e00ccbc8ac0c96f90e126ffc19b to your computer and use it in GitHub Desktop.
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