예제 #1
0
파일: UnitTest1.cs 프로젝트: box90/RCW2019
        public async System.Threading.Tasks.Task TestStartAsync()
        {
            MatchesRepository rep = new MatchesRepository();
            var match             = await rep.StartMatch(1);

            Assert.IsTrue(match);
        }
예제 #2
0
 public static async Task <bool> StartMatchAsync(int id)
 {
     return(await repo.StartMatch(id));
 }