static void Main(string[] args) { AList2O list = new AList2O(); int[] z = { 5, 254, 1, 6, 4 }; list.Init(z); list.ToArray(); Console.ReadKey(); }
public void GetMinTest(string[] array, string result) { lst.Init(array); Assert.AreEqual(result, lst.Min()); }