Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 508dd30

Browse files
committed
Plainに改名
1 parent 632b6da commit 508dd30

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/test/kotlin/com/mapk/kmapper/ConverterKMapperTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private data class BoundStaticMethodConverterSrc(val argument: String)
3333
class ConverterKMapperTest {
3434
@Nested
3535
@DisplayName("PlainKMapper")
36-
inner class KMapperTest {
36+
inner class PlainKMapperTest {
3737
@Test
3838
@DisplayName("コンストラクターでのコンバートテスト")
3939
fun constructorConverterTest() {

src/test/kotlin/com/mapk/kmapper/DefaultArgumentTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DefaultArgumentTest {
1515

1616
@Nested
1717
@DisplayName("PlainKMapper")
18-
inner class KMapperTest {
18+
inner class PlainKMapperTest {
1919
@Test
2020
fun test() {
2121
val result = PlainKMapper(::Dst).map(src)

src/test/kotlin/com/mapk/kmapper/EnumMappingTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private class EnumMappingDst(val language: JvmLanguage?)
1818
class EnumMappingTest {
1919
@Nested
2020
@DisplayName("PlainKMapper")
21-
inner class KMapperTest {
21+
inner class PlainKMapperTest {
2222
private val mapper = PlainKMapper(EnumMappingDst::class)
2323

2424
@ParameterizedTest(name = "Non-Null要求")

src/test/kotlin/com/mapk/kmapper/KGetterIgnoreTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class KGetterIgnoreTest {
1515

1616
@Nested
1717
@DisplayName("PlainKMapper")
18-
inner class KMapperTest {
18+
inner class PlainKMapperTest {
1919
@Test
2020
@DisplayName("フィールドを無視するテスト")
2121
fun test() {

src/test/kotlin/com/mapk/kmapper/ParameterNameConverterTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ private data class BoundSrc(val camel_case: String)
1313
class ParameterNameConverterTest {
1414
@Nested
1515
@DisplayName("PlainKMapper")
16-
inner class KMapperTest {
16+
inner class PlainKMapperTest {
1717
@Test
1818
@DisplayName("スネークケースsrc -> キャメルケースdst")
1919
fun test() {

src/test/kotlin/com/mapk/kmapper/PropertyAliasTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private data class AliasedSrc(
2222
class PropertyAliasTest {
2323
@Nested
2424
@DisplayName("PlainKMapper")
25-
inner class KMapperTest {
25+
inner class PlainKMapperTest {
2626
@Test
2727
@DisplayName("パラメータにエイリアスを貼った場合")
2828
fun paramAliasTest() {

src/test/kotlin/com/mapk/kmapper/SimpleKMapperTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class SimpleKMapperTest {
7575

7676
@Nested
7777
@DisplayName("PlainKMapper")
78-
inner class KMapperTest {
78+
inner class PlainKMapperTest {
7979
private val mappers: Set<PlainKMapper<out SimpleDst>> = setOf(
8080
PlainKMapper(SimpleDst::class),
8181
PlainKMapper(::SimpleDst),

src/test/kotlin/com/mapk/kmapper/StringMappingTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ private data class BoundMappingSrc(val value: Int)
1212
class StringMappingTest {
1313
@Nested
1414
@DisplayName("PlainKMapper")
15-
inner class KMapperTest {
15+
inner class PlainKMapperTest {
1616
@Test
1717
fun test() {
1818
val result: StringMappingDst = PlainKMapper(StringMappingDst::class).map("value" to 1)

0 commit comments

Comments
 (0)