Exemplo n.º 1
0
        public void GetPlayersbyTeam()
        {
            var client   = new SportDataLOLClient();
            var response = client.PlayerServices.GetPlayersbyTeam(100000001);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 2
0
        public void GetActiveMemberships()
        {
            var client   = new SportDataLOLClient();
            var response = client.MembershipServices.GetActiveMemberships();

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 3
0
        public void GetHistoricalMembershipsByTeam()
        {
            var client   = new SportDataLOLClient();
            var response = client.MembershipServices.GetHistoricalMembershipsByTeam(100000001);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 4
0
        public void GetSpells()
        {
            var client   = new SportDataLOLClient();
            var response = client.SpellServices.GetSpells();

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 5
0
        public void GetChampions()
        {
            var client   = new SportDataLOLClient();
            var response = client.ChampionServices.GetChampions();

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 6
0
        public void GetCompetition()
        {
            var client   = new SportDataLOLClient();
            var response = client.CompetitionServices.GetCompetition();

            Assert.IsTrue(response.Count > 1);
        }
Exemplo n.º 7
0
        public void GetBoxScoresbyGameId()
        {
            var client   = new SportDataLOLClient();
            var response = client.BoxScoreServices.GetBoxScoresbyGameId(100002649);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 8
0
        public void GetSchedule()
        {
            var client   = new SportDataLOLClient();
            var response = client.ScheduleServices.GetSchedule(100000138);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 9
0
        public void GetStandings()
        {
            var client   = new SportDataLOLClient();
            var response = client.StandingsServices.GetStandings(100000138);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 10
0
        public void GetSeasonTeams()
        {
            var client   = new SportDataLOLClient();
            var response = client.SeasonServices.GetSeasonTeams(100000023);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 11
0
        public void GetAreas()
        {
            var client   = new SportDataLOLClient();
            var response = client.AreasServices.GetAreas();

            Assert.IsTrue(response.Count > 1);
        }
Exemplo n.º 12
0
        public void GetProjectedPlayerGameStatsbyDateAndPlayerId()
        {
            var      client   = new SportDataLOLClient();
            DateTime myDate   = Convert.ToDateTime("2019-01-20");
            var      response = client.ProjectionServices.GetProjectedPlayerGameStatsbyDateAndPlayerId(myDate, 100001500);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 13
0
        public void GetBoxScoresbyDate()
        {
            var      client   = new SportDataLOLClient();
            DateTime myDate   = Convert.ToDateTime("2019-01-20");
            var      response = client.BoxScoreServices.GetBoxScoresbyDate(myDate);

            Assert.IsTrue(response.Count >= 1);
        }
Exemplo n.º 14
0
        public void GetGamebyDate()
        {
            var      client   = new SportDataLOLClient();
            DateTime myDate   = Convert.ToDateTime("2018-01-13");
            var      response = client.GameServices.GetGamebyDate(myDate);

            Assert.IsTrue(response.Count >= 1);
        }