public async Task ReturnsAllAthletes()
        {
            var response = await _client.GetAllAthletes();

            response.EnsureSuccessStatusCode();

            var vm = await Utilities.GetResponseContent <List <ApplicationUser> >(response);

            Assert.IsAssignableFrom <List <ApplicationUser> >(vm);
            Assert.NotEmpty(vm);
        }