Example #1
0
        private static async Task <IEnumerable <FplPlayer> > GetPlayersAsync(HttpClient http)
        {
            var client  = new FplPlayerClient(http);
            var players = await client.GetAllPlayers();

            return(players);
        }
 public TestContext()
 {
     Sut = new FplPlayerClient(new HttpClient());
 }