< prev index next >

test/java/util/BitSet/ImportExport.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 5037068
  27  * @summary Test import/export constructors and methods
  28  * @author Martin Buchholz

  29  */
  30 
  31 import java.nio.*;
  32 import java.util.*;
  33 
  34 public class ImportExport {
  35     final Random rnd = new Random();
  36 
  37     void equal(byte[] x, byte[] y) {
  38         check(Arrays.equals(x, y));
  39     }
  40 
  41     void equal(long[] x, long[] y) {
  42         check(Arrays.equals(x, y));
  43     }
  44 
  45     void equal(byte[] bytes, BitSet s) {
  46         equal(s, BitSet.valueOf(bytes));
  47         equal(s, BitSet.valueOf(ByteBuffer.wrap(bytes)));
  48         equal(s, BitSet.valueOf(




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 5037068
  27  * @summary Test import/export constructors and methods
  28  * @author Martin Buchholz
  29  * @key randomness
  30  */
  31 
  32 import java.nio.*;
  33 import java.util.*;
  34 
  35 public class ImportExport {
  36     final Random rnd = new Random();
  37 
  38     void equal(byte[] x, byte[] y) {
  39         check(Arrays.equals(x, y));
  40     }
  41 
  42     void equal(long[] x, long[] y) {
  43         check(Arrays.equals(x, y));
  44     }
  45 
  46     void equal(byte[] bytes, BitSet s) {
  47         equal(s, BitSet.valueOf(bytes));
  48         equal(s, BitSet.valueOf(ByteBuffer.wrap(bytes)));
  49         equal(s, BitSet.valueOf(


< prev index next >