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

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

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

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