hosswald
hosswald
#2730 seems related
Test reports exported fron IntelliJ IDEA 2022.1.2 UE with Kotest Plugin 1.2.58-IC-2022.1 [TestResult_Kotest_4_6_3.xml.txt](https://github.com/kotest/kotest/files/8947891/TestResult_Kotest_4_6_3.xml.txt) [TestResult_Kotest_5_3_1.xml.txt](https://github.com/kotest/kotest/files/8947892/TestResult_Kotest_5_3_1.xml.txt)
@sksamuel sorry, I missed your mention in July. Please try with Gradle version 6.6.1. I just tested, with Gradle 7.5.1 I **don't** have the bug (but gradle major version updates...
- Gradle 6.8.3 (latest major 6 version): broken - Gradle 7.0: not broken
I can confirm from #3068 that it's broken in Gradle 6 but works in Gradle 7 with otherwise similar dependencies (io.kotest:kotest-runner-junit5:5.4.2).
I have the same problem. Latest seems to be fixed on 0.1.0, which means protobuf 3.4.1 < 3.5.0, which means no reserved enum values.
Ok, this fixes it for me: ``` KotlinModule.Builder() .configure(KotlinFeature.NullIsSameAsDefault, true) .build() ``` However, I'm not _really_ passing null here, I'm just deciding how empty cells in my CSV should be...
Put differently, the usage of default parameter should be the default when parsing a CSV and encountering an empty cell, regardless of whether or not EMPTY_STRING_AS_NULL is used, in my...
@cowtowncoder I just looked a bit through the test cases for [jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text)/csv... MissingColumnsTest::testDefaultMissingHandling() handles missing columns the way I would like missing cells (in a present column) to be handled,...
Stumbled across the same problem. I guess it has to do with limitations of the transformers ability to analyze generic types that are coming from somewhere else. It would be...