Crafting a Test Case
Learn how to write a test class for RabbitMQ.
We'll cover the following...
With everything in place, it’s time to determine what our system will do. We’re talking about an asynchronous message solution. A simple thing to implement would be receiving a request for a new Item
object at a web controller and forwarding the information as a message through RabbitMQ. A service would be elsewhere, listening for messages. That service could then write the new Item
to MongoDB. ...