@Test
 public final void whenIntArrayAreUsedThenGetMaxValue() {
   FindTopValues x = new FindTopValuesImpl();
   int maxvalue = x.findMaxValue(anyOldOrderValues);
   Assert.assertEquals(999, maxvalue);
 }