Solve deprecations, fix bug in test
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131450 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8d031df1a0
commit
7801d45353
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBagUtils.java,v 1.4 2003/11/16 00:05:47 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBagUtils.java,v 1.5 2003/12/24 17:31:41 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -59,19 +59,21 @@ package org.apache.commons.collections;
|
||||||
|
|
||||||
import junit.framework.Test;
|
import junit.framework.Test;
|
||||||
|
|
||||||
|
import org.apache.commons.collections.bag.HashBag;
|
||||||
import org.apache.commons.collections.bag.PredicatedBag;
|
import org.apache.commons.collections.bag.PredicatedBag;
|
||||||
import org.apache.commons.collections.bag.PredicatedSortedBag;
|
import org.apache.commons.collections.bag.PredicatedSortedBag;
|
||||||
import org.apache.commons.collections.bag.SynchronizedBag;
|
import org.apache.commons.collections.bag.SynchronizedBag;
|
||||||
import org.apache.commons.collections.bag.SynchronizedSortedBag;
|
import org.apache.commons.collections.bag.SynchronizedSortedBag;
|
||||||
import org.apache.commons.collections.bag.TransformedBag;
|
import org.apache.commons.collections.bag.TransformedBag;
|
||||||
import org.apache.commons.collections.bag.TransformedSortedBag;
|
import org.apache.commons.collections.bag.TransformedSortedBag;
|
||||||
|
import org.apache.commons.collections.bag.TreeBag;
|
||||||
import org.apache.commons.collections.bag.UnmodifiableBag;
|
import org.apache.commons.collections.bag.UnmodifiableBag;
|
||||||
import org.apache.commons.collections.bag.UnmodifiableSortedBag;
|
import org.apache.commons.collections.bag.UnmodifiableSortedBag;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests for BagUtils factory methods.
|
* Tests for BagUtils factory methods.
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.4 $ $Date: 2003/11/16 00:05:47 $
|
* @version $Revision: 1.5 $ $Date: 2003/12/24 17:31:41 $
|
||||||
*
|
*
|
||||||
* @author Phil Steitz
|
* @author Phil Steitz
|
||||||
*/
|
*/
|
||||||
|
@ -217,7 +219,7 @@ public class TestBagUtils extends BulkTest {
|
||||||
public void testTypedSortedBag() {
|
public void testTypedSortedBag() {
|
||||||
Bag bag = BagUtils.typedSortedBag(new TreeBag(), stringClass);
|
Bag bag = BagUtils.typedSortedBag(new TreeBag(), stringClass);
|
||||||
assertTrue("Returned object should be a TypedSortedBag.",
|
assertTrue("Returned object should be a TypedSortedBag.",
|
||||||
bag instanceof PredicatedBag);
|
bag instanceof PredicatedSortedBag);
|
||||||
try {
|
try {
|
||||||
bag = BagUtils.typedSortedBag(null, stringClass);
|
bag = BagUtils.typedSortedBag(null, stringClass);
|
||||||
fail("Expecting IllegalArgumentException for null bag.");
|
fail("Expecting IllegalArgumentException for null bag.");
|
||||||
|
|
Loading…
Reference in New Issue