Exemplo n.º 1
0
        public async Task GetMatchTimelineAsyncTest()
        {
            IRiotClient   client   = new RiotClient();
            const long    matchId  = 2488397591L;
            MatchTimeline timeline = await client.GetMatchTimelineAsync(matchId);

            Assert.That(timeline, Is.Not.Null);
            Assert.That(timeline.Frames, Is.Not.Null.And.Not.Empty);
        }