Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/ConverterKMapperTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ private data class BoundStaticMethodConverterSrc(val argument: String)
class ConverterKMapperTest {
@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
@Test
@DisplayName("コンストラクターでのコンバートテスト")
fun constructorConverterTest() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/DefaultArgumentTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class DefaultArgumentTest {

@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
@Test
fun test() {
val result = PlainKMapper(::Dst).map(src)
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/EnumMappingTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private class EnumMappingDst(val language: JvmLanguage?)
class EnumMappingTest {
@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
private val mapper = PlainKMapper(EnumMappingDst::class)

@ParameterizedTest(name = "Non-Null要求")
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/KGetterIgnoreTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class KGetterIgnoreTest {

@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
@Test
@DisplayName("フィールドを無視するテスト")
fun test() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ private data class BoundSrc(val camel_case: String)
class ParameterNameConverterTest {
@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
@Test
@DisplayName("スネークケースsrc -> キャメルケースdst")
fun test() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/PropertyAliasTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private data class AliasedSrc(
class PropertyAliasTest {
@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
@Test
@DisplayName("パラメータにエイリアスを貼った場合")
fun paramAliasTest() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/SimpleKMapperTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class SimpleKMapperTest {

@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
private val mappers: Set<PlainKMapper<out SimpleDst>> = setOf(
PlainKMapper(SimpleDst::class),
PlainKMapper(::SimpleDst),
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/mapk/kmapper/StringMappingTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ private data class BoundMappingSrc(val value: Int)
class StringMappingTest {
@Nested
@DisplayName("PlainKMapper")
inner class KMapperTest {
inner class PlainKMapperTest {
@Test
fun test() {
val result: StringMappingDst = PlainKMapper(StringMappingDst::class).map("value" to 1)
Expand Down