コード例 #1
0
 @Test(expected = UnsupportedOperationException.class)
 public void testAdd_WithIndex() {
   int i = randomInt();
   list.add(i, i + 1);
 }
コード例 #2
0
 @Test(expected = UnsupportedOperationException.class)
 public void testAdd() {
   list.add(randomInt());
 }