Disable unit tests for Kotlin unsigned integers until IDE support gets fixed.

Closes #2374
This commit is contained in:
Mark Paluch
2021-05-12 14:58:04 +02:00
parent b5ff1f08b2
commit a7d9411581

View File

@@ -88,7 +88,8 @@ class PreferredConstructorDiscovererUnitTests {
assertThat(constructor).isNull()
}
@Test // DATACMNS-1800, gh-2215
// See https://github.com/spring-projects/spring-data-commons/issues/2374
/*@Test // DATACMNS-1800, gh-2215
@ExperimentalUnsignedTypes
fun `should discover constructor for class using unsigned types`() {
@@ -98,7 +99,7 @@ class PreferredConstructorDiscovererUnitTests {
)
assertThat(constructor).isNotNull()
}
} */
data class Simple(val firstname: String)
@@ -137,11 +138,13 @@ class PreferredConstructorDiscovererUnitTests {
)
}
/*
See https://github.com/spring-projects/spring-data-commons/issues/2374
@ExperimentalUnsignedTypes
data class UnsignedTypesEntity(
val id: String,
val a: UInt = 5u,
val b: Int = 5,
val c: Double = 1.5
)
) */
}