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

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