@Test(expected = UnsupportedOperationException.class)
 public void testRemove_WithIndex() {
   list.remove(randomInt());
 }
 @Test(expected = UnsupportedOperationException.class)
 public void testRemove() {
   list.remove(new Integer(randomInt()));
 }