public static void testVerifySame()
{
double dataBase[][] = {{1.0,2.0},{3.0,4.0}};
double dataTooManyRows[][] = {{1.0,2.0},{3.0,4.0},{5.0,6.0}};
double dataTooManyCols[][] = {{1.0,2.0,3.0},{4.0,5.0,6.0}};
Matrix base = new Matrix(dataBase);
Matrix tooManyRows = new Matrix(dataTooManyRows);
Matrix tooManyCols = new Matrix(dataTooManyCols);
MatrixMath.add(base, base);
try
{
MatrixMath.add(base, tooManyRows);
TestCase.assertFalse(true);