DslMarker not propagating properly in IDEA builds test tree incorrectly
See original GitHub issuekotest: 5.2.1 kotest plugin: 1.1.49-IC-213-EAP-SNAPSHOT IDEA: 2021.3.2
The test starts through GRADLE run Configuration
sample code:
import io.kotest.core.spec.style.DescribeSpec
import io.kotest.datatest.withData
import io.kotest.matchers.shouldBe
class DemoTest : DescribeSpec() {
init {
describe("desc - 0") {
it("it - 0") {
withData(
1 to 1,
1 to 2
) { (x, y) ->
x shouldBe y
}
}
}
}
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Kotlin 1.4 | Hacker News
- Ecosystem has moved nicely with Kotlin. Ktor and Ebean seem to be on board and pretty mature. - Null safety built in...
Read more >spe-hui.pdf - Jeff Gray
This paper describes a grammar-driven technique to build a debugging ... particular DSL problem domains at the proper level of abstraction without depending ......
Read more >WhatsNew 1.6 | Ktor Framework
Ktor http client with java engine uses incorrect timeout. ... Kotlin/Native macOS target test build failed with an exception, exit code 139.
Read more >Kotlin Language Documentation - CodeChef
how you can build and run very small Web applications in Kotlin. ... x and y are automatically cast to non-nullable after null...
Read more >Reflective Embedding of Domain-Specific Languages
cial for certain problem domains – so-called domain-specific ... from different domains cannot be correctly resolved at the level of a.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can only put withData inside containers, so it’s binding to the describe level. This is a bug in the sense that you shouldn’t be able to create a test like that.
On Tue, 15 Mar 2022 at 13:15, Viktor Alenkov @.***> wrote:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.