mirror of https://github.com/apache/activemq.git
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
This commit is contained in:
parent
6b5840f8c1
commit
9fcfa5c6d2
|
@ -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(){
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue