@ContinuousIntegrationTest(estimatedDuration = 0.0)
  @Test(timeout = 30000)
  public void testAssertMatrix3fEquals() {
    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++) {
      Matrix3f matrix1 = new Matrix3f(randomFloatArray(random1, 9));
      Matrix3f matrix2 = new Matrix3f(randomFloatArray(random2, 9));

      JUnitTools.assertMatrix3fEquals("testAssertMatrix3fEquals", matrix1, matrix2, EPSILON);
    }
  }