コード例 #1
0
 @Test(expected = UnsupportedOperationException.class)
 public void testRemove_WithIndex() {
   list.remove(randomInt());
 }
コード例 #2
0
 @Test(expected = UnsupportedOperationException.class)
 public void testRemove() {
   list.remove(new Integer(randomInt()));
 }