public async void GetBattlegroupAsync_Gets_Battlegroups()
        {
            IWarcraftClient warcraftClient = BuildMockClient(
                requestUri: "https://us.api.blizzard.com/wow/data/battlegroups/?locale=en_US",
                responseContent: Resources.BattlegroupsResponse);

            RequestResult <IList <Battlegroup> > result = await warcraftClient.GetBattlegroupsAsync();

            Assert.NotNull(result.Value);
            Assert.NotEmpty(result.Value);
        }