public async void GetItemSetAsync_Gets_Item_Set()
        {
            IWarcraftClient warcraftClient = BuildMockClient(
                requestUri: "https://us.api.blizzard.com/wow/item/set/1060?locale=en_US",
                responseContent: Resources.ItemSetResponse);

            RequestResult <ItemSet> result = await warcraftClient.GetItemSetAsync(1060);

            Assert.NotNull(result.Value);
        }