Exemple #1
0
        public async Task Test2()
        {
            IATGClientService service = new ATGClientService();
            var race = await service.GetRaceDay(DateTime.Parse("2020-02-15"));

            Assert.IsNotNull(race);
            Assert.Pass();
        }
Exemple #2
0
        public async Task Test1()
        {
            //var atgService = new Travsystem.ATGService();
            //var race = atgService.
            IATGClientService service = new ATGClientService();
            var race = await service.GetRace("V75_2020-02-22_8_5");

            Assert.IsNotNull(race);
            Assert.Pass();
        }