Building assertions with Strikt
Strikt is assertion library built for Kotlin with API that allows building fluent assetions. To add library to project, add following dependency to your build.gradle repositories { mavenCentral()}dependencies { testImplementation("io.strikt:strikt-core:0.31.0")} To get latest version, visit Github Releases page: https://github.com/robfletcher/strikt/releases Basic usage Good assertion library should give us readable assertion errors. Strikt renders error in the …