BitSetTest.java 782 Bytes
Newer Older
Bill Lynch's avatar
Bill Lynch committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/**
 * $RCSfile$
 * $Revision$
 * $Date$
 *
 * Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved.
 *
 * This software is the proprietary information of CoolServlets, Inc.
 * Use is subject to license terms.
 */
package org.jivesoftware.util;

import junit.framework.TestCase;

import java.util.BitSet;

/**
 * Test the standard with an emphasis on making it work with our scheduler.
 *
 * @author Iain Shigeoka
 */
public class BitSetTest extends TestCase {

    /**
     * Create a test case with a given name.
     *
     * @param name The name of the test
     */
    public BitSetTest (String name){
        super(name);
    }

    /**
     * Test storage and retrieval of a bit set
     */
    public void testStorage(){
        BitSet bits = new BitSet();
    }
}