@Test(timeout = 500)
 public void testSlowFactorial5() throws Exception {
   final Math math = new Math();
   assertThat("Addition", math.slowFactorial(5), is(BigInteger.valueOf(120)));
 }