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

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

    for (int i = 0; i < ITERATIONS; i++) {
      Point3d point1 = new Point3d(randomDoubleArray(random1, 3));
      Point3d point2 = new Point3d(randomDoubleArray(random2, 3));

      JUnitTools.assertTuple3dEquals(point1, point2, EPSILON);
      JUnitTools.assertTuple3dEquals("testAssertPoint3dEquals", point1, point2, EPSILON);

      JUnitTools.assertPoint3dEquals("testAssertPoint3dEquals", point1, point2, EPSILON);
    }
  }