* <code>toArray()</code>,
* <code>set(int index, Object o)</code> methods.
*/
@Test
public void testMyList_ToArray() {
myList = new MyLinkedList();
Object[] testStrings = new Object[]{"1", "2", "3", "4", "5"};
for (Object string : testStrings) {
myList.add(string);
}
assertArrayEquals(testStrings, myList.toArray());