public async Task ListQueuesAsync_AtLeastOneQueue_ReturnsListContainingThatQueue() { IQueueServiceClient client = new QueueServiceClient(_accountSettings); var queueName = GenerateSampleQueueName(); _util.CreateQueue(queueName); var response = await client.ListQueuesAsync(); Assert.IsTrue(response.Queues.Any(q => q.Name == queueName)); }