public void GetTest(int[] array, int idx, int ex) { LinkedListProject.LinkedList lList = new LinkedListProject.LinkedList(); if (array.Length == 0 || idx < 0 || idx > array.Length) { Assert.Throws <Exception>(() => lList.Get(idx)); } else { lList.AddLast(array); int actual = lList.Get(idx); Assert.AreEqual(ex, actual); } }