@ContinuousIntegrationTest(estimatedDuration = 0.1)
  @Test(timeout = 30000)
  public void testAssertMatrixEqualsZero() {
    final int ITERATIONS = 1000;
    final double EPSILON = 0.000001;
    final int MATRIX_SIZE_BOUND = 100;

    Random random = new Random(4276L);

    for (int i = 0; i < ITERATIONS; i++) {
      DenseMatrix64F matrix =
          new DenseMatrix64F(random.nextInt(MATRIX_SIZE_BOUND), random.nextInt(MATRIX_SIZE_BOUND));

      JUnitTools.assertMatrixEqualsZero(matrix, EPSILON);
      JUnitTools.assertMatrixEqualsZero("testAssertMatrixEqualsZero", matrix, EPSILON);
    }
  }