Example #1
0
        public async Task TestLoadGameById()
        {
            // Arrange
            string str = string.Empty;

            // Act
            string actual = await ScoreCalculations.GetGameByID(int.MaxValue);

            // Assert
            Assert.AreEqual(str, actual);
        }
Example #2
0
 public async Task <string> LoadGameById(int Id)
 {
     return(await ScoreCalculations.GetGameByID(Id));
 }