From 9fcfa5c6d249cea2e0300e9c4247f017ea04b116 Mon Sep 17 00:00:00 2001 From: Robert Davies Date: Mon, 13 Nov 2006 19:52:47 +0000 Subject: [PATCH] remove RangeLimitedMap - will be replaced with B+ Tree git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@474468 13f79535-47bb-0310-9956-ffa450edef68 --- .../kaha/impl/index/RangeLimitedMapTest.java | 127 ------------------ 1 file changed, 127 deletions(-) delete mode 100644 activemq-core/src/test/java/org/apache/activemq/kaha/impl/index/RangeLimitedMapTest.java diff --git a/activemq-core/src/test/java/org/apache/activemq/kaha/impl/index/RangeLimitedMapTest.java b/activemq-core/src/test/java/org/apache/activemq/kaha/impl/index/RangeLimitedMapTest.java deleted file mode 100644 index d4cb491d03..0000000000 --- a/activemq-core/src/test/java/org/apache/activemq/kaha/impl/index/RangeLimitedMapTest.java +++ /dev/null @@ -1,127 +0,0 @@ -/** - * - * 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.activemq.kaha.impl.index; - -import junit.framework.TestCase; - - -/** -* @version $Revision: 1.2 $ -*/ -public class RangeLimitedMapTest extends TestCase{ - - /** - * @throws java.lang.Exception - * @see junit.framework.TestCase#setUp() - */ - protected void setUp() throws Exception{ - super.setUp(); - } - - /** - * @throws java.lang.Exception - * @see junit.framework.TestCase#tearDown() - */ - protected void tearDown() throws Exception{ - super.tearDown(); - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#containsKey(java.lang.Object)}. - */ - public void testContainsKey(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#containsValue(java.lang.Object)}. - */ - public void testContainsValue(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#entrySet()}. - */ - public void testEntrySet(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#get(java.lang.Object)}. - */ - public void testGet(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#isEmpty()}. - */ - public void testIsEmpty(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#keySet()}. - */ - public void testKeySet(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#put(java.lang.Object, java.lang.Object)}. - */ - public void testPut(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#putAll(java.util.Map)}. - */ - public void testPutAll(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#remove(java.lang.Object)}. - */ - public void testRemove(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#size()}. - */ - public void testSize(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#values()}. - */ - public void testValues(){ - - } - - /** - * Test method for {@link org.apache.activemq.kaha.impl.index.RangeLimitedMap#clear()}. - */ - public void testClear(){ - - } -}