Exemplo n.º 1
0
        public void TestPerformanceOfMatrix()
        {
            Stopwatch stopwatch = new Stopwatch();

            stopwatch.Start();
            matrix.Initialize(@"TestFiles\LargeMatrix");
            matrix.Dispose();
            stopwatch.Stop();
            Assert.IsTrue(stopwatch.ElapsedMilliseconds < 500);
        }
Exemplo n.º 2
0
 public void ReadData()
 {
     matrix.Initialize(@"TestFiles\");
 }