import org.junit.Test;
import static org.junit.Assert.*;

public class ListTest
{
	@Test
	public void testList() {
		List l = new List();
		l.prepend(2);
		l.prepend(1);
		assertEquals(1, l.head.val);
		assertEquals(2, l.head.next.val);
	}
}

