📄 testshortlist.java
字号:
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.==================================================================== */ package org.apache.poi.util;import junit.framework.*;/** * Class to test ShortList * * @author Marc Johnson */public class TestShortList extends TestCase{ /** * Constructor TestShortList * * @param name */ public TestShortList(String name) { super(name); } /** * test the various ShortListconstructors */ public void testConstructors() { ShortList list = new ShortList(); assertTrue(list.isEmpty()); list.add(( short ) 0); list.add(( short ) 1); ShortList list2 = new ShortList(list); assertEquals(list, list2); ShortList list3 = new ShortList(2); assertTrue(list3.isEmpty()); } /** * test the add method */ public void testAdd() { ShortList list = new ShortList(); short[] testArray = { 0, 1, 2, 3, 5 }; for (int j = 0; j < testArray.length; j++) { list.add(testArray[ j ]); } for (int j = 0; j < testArray.length; j++) { assertEquals(testArray[ j ], list.get(j)); } assertEquals(testArray.length, list.size()); // add at the beginning list.add(0, ( short ) -1); assertEquals(( short ) -1, list.get(0)); assertEquals(testArray.length + 1, list.size()); for (int j = 0; j < testArray.length; j++) { assertEquals(testArray[ j ], list.get(j + 1)); } // add in the middle list.add(5, ( short ) 4); assertEquals(( short ) 4, list.get(5)); assertEquals(testArray.length + 2, list.size()); for (int j = 0; j < list.size(); j++) { assertEquals(( short ) (j - 1), list.get(j)); } // add at the end list.add(list.size(), ( short ) 6); assertEquals(testArray.length + 3, list.size()); for (int j = 0; j < list.size(); j++) { assertEquals(( short ) (j - 1), list.get(j)); } // add past end try { list.add(list.size() + 1, ( short ) 8); fail("should have thrown exception"); } catch (IndexOutOfBoundsException e) { // as expected } // test growth list = new ShortList(0); for (short j = 0; j < 1000; j++) { list.add(j); } assertEquals(1000, list.size()); for (short j = 0; j < 1000; j++) { assertEquals(j, list.get(j)); } list = new ShortList(0); for (short j = 0; j < 1000; j++) { list.add(0, j); } assertEquals(1000, list.size()); for (short j = 0; j < 1000; j++) { assertEquals(j, list.get(999 - j)); } } /** * test the addAll method */ public void testAddAll() { ShortList list = new ShortList(); for (short j = 0; j < 5; j++) { list.add(j); } ShortList list2 = new ShortList(0); list2.addAll(list); list2.addAll(list); assertEquals(2 * list.size(), list2.size()); for (short j = 0; j < 5; j++) { assertEquals(list2.get(j), j); assertEquals(list2.get(j + list.size()), j); } ShortList empty = new ShortList(); int limit = list.size(); for (int j = 0; j < limit; j++) { assertTrue(list.addAll(j, empty)); assertEquals(limit, list.size()); } try { list.addAll(limit + 1, empty); fail("should have thrown an exception"); } catch (IndexOutOfBoundsException e) { // as expected } // try add at beginning empty.addAll(0, list); assertEquals(empty, list); // try in the middle empty.addAll(1, list); assertEquals(2 * list.size(), empty.size()); assertEquals(list.get(0), empty.get(0)); assertEquals(list.get(0), empty.get(1)); assertEquals(list.get(1), empty.get(2)); assertEquals(list.get(1), empty.get(6)); assertEquals(list.get(2), empty.get(3)); assertEquals(list.get(2), empty.get(7)); assertEquals(list.get(3), empty.get(4)); assertEquals(list.get(3), empty.get(8)); assertEquals(list.get(4), empty.get(5)); assertEquals(list.get(4), empty.get(9)); // try at the end empty.addAll(empty.size(), list); assertEquals(3 * list.size(), empty.size()); assertEquals(list.get(0), empty.get(0)); assertEquals(list.get(0), empty.get(1)); assertEquals(list.get(0), empty.get(10)); assertEquals(list.get(1), empty.get(2)); assertEquals(list.get(1), empty.get(6)); assertEquals(list.get(1), empty.get(11)); assertEquals(list.get(2), empty.get(3)); assertEquals(list.get(2), empty.get(7)); assertEquals(list.get(2), empty.get(12)); assertEquals(list.get(3), empty.get(4)); assertEquals(list.get(3), empty.get(8)); assertEquals(list.get(3), empty.get(13)); assertEquals(list.get(4), empty.get(5)); assertEquals(list.get(4), empty.get(9)); assertEquals(list.get(4), empty.get(14)); } /** * test the clear method */ public void testClear() { ShortList list = new ShortList(); for (short j = 0; j < 500; j++) { list.add(j); } assertEquals(500, list.size()); list.clear(); assertEquals(0, list.size()); for (short j = 0; j < 500; j++) { list.add(( short ) (j + 1)); } assertEquals(500, list.size()); for (short j = 0; j < 500; j++) { assertEquals(j + 1, list.get(j)); } } /** * test the contains method */ public void testContains() { ShortList list = new ShortList(); for (short j = 0; j < 1000; j += 2) { list.add(j); } for (short j = 0; j < 1000; j++) { if (j % 2 == 0) { assertTrue(list.contains(j)); } else { assertTrue(!list.contains(j)); } } } /** * test the containsAll method */ public void testContainsAll() { ShortList list = new ShortList(); assertTrue(list.containsAll(list)); for (short j = 0; j < 10; j++) { list.add(j); } ShortList list2 = new ShortList(list); assertTrue(list2.containsAll(list)); assertTrue(list.containsAll(list2)); list2.add(( short ) 10); assertTrue(list2.containsAll(list)); assertTrue(!list.containsAll(list2)); list.add(( short ) 11); assertTrue(!list2.containsAll(list)); assertTrue(!list.containsAll(list2)); } /** * test the equals method */ public void testEquals() { ShortList list = new ShortList(); assertEquals(list, list); assertTrue(!list.equals(null)); ShortList list2 = new ShortList(200); assertEquals(list, list2); assertEquals(list2, list); assertEquals(list.hashCode(), list2.hashCode()); list.add(( short ) 0); list.add(( short ) 1); list2.add(( short ) 1); list2.add(( short ) 0); assertTrue(!list.equals(list2)); list2.removeValue(( short ) 1); list2.add(( short ) 1); assertEquals(list, list2); assertEquals(list2, list); list2.add(( short ) 2); assertTrue(!list.equals(list2)); assertTrue(!list2.equals(list)); } /** * test the get method */ public void testGet() { ShortList list = new ShortList(); for (short j = 0; j < 1000; j++) { list.add(j); } for (short j = 0; j < 1001; j++) { try
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -