示例#1
0
文件: Minus.cs 项目: cxgr/ngenerics
 public void ExceptionInterfaceMinusNull()
 {
     IMathematicalMatrix matrix = MatrixTest.GetTestMatrix();
     matrix.Subtract(null);
 }
示例#2
0
        public void ExceptionInterfaceMinusNull()
        {
            IMathematicalMatrix matrix = MatrixTest.GetTestMatrix();

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