Ignacio Suay Blog

0

Testing Spring boot with ScalaTest

Introduction Spring boot tests provides great support for testing which combined with the sugar syntax form Scala makes testing more pleasant and less verbose. In this article we will build a Rest Controller build...

1

Kotlin vs Java

In this post, I compare Kotlin and Java and explain why in my opinion Kotlin is the way forward.

6

How to do integration tests with Spring Boot and Spock

In the latest version of Spring Boot (1.4) they have introduced a new annotation called @SpringBootTest. Previous to this version you may have used either @ContextConfiguration or @SpringApplicationConfiguration combined with @IntegrationTest or/and @WebIntegrationTest to...