NO-JIRA update RandomUtil.randomInterval to deal with (max==min)

This commit is contained in:
Clebert Suconic 2020-08-03 10:36:39 -04:00
parent 3c3b7b66cf
commit df2f48a481
2 changed files with 42 additions and 0 deletions

View File

@ -79,10 +79,13 @@ public class RandomUtil {
}
public static int randomInterval(final int min, final int max) {
if (min == max) return max;
return min + random.nextInt(max - min);
}
public static int randomMax(final int max) {
assert max > 0;
int value = randomPositiveInt() % max;
if (value == 0) {

View File

@ -0,0 +1,39 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.artemis.tests.unit.core.util;
import org.apache.activemq.artemis.utils.RandomUtil;
import org.junit.Assert;
import org.junit.Test;
public class RandomUtilTest {
@Test
public void testInterval() {
int i = RandomUtil.randomInterval(0, 1000);
Assert.assertTrue(i <= 1000);
Assert.assertTrue(i >= 0);
i = RandomUtil.randomInterval(0, 0);
Assert.assertEquals(0, i);
i = RandomUtil.randomInterval(10, 10);
Assert.assertEquals(10, i);
}
}