public void SetUp() { var participant = new StubParticipant(); _server = new JsonAmqpRpcServer("localhost", "QUEUE_NAME", new ParticipantHandler(participant)); _server.Start(); _client = new JsonAmqpRpcClient("localhost", "QUEUE_NAME"); }
public void ShouldThrowInvalidOperationExceptionIfStartCalledMultipleTimes() { _server.Start(); }