/
Partner-0001
/
Flachscore-parser-tt
Обзор
Документация
Войти
/
Partner-0001
/
Flachscore-parser-tt
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
UnitTestProject1/UnitTest1.cs
34 строки
880 B
odi1n
Добавлены тесты
19 май 2020, 22:35
19 май 2020, 22:35
d89f43a
Код
Авторство
О чём код?
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using FlashScore; using System.Threading.Tasks; using System.Linq; using System.Diagnostics; namespace FlashScore_Unit_Test { [TestClass] public class UnitTest1 { [TestMethod] public async Task Get_All_Math() { FlashScoreApi flashApi = new FlashScoreApi(); var allMatch = await flashApi.GetAllMatchesAsync(); Debug.WriteLine("get all match"); } [TestMethod] public async Task Get_All_Match_Info() { FlashScoreApi flashApi = new FlashScoreApi(); var allMatch = await flashApi.GetAllMatchesAsync(); Debug.WriteLine("get all match"); await allMatch.GetInfoAsync(true, true, true, true); Debug.WriteLine("get all match info"); } } }