@ContinuousIntegrationTest(estimatedDuration = 0.0)
  @Test(timeout = 30000)
  public void testAssertMatrix3dEquals() {
    final int ITERATIONS = 1000;
    final double EPSILON = 0.000001;

    Random random1 = new Random(4277L);
    Random random2 = new Random(4277L);

    for (int i = 0; i < ITERATIONS; i++) {
      Matrix3d matrix1 = new Matrix3d(randomDoubleArray(random1, 9));
      Matrix3d matrix2 = new Matrix3d(randomDoubleArray(random2, 9));

      JUnitTools.assertMatrix3dEquals("testAssertMatrix3dEquals", matrix1, matrix2, EPSILON);
    }
  }