Kluent is a "Fluent Assertions" library written specifically for Kotlin.
It uses the Infix-Notations and Extension Functions of Kotlin to provide a fluent wrapper around the JUnit-Asserts and Mockito.
Kluent is hosted here at jcenter
Kluent-Android is hosted here at jcenter
Replace {version} with the current version
dependencies {
testCompile 'org.amshove.kluent:kluent:{version}'
// for Android:
testImplementation 'org.amshove.kluent:kluent-android:{version}'
}
Replace {version} with the current version
<dependency>
<groupId>org.amshove.kluent</groupId>
<artifactId>kluent</artifactId>
<version>{version}</version>
<type>pom</type>
</dependency>
More examples can be seen on the Site or in the tests.
"hello" shouldEqual "hello"
"hello" shouldNotEqual "world"
val alice = Person("Alice", "Bob")
val jon = Person("Jon", "Doe")
val list = listOf(alice, jon)
list shouldContain jon
val stub = mock(Database::class)
val bob = Person("Bob", "Guy")
When calling stub.getPerson() itReturns bob
Every method that is included in Kluent also has a "backtick version", to make it feel more like a describing sentence.
Some examples:
"hello" `should equal` "hello"
"hello" `should not equal` "world"