public async Task Show() { var authorId = 4470846; var followInfo = await AuthorsFollowingClient.Follow(authorId); // arrange following var responseInfo = await AuthorsFollowingClient.Show(followInfo.Id); await AuthorsFollowingClient.Unfollow(followInfo.Id); // cleanup following Assert.NotNull(responseInfo); Assert.Equal(followInfo.Id, responseInfo.Id); Assert.Equal(followInfo.Author.Id, responseInfo.Author.Id); Assert.Equal(followInfo.User.Id, responseInfo.User.Id); }
public async Task ShowNotExistingInfo() { var responseInfo = await AuthorsFollowingClient.Show(51523178); Assert.Null(responseInfo); }