kspec icon indicating copy to clipboard operation
kspec copied to clipboard

Kotlin Specification Framework

Results 8 kspec issues
Sort by recently updated
recently updated
newest added

Does KSpec support any form of property based testing. There are no examples I have found so far. Property-based testing is testing à la QuickCheck, Hypothesis, ScalaCheck, KotlinTest, Specks, Spock/Spock...

Provide a plugin for IntelliJ IDEA. It should allow running specs within the IDE and integrate with IntelliJ's test runner tab.

enhancement

Should resolve #5

enhancement

It would be good nice if individual KSpec blocks could be run but the intelliJ test runner, without needing to use `fit`, `fdescribe` etc. Is anyone working on this now?

enhancement

So Jetbrains just announced [Kotlin's Post 1.0 Roadmap](http://blog.jetbrains.com/kotlin/2016/04/kotlin-post-1-0-roadmap/) and one of the planned features is `local delegated properties`. This can be very useful with subjects! ``` kotlin describe(Foo::class) { val...

enhancement

Here is a small sample that introduces an intermediate class that shortens specification classes. We lose flexibility a bit (no way to change the runner via `@RunWith`) and it also...

Disable for now. ``` gradle test { reports { junitXml.enabled = false html.enabled = false } } ``` Implement custom reporter?