public void nodeNameExists()
 {
     SinglyLinkedList list = new SinglyLinkedList();
     list.AddLast("foo");
     list.AddLast("bar");
     bool expected = true;
     Assert.AreEqual(expected, list.NodeNameExists("foo"));
 }