예제 #1
0
        public async Task GetQuestCategoriesIndexAsync_Gets_QuestCategoriesIndex()
        {
            IQuestApi warcraftClient = ClientFactory.BuildClient();
            RequestResult <QuestCategoriesIndex> result = await warcraftClient.GetQuestCategoriesIndexAsync("static-us");

            Assert.NotNull(result.Value);
        }
예제 #2
0
    public async Task GetQuestCategoriesIndexAsync_Gets_QuestCategoriesIndex()
    {
        IQuestApi warcraftClient = ClientFactory.BuildClient();

        RequestResult <QuestCategoriesIndex> result = await warcraftClient.GetQuestCategoriesIndexAsync("static-us");

        await result.Should().BeSuccessfulRequest()
        .BeEquivalentToBlizzardResponseAsync("https://us.api.blizzard.com/data/wow/quest/category/index?namespace=static-us&locale=en_US");
    }
예제 #3
0
        public async Task GetQuestCategoriesIndexAsync_Gets_QuestCategoriesIndex()
        {
            IQuestApi warcraftClient = ClientFactory.BuildMockClient(
                requestUri: "https://us.api.blizzard.com/data/wow/quest/category/index?namespace=static-us&locale=en_US",
                responseContent: Resources.QuestCategoriesIndexResponse);

            RequestResult <QuestCategoriesIndex> result = await warcraftClient.GetQuestCategoriesIndexAsync("static-us");

            Assert.NotNull(result.Value);
        }