test #426

Merged
klaus merged 415 commits from test into main 2026-06-27 00:35:30 +00:00
2 changed files with 23 additions and 0 deletions
Showing only changes of commit 7e6ac283cb - Show all commits

View File

@@ -0,0 +1,9 @@
package kr.co.vividnext.sodalive.v2.common.domain
enum class ContentSort {
LATEST,
POPULAR,
OWNED,
PRICE_HIGH,
PRICE_LOW
}

View File

@@ -0,0 +1,14 @@
package kr.co.vividnext.sodalive.v2.common.domain
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
class ContentSortTest {
@Test
fun shouldDefineCommonContentSortValues() {
assertEquals(
listOf("LATEST", "POPULAR", "OWNED", "PRICE_HIGH", "PRICE_LOW"),
ContentSort.values().map { it.name }
)
}
}