package de.dev089.eventproducer; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest(properties = { "RABBITMQ_HOST=localhost", "RABBITMQ_PORT=5672", "RABBITMQ_USERNAME=guest", "RABBITMQ_PASSWORD=guest" }) class EventProducerApplicationTests { @Test void contextLoads() { } }