@Test
 public void itShouldReturn256() throws Exception {
   assertThat(
       primeFactory.computePrimeDivisors(256),
       is(
           new Integer[] {
             2, 2, 2, 2, 2, 2, 2, 2,
           }));
 }