Brian Norman
Brian Norman
I would argue `Setup` might be appropriate since the values are accessed through attributes of `call.request`: > Phase for preparing call and it's attributes for processing My use case was...
Also related to #38. This is happening because the artifact generated for Gradle to use is must be built against the embedded Kotlin compiler dependency which shades the `com.intellij.mock.MockProject` class....
I don't think there is anything I can do here. Unless I could somehow override both abstract methods and call the right register function in them? I think I unfortunately...
Hello! I don't use Kotest so support for its assertions hasn't been on my radar. `kotlin-power-assert` can support any function call which allows passing a String to the last parameter,...
Something very strange is happening. The exception is reporting that `PowerAssertComponentRegistrar` doesn't override a function with the signature of `registerProjectComponents(com.intellij.mock.MockProject, org.jetbrains.kotlin.config.CompilerConfiguration)`. However, the `ComponentRegistrar` class defines a function with the...
I sort of expect the problem to be the opposite. Kotlin/JVM and Kotlin/JS use the embedded compiler and Kotlin/Native uses the non-embedded compiler which is why there are 2 different...
I'm not sure this is going to be possible without a Maven specific artifact. Looking at the documentation for the allopen plugin seems to imply that at least given it's...
If I ever get around to it this might a good reference implementation for a maven plugin (besides the official ones): https://www.github.com/intuit/hooks/tree/master/maven-plugin
Step 1 shouldn't be required if you are doing all of this manually, just use artifact id `kotlin-power-assert-plugin-natvie` which is compiled against the non-embedded compiler dependency.
There is no clean way using this library to access the call object. It is possible though, using `io.ktor.util.pipeline.Pipeline#intercept` to save and clear a reference to the ApplicationCall. With the...