public void TestPerformanceOfMatrix() { Stopwatch stopwatch = new Stopwatch(); stopwatch.Start(); matrix.Initialize(@"TestFiles\LargeMatrix"); matrix.Dispose(); stopwatch.Stop(); Assert.IsTrue(stopwatch.ElapsedMilliseconds < 500); }
public void ReadData() { matrix.Initialize(@"TestFiles\"); }