-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Hands-On Microservices with Kotlin
By :

When we do these tests, it is really important to do them in a way that everyone can understand, and have these tests that can be easily read is something really important for our applications. As we said earlier, we can even use our Ubiquitous language in our tests so that anyone in the team can understand them, including our domain experts. There is a Kotlin library named Kluent
that allows us to do fluent tests, taking advantage of some of the benefits of the Kotlin programming language. More details are available at: https://markusamshove.github.io/Kluent/.
First, we will add Kluent
as a dependency in our Maven POM. Go to the Project
window and open pom.xml
in the root folder of the project. Kluent
is hosted in bintray JCenter, so we need to add that repository to our POM. Find the tag repositories and add another one at the end of the existing repositories:
....
<repositories>
....
<repository>
<id>jcenter</id>
<url>http...