X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Ftest%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReplyTest.kt;h=38b10770cef5398096a6906d69d94527297bd4c1;hp=d7f7138fb0d1aa455b4ba0641c993489c4183312;hb=5076d8379e6413189273defd4f01f241b4a6a57e;hpb=7d0f3c2559da8161f79b06280ed91ceda226ee16 diff --git a/src/test/kotlin/net/pterodactylus/sone/data/ReplyTest.kt b/src/test/kotlin/net/pterodactylus/sone/data/ReplyTest.kt index d7f7138..38b1077 100644 --- a/src/test/kotlin/net/pterodactylus/sone/data/ReplyTest.kt +++ b/src/test/kotlin/net/pterodactylus/sone/data/ReplyTest.kt @@ -17,7 +17,7 @@ package net.pterodactylus.sone.data -import net.pterodactylus.sone.test.emptyPostReply +import net.pterodactylus.sone.test.createPostReply import org.hamcrest.MatcherAssert.assertThat import org.hamcrest.Matchers.equalTo import org.hamcrest.Matchers.greaterThan @@ -29,34 +29,34 @@ class ReplyTest { @Test fun `newestReplyFirst comparator returns less-than 0 is first reply is newer than second`() { - val newerReply = emptyPostReply(time = 2000) - val olderReply = emptyPostReply(time = 1000) + val newerReply = createPostReply(time = 2000) + val olderReply = createPostReply(time = 1000) assertThat(newestReplyFirst.compare(newerReply, olderReply), lessThan(0)) } @Test fun `newestReplyFirst comparator returns greater-than 0 is first reply is older than second`() { - val newerReply = emptyPostReply(time = 2000) - val olderReply = emptyPostReply(time = 1000) + val newerReply = createPostReply(time = 2000) + val olderReply = createPostReply(time = 1000) assertThat(newestReplyFirst.compare(olderReply, newerReply), greaterThan(0)) } @Test fun `newestReplyFirst comparator returns 0 is first and second reply have same age`() { - val reply1 = emptyPostReply(time = 1000) - val reply2 = emptyPostReply(time = 1000) + val reply1 = createPostReply(time = 1000) + val reply2 = createPostReply(time = 1000) assertThat(newestReplyFirst.compare(reply1, reply2), equalTo(0)) } @Test fun `noFutureReply filter recognizes reply from the future`() { - val futureReply = emptyPostReply(time = System.currentTimeMillis() + DAYS.toMillis(1)) + val futureReply = createPostReply(time = System.currentTimeMillis() + DAYS.toMillis(1)) assertThat(noFutureReply(futureReply), equalTo(false)) } @Test fun `noFutureReply filter recognizes reply from the present`() { - val futureReply = emptyPostReply(time = System.currentTimeMillis()) + val futureReply = createPostReply(time = System.currentTimeMillis()) assertThat(noFutureReply(futureReply), equalTo(true)) }