< prev index next >

test/java/util/Arrays/Correct.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 4726380 8037097
  27  * @summary Check that different sorts give equivalent results.
  28  * @run testng Correct

  29  */
  30 
  31 import java.util.*;
  32 
  33 import org.testng.annotations.Test;
  34 import org.testng.annotations.DataProvider;
  35 import static org.testng.Assert.fail;
  36 import static org.testng.Assert.assertEquals;
  37 
  38 public class Correct {
  39 
  40     static final Random rnd = new Random();
  41     static final int ITERATIONS = 1000;
  42     static final int TEST_SIZE = 1000;
  43 
  44     @Test
  45     public void testDefaultSort() {
  46         for (int i=0; i<ITERATIONS; i++) {
  47             int size = rnd.nextInt(TEST_SIZE) + 1;
  48             Integer[] array1 = getIntegerArray(size);




   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 4726380 8037097
  27  * @summary Check that different sorts give equivalent results.
  28  * @run testng Correct
  29  * @key randomness
  30  */
  31 
  32 import java.util.*;
  33 
  34 import org.testng.annotations.Test;
  35 import org.testng.annotations.DataProvider;
  36 import static org.testng.Assert.fail;
  37 import static org.testng.Assert.assertEquals;
  38 
  39 public class Correct {
  40 
  41     static final Random rnd = new Random();
  42     static final int ITERATIONS = 1000;
  43     static final int TEST_SIZE = 1000;
  44 
  45     @Test
  46     public void testDefaultSort() {
  47         for (int i=0; i<ITERATIONS; i++) {
  48             int size = rnd.nextInt(TEST_SIZE) + 1;
  49             Integer[] array1 = getIntegerArray(size);


< prev index next >