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

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

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

      JUnitTools.assertMatrix4fEquals("testAssertMatrix4fEquals", matrix1, matrix2, EPSILON);
    }
  }