}
public void test_poll() {
assertEquals("should return the head", objArray[0], ll.poll());
LinkedList list = new LinkedList();
assertNull("should return 'null' if list is empty", list.poll());
}
public void test_remove() {
for (int i = 0; i < objArray.length; i++) {
assertEquals("should remove the head", objArray[i], ll.remove());