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

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