| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import org.junit.Ignore;
- import org.junit.Test;
-
- import java.util.NoSuchElementException;
-
- import static org.hamcrest.CoreMatchers.*;
- import static org.junit.Assert.*;
-
- public class SimpleLinkedListTest {
-
-
- @Test
- public void aNewListIsEmpty() {
- SimpleLinkedList list = new SimpleLinkedList();
- assertThat(list.size(), is(0));
- }
-
- @Ignore
- @Test
- public void canCreateFromArray() {
- Integer[] values = new Integer[]{1, 2, 3};
- SimpleLinkedList list = new SimpleLinkedList(values);
- assertThat(list.size(), is(3));
- }
-
- @Ignore
- @Test(expected = NoSuchElementException.class)
- public void popOnEmptyListWillThrow() {
- SimpleLinkedList list = new SimpleLinkedList();
- list.pop();
- }
-
- @Ignore
- @Test
- public void popReturnsLastAddedElement() {
- SimpleLinkedList list = new SimpleLinkedList();
- list.push(9);
- list.push(8);
- assertThat(list.size(), is(2));
- assertThat(list.pop(), is(8));
- assertThat(list.pop(), is(9));
- assertThat(list.size(), is(0));
- }
-
- @Ignore
- @Test
- public void reverseReversesList() {
- SimpleLinkedList list = new SimpleLinkedList();
- list.push(9);
- list.push(8);
- list.push(7);
- list.push(6);
- list.push(5);
- list.reverse();
- assertThat(list.pop(), is(9));
- assertThat(list.pop(), is(8));
- assertThat(list.pop(), is(7));
- assertThat(list.pop(), is(6));
- assertThat(list.pop(), is(5));
- }
-
- @Ignore
- @Test
- public void canReturnListAsArray() {
- SimpleLinkedList list = new SimpleLinkedList();
- list.push(9);
- list.push(8);
- list.push(7);
- list.push(6);
- list.push(5);
- Integer[] expected = {5, 6, 7, 8, 9};
- assertEquals(list.asArray(Integer.class), expected);
- }
-
- @Ignore
- @Test
- public void canReturnEmptyListAsEmptyArray() {
- SimpleLinkedList list = new SimpleLinkedList();
- Object[] expected = {};
- assertEquals(list.asArray(Object.class), expected);
- }
-
- }
|