Enable the bulk tests in TestArrayStack,
TestFastArrayList, TestFastArrayList1. Submitted by: Paul Jack ( pjack at sfaf dot org ) git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130733 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
831f19ee73
commit
f96c2305fa
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestArrayStack.java,v 1.6 2002/02/26 17:31:51 morgand Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestArrayStack.java,v 1.7 2002/06/21 03:33:28 mas Exp $
|
||||||
* $Revision: 1.6 $
|
* $Revision: 1.7 $
|
||||||
* $Date: 2002/02/26 17:31:51 $
|
* $Date: 2002/06/21 03:33:28 $
|
||||||
*
|
*
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
|
@ -66,7 +66,7 @@ import java.util.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Craig McClanahan
|
* @author Craig McClanahan
|
||||||
* @version $Id: TestArrayStack.java,v 1.6 2002/02/26 17:31:51 morgand Exp $
|
* @version $Id: TestArrayStack.java,v 1.7 2002/06/21 03:33:28 mas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class TestArrayStack extends TestArrayList {
|
public class TestArrayStack extends TestArrayList {
|
||||||
|
@ -76,7 +76,7 @@ public class TestArrayStack extends TestArrayList {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Test suite() {
|
public static Test suite() {
|
||||||
return new TestSuite(TestArrayStack.class);
|
return BulkTest.makeSuite(TestArrayStack.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestFastArrayList.java,v 1.4 2002/02/26 17:31:51 morgand Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestFastArrayList.java,v 1.5 2002/06/21 03:33:28 mas Exp $
|
||||||
* $Revision: 1.4 $
|
* $Revision: 1.5 $
|
||||||
* $Date: 2002/02/26 17:31:51 $
|
* $Date: 2002/06/21 03:33:28 $
|
||||||
*
|
*
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
|
@ -69,7 +69,7 @@ import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
|
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
|
||||||
* @version $Id: TestFastArrayList.java,v 1.4 2002/02/26 17:31:51 morgand Exp $
|
* @version $Id: TestFastArrayList.java,v 1.5 2002/06/21 03:33:28 mas Exp $
|
||||||
*/
|
*/
|
||||||
public class TestFastArrayList extends TestArrayList
|
public class TestFastArrayList extends TestArrayList
|
||||||
{
|
{
|
||||||
|
@ -80,7 +80,7 @@ public class TestFastArrayList extends TestArrayList
|
||||||
|
|
||||||
public static Test suite()
|
public static Test suite()
|
||||||
{
|
{
|
||||||
return new TestSuite(TestFastArrayList.class);
|
return BulkTest.makeSuite(TestFastArrayList.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String args[])
|
public static void main(String args[])
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestFastArrayList1.java,v 1.1 2001/04/21 12:22:30 craigmcc Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestFastArrayList1.java,v 1.2 2002/06/21 03:33:28 mas Exp $
|
||||||
* $Revision: 1.1 $
|
* $Revision: 1.2 $
|
||||||
* $Date: 2001/04/21 12:22:30 $
|
* $Date: 2002/06/21 03:33:28 $
|
||||||
*
|
*
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
|
@ -71,7 +71,7 @@ import java.util.List;
|
||||||
* Test FastArrayList implementation in <strong>fast</strong> mode.
|
* Test FastArrayList implementation in <strong>fast</strong> mode.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
|
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
|
||||||
* @version $Id: TestFastArrayList1.java,v 1.1 2001/04/21 12:22:30 craigmcc Exp $
|
* @version $Id: TestFastArrayList1.java,v 1.2 2002/06/21 03:33:28 mas Exp $
|
||||||
*/
|
*/
|
||||||
public class TestFastArrayList1 extends TestFastArrayList
|
public class TestFastArrayList1 extends TestFastArrayList
|
||||||
{
|
{
|
||||||
|
@ -82,7 +82,7 @@ public class TestFastArrayList1 extends TestFastArrayList
|
||||||
|
|
||||||
public static Test suite()
|
public static Test suite()
|
||||||
{
|
{
|
||||||
return new TestSuite(TestFastArrayList1.class);
|
return BulkTest.makeSuite(TestFastArrayList1.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String args[])
|
public static void main(String args[])
|
||||||
|
|
Loading…
Reference in New Issue