-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for play queue items' equals()
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
app/src/test/java/org/schabi/newpipe/player/playqueue/PlayQueueItemTest.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.schabi.newpipe.player.playqueue; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotEquals; | ||
|
||
public class PlayQueueItemTest { | ||
|
||
public static final String URL = "MY_URL"; | ||
|
||
@Test | ||
public void equalsMustNotBeOverloaded() { | ||
final PlayQueueItem a = PlayQueueTest.makeItemWithUrl(URL); | ||
final PlayQueueItem b = PlayQueueTest.makeItemWithUrl(URL); | ||
assertEquals(a, a); | ||
assertNotEquals(a, b); // they should compare different even if they have the same data | ||
} | ||
} |
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