public void Should_create_queue_when_connection_is_established_for_the_first_time() { queueFactory.Create(model).Returns(new QueueDeclareOk("someQueue", 1, 1)); aggregator.Notify(new ConnectionEstablished(connection)); queueFactory.Received().Create(model); }