public void testGet() throws Exception {
   l.add(5);
   l.add(5);
   l.add(7);
   assertEquals(l.get(0), l.get(1));
 }
 public void testAdd() throws Exception {
   l.add(5);
   assertTrue(l.contains(5));
 }
 public void testIsEmpty() throws Exception {
   l.add(1);
   assertFalse(l.isEmpty());
 }
 public void testContains() throws Exception {
   l.add(2);
   assertTrue(l.contains(2));
 }
 public void testSize() throws Exception {
   l.add(1);
   assertEquals(l.size(), 1);
 }