Adam
Adam
* Kotlin 1.7.0 * Spring Boot 2.7.1 I have a service with a public property, `myMap`, typed as an inline class, which has a generic parameter. ```kotlin @Service class ValueClassService...
**What is your use-case and why do you need this feature?** I have a Spring Boot REST API and I want to control what error codes are returned if there's...
**What is your use-case and why do you need this feature?** I need to use JSON to encode and decode 2d arrays of x/y coordinates ```kotlin @Serializable data class Coordinates(...
Fixes #646 I used the Intellij Lombok plugin to delombok the code. This is a proof of concept - Twilio will have to update their code generator. ### Checklist -...
### Issue Summary RequestValidator only has one example in its test, [RequestValidatorTest](https://github.com/twilio/twilio-java/blob/0e4637bb772209737e3a689665b8a07cd99b3d58/src/test/java/com/twilio/security/RequestValidatorTest.java). I'm attempting to use RequestValidator but it's not working - it says all requests that come from Twilio...
Initial steps at implementing #854, and migrating to the new Kotlin Multiplatform plugin. Additionally, re-organises the subprojects to a flatter structure. - [x] share common Gradle config in buildSrc convention...
When building the project locally I see an warning in the logs ```none The 'org.jetbrains.kotlin.platform.*' plugins are deprecated and will no longer be available in Kotlin 1.4. Please migrate the...
The tests in `HashMapMockTest.kt` fail on more recent (16+) JDK versions. https://github.com/mockk/mockk/blob/02a6d4546d79da9d362b61376dae64ff656de7b1/mockk/jvm/src/test/kotlin/io/mockk/jvm/HashMapMockTest.kt#L36-L43 https://github.com/mockk/mockk/runs/7519107510?check_suite_focus=true#step:7:393 ```none HashMapMockTest > concurrentHashMap_shouldBeSpied_Successfully() FAILED java.lang.IllegalAccessException: class io.mockk.impl.InternalPlatform cannot access a member of class java.util.concurrent.ConcurrentHashMap (in module...
Value class support is being improved in #849 However there are issues when a value class is nested, for example ```kotlin @JvmInline value class DummyValue(val value: Int) @JvmInline value class...
There is some amount of code duplication in the MockK modules. Specifically `ValueClassSupport` (but there might be more?) https://github.com/mockk/mockk/blob/54e30ec66e4aeb61942b976dbb33fd37c9487629/agent/android/src/main/kotlin/io/mockk/ValueClassSupport.kt https://github.com/mockk/mockk/blob/54e30ec66e4aeb61942b976dbb33fd37c9487629/agent/jvm/src/main/kotlin/io/mockk/ValueClassSupport.kt Eliminating this code duplication would reduce the risk of bugs...