Testing with Ease

Learn how to test our application using RabbitMQ.

We'll cover the following...

To explore message actions, let’s start out with a test-based approach by talking to the real AMQP broker, RabbitMQ.

Let’s go for a completely different experience than downloading, installing, and firing up RabbitMQ manually. The technique we’ll use is Testcontainers, the Java testing library that leverages Docker. Testcontainers fires up any database, message broker, or other third-party systems we can imagine (as long as it runs with Docker) and ...