Exemplo n.º 1
0
        public async Task GetMatrix_GetResult()
        {
            var result = await _matrixEngine.GetMatrixAsync();

            Assert.IsTrue(result.Matrix.Length > 0);
        }
Exemplo n.º 2
0
 public async Task <IActionResult> GetGeneratedAsync()
 {
     return(Ok(await _matrixEngine.GetMatrixAsync()));
 }