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

            RequestResult <IList <Mount> > result = await warcraftClient.GetMountsAsync();

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