Open
Description
@exercism/kotlin
Currently we are using Junit4 tests with @Ignore
annotation that students need to remove manually.
Q: What can be used instead?
A: Fail-fast strategy: stop after first failed test - no more manual work for students.
Q: What other options for testing tooling we have?
A:
- JUnit 5 - newer Junit.
- Kotlintest/Spek - better DSL. One step towards data-driven tests.
- Custom test-runner. Can also be an option for that simple tests we have.