kotovalexarian
/
android
Archived
1
0
Fork 0
This repository has been archived on 2023-08-15. You can view files and clone it, but cannot push or open issues or pull requests.
android/app/src/test/java/com/causa_arcana/ExampleUnitTest.kt

23 lines
579 B
Kotlin

package com.causa_arcana
import org.junit.Test
import org.junit.Assert.*
class ExampleUnitTest {
@Test
fun articleIdFromString() {
val articleId = ArticleId.fromString("2021-01-01-hello-world")
assertEquals(2021u, articleId.year)
assertEquals(1u, articleId.month)
assertEquals(1u, articleId.day)
assertEquals("hello-world", articleId.slug)
}
@Test
fun articleIdToString() {
val articleId = ArticleId(2021u, 1u, 1u, "hello-world")
assertEquals("2021-01-01-hello-world", articleId.toString())
}
}