Use consistently *KotlinTests naming for Kotlin tests

Closes gh-30837
This commit is contained in:
Sébastien Deleuze
2023-07-07 18:39:02 +02:00
parent fb17e283d1
commit b3de1b8e95
26 changed files with 76 additions and 55 deletions

View File

@@ -40,9 +40,8 @@ import java.util.function.Consumer
*
* @author DongHyeon Kim
* @author Sebastien Deleuze
*
*/
class KotlinWebClientHttpServiceProxyTests {
class WebClientHttpServiceProxyKotlinTests {
private lateinit var server: MockWebServer

View File

@@ -37,7 +37,12 @@ import java.lang.reflect.Method
import java.time.Duration
import kotlin.reflect.jvm.javaMethod
class KotlinInvocableHandlerMethodTests {
/**
* Kotlin unit tests for [InvocableHandlerMethod].
*
* @author Sebastien Deleuze
*/
class InvocableHandlerMethodKotlinTests {
private val exchange = MockServerWebExchange.from(get("http://localhost:8080/path"))

View File

@@ -44,7 +44,7 @@ import java.util.*
*
* @author Sebastien Deleuze
*/
class KotlinMessageWriterResultHandlerTests {
class MessageWriterResultHandlerKotlinTests {
private val resultHandler = initResultHandler()