public async Task ReadMatrix_GetResult()
        {
            var result = await _matrixEngine.GetMatrixFromCsvAsync();

            Assert.IsTrue(result.Matrix.Length > 0);
        }
Beispiel #2
0
 public async Task <IActionResult> GetFromCsvAsync()
 {
     return(Ok(await _matrixEngine.GetMatrixFromCsvAsync()));
 }