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

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

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

      JUnitTools.assertMatrix4dEquals("testAssertMatrix4dEquals", matrix1, matrix2, EPSILON);
    }
  }