X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Ftest%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fnotify%2FListNotificationTest.kt;h=0c815160d46f3d3bb8fc3c2355c943aeb9468052;hb=f22c29a66b399d50e0575f7a0ba71e6375caebf3;hp=08d4829a9d4fc8f5be959ca7a934d0ea97167365;hpb=e399e8596825ef7480f9803166f0b41b0cad3391;p=Sone.git diff --git a/src/test/kotlin/net/pterodactylus/sone/notify/ListNotificationTest.kt b/src/test/kotlin/net/pterodactylus/sone/notify/ListNotificationTest.kt index 08d4829..0c81516 100644 --- a/src/test/kotlin/net/pterodactylus/sone/notify/ListNotificationTest.kt +++ b/src/test/kotlin/net/pterodactylus/sone/notify/ListNotificationTest.kt @@ -37,6 +37,12 @@ class ListNotificationTest { } @Test + fun `list notification deduplicates set elements`() { + listNotification.setElements(listOf("a", "b", "a")) + assertThat(listNotification.elements, contains("a", "b")) + } + + @Test fun `list notification retains added elements`() { listNotification.add("a") listNotification.add("b") @@ -45,6 +51,14 @@ class ListNotificationTest { } @Test + fun `list notification deduplicates elements`() { + listNotification.add("a") + listNotification.add("b") + listNotification.add("a") + assertThat(listNotification.elements, contains("a", "b")) + } + + @Test fun `list notification removes correct element`() { listNotification.setElements(listOf("a", "b", "c")) listNotification.remove("b")