Esempio n. 1
0
        public void FileInfoList_SortBySize()
        {
            FileInfoList list = new FileInfoList(files);

            list.SortByLength(false);

            for (int i = 0; i < list.Count - 1; i++)
            {
                Assert.IsTrue(list[i].Length >= list[i + 1].Length);
            }

            list.SortByLength(true);

            for (int i = 0; i < list.Count - 1; i++)
            {
                Assert.IsTrue(list[i].Length <= list[i + 1].Length);
            }
        }