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

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

    for (int i = 0; i < ITERATIONS; i++) {
      Vector4f vector1 = new Vector4f(randomFloatArray(random1, 4));
      Vector4f vector2 = new Vector4f(randomFloatArray(random2, 4));

      JUnitTools.assertVector4fEquals("testAssertVector4dEquals", vector1, vector2, EPSILON);
    }
  }