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

            RequestResult <IList <Boss> > result = await warcraftClient.GetBossesAsync();

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