예제 #1
0
        public async Task GetAtheleteByIdAsync_ReturnsSuccessfullyAsync()
        {
            var client = new GamesApiClient();

            var result = await client.GetAtheleteByIdAsync("455950").ConfigureAwait(false);

            Assert.NotNull(result);
            Assert.True(result.CompetitorId > 0);
        }
 public void SetUp()
 {
     GamesClient = new GamesApiClient(new Serializer());
 }