public async Task SendBatch()
        {
            var msgs = new BrokeredMessage[] { new BrokeredMessage(), new BrokeredMessage(), new BrokeredMessage(), new BrokeredMessage() };

            var bq = new BusTopicClient(TopicClient.CreateFromConnectionString(connection, this.name));
            await bq.Send(msgs);
        }
 public void Client()
 {
     var client = TopicClient.CreateFromConnectionString(connection, "test");
     var btc = new BusTopicClient(client);
     Assert.AreEqual(client, btc.Client);
 }