Ronny Bräunlichblog.code-n-roll.dev·Nov 16, 2024Kotest + Spring + TestcontainersRecently, I wanted to rewrite a JUnit integration test for my Spring Boot application. Since it was an integration test, I used Testcontainers to start a database. While there are Kotest extensions for Spring and Testcontainers we have the problem th...Discuss·258 readsKotlin
Joubert RedRatblog.redrat.com.br·Sep 12, 2024Integration tests on Symfony with TestcontainersDisclaimer: I'm not a divine entity. What I say is not an absolute truth. Don't be afraid to question even the world, because it might be wrong, not you. Today isn't a secret for nobody the importance of automated tests for keeping quality and integr...Discuss·48 readsPHP
Joubert RedRatblog.redrat.com.br·Aug 29, 2024Testes de Integração no Symfony com TestcontainersDisclaimer: Eu não sou uma entidade divina. O que eu falo não é uma verdade absoluta. Não tenha medo de questionar até o mundo, pois ele pode estar errado, não você. Hoje não é segredo para ninguém a importância dos testes automatizados para manter a...DiscussPHP
Isabel Garrido Cardenasisabeliita90.hashnode.dev·Jun 6, 2024Uploading a file to S3 - Integration testIn the previous article of the series, I covered the unit tests for this functionality. However, that isn't enough to ensure our feature works on this occasion because we are integrating it with another service. To create our controlled version of AW...Discuss·1 like·179 readsAWS Kotlin SDK examplesTesting
Dev LeaderProhashnode.devleader.ca·Apr 4, 2024C# Testcontainers For MongoDB: How To Easily Run Local DatabasesIn this article, I’ll guide you through C# Testcontainers for MongoDB! I love using Testcontainers for local database work when I don’t want to think about managing the overhead of spinning up and tearing down a database, or managing something in the...DiscussMongoDB
Michael Nelsonmichael-nelson.co.uk·Dec 7, 2023Singleton Pattern with TestContainers and SQL Server in C#When working with web services there is often data access which could benefit from some level of coverage in integration tests. That means re-creating our storage, whatever that may be, in our tests. A key consideration with how we create our storage...Discuss·234 readsdotnet
julien Lengrand-Lamberttechbytes.hashnode.dev·Oct 20, 2023[Unit] Testing Supabase in Kotlin using Test Containers - PART 2In this article we continue diving into TestContainers and Supabase, and run unit tests against a full local self-hosted Supabase. Supabase <3 Kotlin TL;DR : You can run a full Supabase instance inside Test Containers quite easily. See this reposito...DiscussTestcontainers
Isaac Afrifaiafrifa.hashnode.dev·Oct 20, 2023Exploring Testcontainers: My ExperienceReplicating your production environment during development and testing is extremely essential in software development. Gone are the days when in-memory databases like H2 were the go-to when it came to testing. Today, innovative tools like Testcontain...Discuss·110 readsTesting
Eduardo Guedesguedes.hashnode.dev·Oct 18, 2023Integration Test in Golang: Testcontainer and LocalstackAs a softaware developer, one of the crucial tasks you'll encounter is implementing and testing a repository layer that interacts with databases. In this blog post, we'll explore how to create integration tests for a DynamoDB repository using LocalSt...Discuss·532 readsgolang
julien Lengrand-Lamberttechbytes.hashnode.dev·Oct 11, 2023[Unit] Testing Supabase in Kotlin using Test ContainersTL;DR : The easiest way I found to test my database service is to mimick Supabase using Docker Compose and Test Containers. Here's the code In case you don't know it, I'm a big fan of Supabase. I love that they're a viable alternative to Firebase. I ...DiscussKotlin