public void InsertAtIndex() { SimpleLinkedList<int> list = new SimpleLinkedList<int>(); list.Add(3); list.Add(5); list.Add(7); list.Insert(1, 4); list.ShouldContain(4); }
public void InsertThrowException() { SimpleLinkedList<int> list = new SimpleLinkedList<int>(); list.Add(3); list.Add(5); list.Add(7); list.Insert(-1, 4); list.ShouldContain(4); }
public void ShouldSupportAddition() { SimpleLinkedList<int> list = new SimpleLinkedList<int>(); list.Add(3); list.ShouldContain(3); list.Add(5); list.ShouldContain(5); }