Esempio n. 1
0
 public void ExceptionPlusNull()
 {
     IMathematicalMatrix matrix = MatrixTest.GetTestMatrix();
     matrix.Add(null);
 }
Esempio n. 2
0
        public void ExceptionPlusNull()
        {
            IMathematicalMatrix matrix = MatrixTest.GetTestMatrix();

            Assert.Throws <ArgumentNullException>(() => matrix.Add(null));
        }