Does anyone know of a tool or have a good solution for QA to test individual nServiceBus endpoints in isolation? We have multiple publishers and subscribers in our system and we’d like to test them in isolation. For example, to test our publishers we’d like to be able to have a tool that our QA can use to easily subscribe/unsubscribe to different publishers so they can get messages delivered to their “QA queue” for validation of the messages. To test subscribers, we’d like them to be able to publish messages directly to the subscribers input queue.
Share
We wired up wcf endpoints for pub entry. Created a subscriber for qa that saves message in RavenDB. Since having multiple handlers for same type in pub does not work, wcf endpoint message is new class with the main message as the base class. Then QA can use soapui or other testing client.