Skip to content

Commit 8fb412e

Browse files
committed
Merge branch '6.0.x'
2 parents bf99361 + b3de1b8 commit 8fb412e

File tree

27 files changed

+81
-60
lines changed

27 files changed

+81
-60
lines changed

Diff for: spring-beans/src/test/kotlin/org/springframework/beans/KotlinBeanUtilsTests.kt renamed to spring-beans/src/test/kotlin/org/springframework/beans/BeanUtilsKotlinTests.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,12 +20,12 @@ import org.assertj.core.api.Assertions.assertThat
2020
import org.junit.jupiter.api.Test
2121

2222
/**
23-
* Kotlin tests for {@link BeanUtils}.
23+
* Kotlin tests for [BeanUtils].
2424
*
2525
* @author Sebastien Deleuze
2626
*/
2727
@Suppress("unused", "UNUSED_PARAMETER")
28-
class KotlinBeanUtilsTests {
28+
class BeanUtilsKotlinTests {
2929

3030
@Test
3131
fun `Instantiate immutable class`() {

Diff for: spring-beans/src/test/kotlin/org/springframework/beans/factory/annotation/KotlinAutowiredTests.kt renamed to spring-beans/src/test/kotlin/org/springframework/beans/factory/annotation/AutowiredKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -31,7 +31,7 @@ import org.springframework.beans.testfixture.beans.TestBean
3131
* @author Juergen Hoeller
3232
* @author Sebastien Deleuze
3333
*/
34-
class KotlinAutowiredTests {
34+
class AutowiredKotlinTests {
3535

3636
@Test
3737
fun `Autowiring with target`() {

Diff for: spring-context/src/test/kotlin/org/springframework/context/annotation/KotlinConfigurationClassTests.kt renamed to spring-context/src/test/kotlin/org/springframework/context/annotation/ConfigurationClassKotlinTests.kt

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,14 +16,18 @@
1616

1717
package org.springframework.context.annotation
1818

19-
2019
import org.assertj.core.api.Assertions.assertThat
2120
import org.assertj.core.api.Assertions.assertThatExceptionOfType
2221
import org.junit.jupiter.api.Test
2322
import org.springframework.beans.factory.getBean
2423
import org.springframework.beans.factory.parsing.BeanDefinitionParsingException
2524

26-
class KotlinConfigurationClassTests {
25+
/**
26+
* Integration tests for Kotlin configuration classes.
27+
*
28+
* @author Sebastien Deleuze
29+
*/
30+
class ConfigurationClassKotlinTests {
2731

2832
@Test
2933
fun `Final configuration with default proxyBeanMethods value`() {
+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ import org.springframework.beans.factory.support.RootBeanDefinition
3030
import org.springframework.validation.beanvalidation.BeanValidationBeanRegistrationAotProcessorTests.*
3131

3232
/**
33-
* Kotlin tests for {@link BeanValidationBeanRegistrationAotProcessor}.
33+
* Kotlin tests for [BeanValidationBeanRegistrationAotProcessor].
3434
*
3535
* @author Sebastien Deleuze
3636
*/
37-
class KotlinBeanValidationBeanRegistrationAotProcessorTests {
37+
class BeanValidationBeanRegistrationAotProcessorKotlinTests {
3838

3939
private val processor = BeanValidationBeanRegistrationAotProcessor()
4040

Diff for: spring-context/src/test/kotlin/org/springframework/validation/beanvalidation/KotlinMethodValidationTests.kt renamed to spring-context/src/test/kotlin/org/springframework/validation/beanvalidation/MethodValidationKotlinTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import org.springframework.validation.annotation.Validated
3232
* @author Sebastien Deleuze
3333
*/
3434
@Suppress("UsePropertyAccessSyntax")
35-
class KotlinMethodValidationTests {
35+
class MethodValidationKotlinTests {
3636

3737
@Test
3838
fun parameterValidation() {

Diff for: spring-core/src/test/kotlin/org/springframework/aot/hint/KotlinBindingReflectionHintsRegistrarTests.kt renamed to spring-core/src/test/kotlin/org/springframework/aot/hint/BindingReflectionHintsRegistrarKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import java.lang.reflect.Method
2727
*
2828
* @author Sebastien Deleuze
2929
*/
30-
class KotlinBindingReflectionHintsRegistrarTests {
30+
class BindingReflectionHintsRegistrarKotlinTests {
3131

3232
private val bindingRegistrar = BindingReflectionHintsRegistrar()
3333

Diff for: spring-core/src/test/kotlin/org/springframework/core/AbstractKotlinReflectionParameterNameDiscovererTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/AbstractReflectionParameterNameDiscovererKotlinTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import org.springframework.util.ReflectionUtils
2727
* @author Sebastien Deleuze
2828
*/
2929
@Suppress("UNUSED_PARAMETER")
30-
abstract class AbstractKotlinReflectionParameterNameDiscovererTests(protected val parameterNameDiscoverer: ParameterNameDiscoverer) {
30+
abstract class AbstractReflectionParameterNameDiscovererKotlinTests(protected val parameterNameDiscoverer: ParameterNameDiscoverer) {
3131

3232
@Test
3333
fun getParameterNamesOnInterface() {

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinBridgeMethodResolverTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/BridgeMethodResolverKotlinTests.kt

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,7 +19,12 @@ package org.springframework.core
1919
import org.assertj.core.api.Assertions.assertThat
2020
import org.junit.jupiter.api.Test
2121

22-
class KotlinBridgeMethodResolverTests {
22+
/**
23+
* Kotlin tests for [BridgeMethodResolver].
24+
*
25+
* @author Sebastien Deleuzes
26+
*/
27+
class BridgeMethodResolverKotlinTests {
2328

2429
@Test
2530
fun findBridgedMethod() {

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinCoroutinesUtilsTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/CoroutinesUtilsTests.kt

+13-8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ import reactor.test.StepVerifier
2828
import kotlin.coroutines.Continuation
2929
import kotlin.coroutines.coroutineContext
3030

31-
class KotlinCoroutinesUtilsTests {
31+
/**
32+
* Kotlin tests for [CoroutinesUtils].
33+
*
34+
* @author Sebastien Deleuze
35+
*/
36+
class CoroutinesUtilsTests {
3237

3338
@Test
3439
fun deferredToMono() {
@@ -56,7 +61,7 @@ class KotlinCoroutinesUtilsTests {
5661

5762
@Test
5863
fun invokeSuspendingFunctionWithNullContinuationParameter() {
59-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunction", String::class.java, Continuation::class.java)
64+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunction", String::class.java, Continuation::class.java)
6065
val publisher = CoroutinesUtils.invokeSuspendingFunction(method, this, "foo", null)
6166
Assertions.assertThat(publisher).isInstanceOf(Mono::class.java)
6267
StepVerifier.create(publisher)
@@ -67,7 +72,7 @@ class KotlinCoroutinesUtilsTests {
6772

6873
@Test
6974
fun invokeSuspendingFunctionWithoutContinuationParameter() {
70-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunction", String::class.java, Continuation::class.java)
75+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunction", String::class.java, Continuation::class.java)
7176
val publisher = CoroutinesUtils.invokeSuspendingFunction(method, this, "foo")
7277
Assertions.assertThat(publisher).isInstanceOf(Mono::class.java)
7378
StepVerifier.create(publisher)
@@ -78,13 +83,13 @@ class KotlinCoroutinesUtilsTests {
7883

7984
@Test
8085
fun invokeNonSuspendingFunction() {
81-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("nonSuspendingFunction", String::class.java)
86+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("nonSuspendingFunction", String::class.java)
8287
Assertions.assertThatIllegalArgumentException().isThrownBy { CoroutinesUtils.invokeSuspendingFunction(method, this, "foo") }
8388
}
8489

8590
@Test
8691
fun invokeSuspendingFunctionWithFlow() {
87-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunctionWithFlow", Continuation::class.java)
92+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunctionWithFlow", Continuation::class.java)
8893
val publisher = CoroutinesUtils.invokeSuspendingFunction(method, this)
8994
Assertions.assertThat(publisher).isInstanceOf(Flux::class.java)
9095
StepVerifier.create(publisher)
@@ -96,7 +101,7 @@ class KotlinCoroutinesUtilsTests {
96101

97102
@Test
98103
fun invokeSuspendingFunctionWithNullContinuationParameterAndContext() {
99-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunctionWithContext", String::class.java, Continuation::class.java)
104+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunctionWithContext", String::class.java, Continuation::class.java)
100105
val context = CoroutineName("name")
101106
val mono = CoroutinesUtils.invokeSuspendingFunction(context, method, this, "foo", null) as Mono
102107
runBlocking {
@@ -106,7 +111,7 @@ class KotlinCoroutinesUtilsTests {
106111

107112
@Test
108113
fun invokeSuspendingFunctionWithoutContinuationParameterAndContext() {
109-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunctionWithContext", String::class.java, Continuation::class.java)
114+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("suspendingFunctionWithContext", String::class.java, Continuation::class.java)
110115
val context = CoroutineName("name")
111116
val mono = CoroutinesUtils.invokeSuspendingFunction(context, method, this, "foo") as Mono
112117
runBlocking {
@@ -116,7 +121,7 @@ class KotlinCoroutinesUtilsTests {
116121

117122
@Test
118123
fun invokeNonSuspendingFunctionWithContext() {
119-
val method = KotlinCoroutinesUtilsTests::class.java.getDeclaredMethod("nonSuspendingFunction", String::class.java)
124+
val method = CoroutinesUtilsTests::class.java.getDeclaredMethod("nonSuspendingFunction", String::class.java)
120125
val context = CoroutineName("name")
121126
Assertions.assertThatIllegalArgumentException().isThrownBy { CoroutinesUtils.invokeSuspendingFunction(context, method, this, "foo") }
122127
}

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinDefaultParameterNameDiscovererTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/DefaultParameterNameDiscovererKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import org.junit.jupiter.api.Test
2424
*
2525
* @author Sebastien Deleuze
2626
*/
27-
class KotlinDefaultParameterNameDiscovererTests :
28-
AbstractKotlinReflectionParameterNameDiscovererTests(DefaultParameterNameDiscoverer()){
27+
class DefaultParameterNameDiscovererKotlinTests :
28+
AbstractReflectionParameterNameDiscovererKotlinTests(DefaultParameterNameDiscoverer()){
2929

3030
enum class MyEnum {
3131
ONE, TWO

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinGenericTypeResolverTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/GenericTypeResolverKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import java.lang.reflect.Method
2727
* @author Konrad Kaminski
2828
* @author Sebastien Deleuze
2929
*/
30-
class KotlinGenericTypeResolverTests {
30+
class GenericTypeResolverKotlinTests {
3131

3232
@Test
3333
fun methodReturnTypes() {

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinReflectionParameterNameDiscovererTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ package org.springframework.core
2222
* @author Sebastien Deleuze
2323
*/
2424
class KotlinReflectionParameterNameDiscovererTests :
25-
AbstractKotlinReflectionParameterNameDiscovererTests(KotlinReflectionParameterNameDiscoverer())
25+
AbstractReflectionParameterNameDiscovererKotlinTests(KotlinReflectionParameterNameDiscoverer())

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinMethodParameterTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/MethodParameterKotlinTests.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ import kotlin.reflect.jvm.javaMethod
3232
* @author Juergen Hoeller
3333
* @author Konrad Kaminski
3434
*/
35-
class KotlinMethodParameterTests {
35+
class MethodParameterKotlinTests {
3636

3737
private val nullableMethod: Method = javaClass.getMethod("nullable", String::class.java)
3838

3939
private val nonNullableMethod = javaClass.getMethod("nonNullable", String::class.java)
4040

4141
private val withDefaultValueMethod: Method = javaClass.getMethod("withDefaultValue", String::class.java)
4242

43-
private val innerClassConstructor = InnerClass::class.java.getConstructor(KotlinMethodParameterTests::class.java)
43+
private val innerClassConstructor = InnerClass::class.java.getConstructor(MethodParameterKotlinTests::class.java)
4444

4545
private val innerClassWithParametersConstructor = InnerClassWithParameter::class.java
46-
.getConstructor(KotlinMethodParameterTests::class.java, String::class.java, String::class.java)
46+
.getConstructor(MethodParameterKotlinTests::class.java, String::class.java, String::class.java)
4747

4848
private val regularClassConstructor = RegularClass::class.java.getConstructor(String::class.java, String::class.java)
4949

Diff for: spring-core/src/test/kotlin/org/springframework/core/KotlinReactiveAdapterRegistryTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/ReactiveAdapterRegistryKotlinTests.kt

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,8 +33,13 @@ import reactor.test.StepVerifier
3333
import java.time.Duration
3434
import kotlin.reflect.KClass
3535

36+
/**
37+
* Kotlin tests for [ReactiveAdapterRegistry].
38+
*
39+
* @author Sebastien Deleuze
40+
*/
3641
@OptIn(DelicateCoroutinesApi::class)
37-
class KotlinReactiveAdapterRegistryTests {
42+
class ReactiveAdapterRegistryKotlinTests {
3843

3944
private val registry = ReactiveAdapterRegistry.getSharedInstance()
4045

Diff for: spring-core/src/test/kotlin/org/springframework/core/env/KotlinPropertyResolverExtensionsTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/env/PropertyResolverExtensionsKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@ import org.junit.jupiter.api.Test
2828
* @author Sebastien Deleuze
2929
*/
3030
@Disabled
31-
class KotlinPropertyResolverExtensionsTests {
31+
class PropertyResolverExtensionsKotlinTests {
3232

3333
val propertyResolver = mockk<PropertyResolver>()
3434

Diff for: spring-core/src/test/kotlin/org/springframework/core/io/support/KotlinSpringFactoriesLoaderTests.kt renamed to spring-core/src/test/kotlin/org/springframework/core/io/support/SpringFactoriesLoaderKotlinTests.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,12 +22,12 @@ import org.junit.jupiter.api.Test
2222
import org.springframework.core.io.support.SpringFactoriesLoader.ArgumentResolver
2323

2424
/**
25-
* Kotlin tests for {@link SpringFactoriesLoader}.
25+
* Kotlin tests for [SpringFactoriesLoader].
2626
*
2727
* @author Phillip Webb
2828
*/
29-
@Suppress("unused", "UNUSED_PARAMETER", "PLATFORM_CLASS_MAPPED_TO_KOTLIN")
30-
class KotlinSpringFactoriesLoaderTests {
29+
@Suppress("unused", "PLATFORM_CLASS_MAPPED_TO_KOTLIN")
30+
class SpringFactoriesLoaderKotlinTests {
3131

3232
@Test
3333
fun `Instantiate immutable data class`() {

Diff for: spring-expression/src/test/kotlin/org/springframework/expression/spel/KotlinSpelReproTests.kt renamed to spring-expression/src/test/kotlin/org/springframework/expression/spel/SpelReproKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import org.springframework.expression.ExpressionParser
2222
import org.springframework.expression.spel.standard.SpelExpressionParser
2323
import kotlin.coroutines.Continuation
2424

25-
class KotlinSpelReproTests {
25+
class SpelReproKotlinTests {
2626

2727
private val parser: ExpressionParser = SpelExpressionParser()
2828

@@ -31,7 +31,7 @@ class KotlinSpelReproTests {
3131

3232
@Test
3333
fun `gh-23812 SpEL cannot invoke Kotlin synthetic classes`() {
34-
val expr = parser.parseExpression("new org.springframework.expression.spel.KotlinSpelReproTests\$Config().kotlinSupplier().invoke()")
34+
val expr = parser.parseExpression("new org.springframework.expression.spel.SpelReproKotlinTests\$Config().kotlinSupplier().invoke()")
3535
assertThat(expr.getValue(context)).isEqualTo("test")
3636
}
3737

Diff for: spring-jdbc/src/test/kotlin/org/springframework/jdbc/core/KotlinDataClassRowMapperTests.kt renamed to spring-jdbc/src/test/kotlin/org/springframework/jdbc/core/DataClassRowMapperKotlinTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors
2+
* Copyright 2002-2023 the original author or authors
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ import org.springframework.jdbc.core.test.ConstructorPerson
2222
import java.math.BigDecimal
2323
import java.util.*
2424

25-
class KotlinDataClassRowMapperTests : AbstractRowMapperTests() {
25+
class DataClassRowMapperKotlinTests : AbstractRowMapperTests() {
2626

2727
@Test
2828
fun testStaticQueryWithDataClass() {

Diff for: spring-messaging/src/test/kotlin/org/springframework/messaging/converter/KotlinSerializationJsonMessageConverterTests.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,7 +25,6 @@ import org.springframework.messaging.support.MessageBuilder
2525
import java.nio.charset.StandardCharsets
2626
import kotlin.reflect.typeOf
2727

28-
@Suppress("UsePropertyAccessSyntax")
2928
class KotlinSerializationJsonMessageConverterTests {
3029

3130
private val converter = KotlinSerializationJsonMessageConverter()

Diff for: spring-test/src/test/kotlin/org/springframework/test/context/KotlinDynamicPropertySourceIntegrationTests.kt renamed to spring-test/src/test/kotlin/org/springframework/test/context/DynamicPropertySourceKotlinIntegrationTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@ import org.springframework.test.context.junit.jupiter.SpringJUnitConfig
3232
* @author Sam Brannen
3333
*/
3434
@SpringJUnitConfig
35-
class KotlinDynamicPropertySourceIntegrationTests {
35+
class DynamicPropertySourceKotlinIntegrationTests {
3636

3737
@Test
3838
fun hasInjectedValues(@Autowired service: Service) {

Diff for: spring-web/src/test/kotlin/org/springframework/http/KotlinResponseEntityTests.kt renamed to spring-web/src/test/kotlin/org/springframework/http/ResponseEntityKotlinTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import org.junit.jupiter.api.Test
2424
*
2525
* @author Sebastien Deleuze
2626
*/
27-
class KotlinResponseEntityTests {
27+
class ResponseEntityKotlinTests {
2828

2929
@Test
3030
fun ofNullable() {

0 commit comments

Comments
 (0)