@Test
 void containsTest() {
   final HopscotchCollection<Integer> hopscotchCollection = new HopscotchCollection<>(testVals);
   Assert.assertTrue(hopscotchCollection.containsAll(testVals));
   Assert.assertFalse(hopscotchCollection.contains(notInTestVals));
 }