📄 testarraylist.cs
字号:
/* * TestArrayList.cs - Tests for the "Boolean" class. * * Copyright (C) 2001 Southern Storm Software, Pty Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */using CSUnit;using System;using System.Collections;public class TestArrayList : TestCase{ // Constructor. public TestArrayList(String name) : base(name) { // Nothing to do here. } // Set up for the tests. protected override void Setup() { // Nothing to do here. } // Clean up after the tests. protected override void Cleanup() { // Nothing to do here. } // Test insertion into an array list. public void TestArrayListInsert() { int posn; ArrayList list = new ArrayList(); for(posn = 0; posn < 100; ++posn) { AssertEquals(list.Count, posn); list.Insert(posn / 2, posn.ToString()); AssertEquals(list.Count, posn + 1); AssertEquals(((String)(list[posn / 2])), posn.ToString()); } } // Test adding to an array list. public void TestArrayListAdd() { int posn; ArrayList list = new ArrayList(); for(posn = 0; posn < 100; ++posn) { AssertEquals(list.Count, posn); list.Add(posn.ToString()); AssertEquals(list.Count, posn + 1); AssertEquals(((String)(list[posn])), posn.ToString()); } } // Test clearing an array list. public void TestArrayListClear() { ArrayList list = new ArrayList(); int posn; // Clear an empty list. AssertEquals(list.Count, 0); list.Clear(); AssertEquals(list.Count, 0); // Clear a list with 1 element. list.Add("element"); AssertEquals(list.Count, 1); list.Clear(); AssertEquals(list.Count, 0); // Clear a list with 10 elements. for(posn = 0; posn < 10; ++posn) { list.Add(posn); } AssertEquals(list.Count, 10); list.Clear(); AssertEquals(list.Count, 0); // Attempt to clear a read-only list. list = ArrayList.ReadOnly(list); try { list.Clear(); // We should never get here! Fail(); } catch(NotSupportedException) { // The test was successfull if we get here. } } // Test sorting an array list. public void TestArrayListSort() { ArrayList list = new ArrayList(); list.Add(98); list.Add(45); list.Sort(); AssertEquals("Sort (1)", 45, list[0]); AssertEquals("Sort (2)", 98, list[1]); list = new ArrayList(); list.Add(98); list.Add(0); list.Add(45); list.Sort(); AssertEquals("Sort (3)", 0, list[0]); AssertEquals("Sort (4)", 45, list[1]); AssertEquals("Sort (5)", 98, list[2]); list = new ArrayList(); list.Add(97); list.Add(104); list.Add(98); list.Sort(); AssertEquals("Sort (6)", 97, list[0]); AssertEquals("Sort (7)", 98, list[1]); AssertEquals("Sort (8)", 104, list[2]); }}; // class TestArrayList
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -