Easy integration tests with Spring Boot, Testcontainers and Kotlin — When writing JUnit tests for Spring Boot applications, typically when accessing the data layer, we’d need to mock our repository methods. But what if we could use an actual instance of our respective database in our tests and interact with it instead, just how we’d do it in a production…