diff --git a/spring-beans/src/test/kotlin/org/springframework/beans/BeanUtilsKotlinTests.kt b/spring-beans/src/test/kotlin/org/springframework/beans/KotlinBeanUtilsTests.kt similarity index 96% rename from spring-beans/src/test/kotlin/org/springframework/beans/BeanUtilsKotlinTests.kt rename to spring-beans/src/test/kotlin/org/springframework/beans/KotlinBeanUtilsTests.kt index 74748ff046..bc02a30264 100644 --- a/spring-beans/src/test/kotlin/org/springframework/beans/BeanUtilsKotlinTests.kt +++ b/spring-beans/src/test/kotlin/org/springframework/beans/KotlinBeanUtilsTests.kt @@ -25,7 +25,7 @@ import org.junit.Test * @author Sebastien Deleuze */ @Suppress("unused", "UNUSED_PARAMETER") -class BeanUtilsKotlinTests { +class KotlinBeanUtilsTests { @Test fun `Instantiate immutable class`() { @@ -52,7 +52,7 @@ class BeanUtilsKotlinTests { } @Test - fun `Instantiate immutable class with optional parameter specified with null value`() { + fun `Instantiate immutable class with optional parameter specified with null value`() { val constructor = BeanUtils.findPrimaryConstructor(Bar::class.java)!! val bar = BeanUtils.instantiateClass(constructor, "a", null) assertEquals("a", bar.param1)