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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
/*
* Copyright (C) 2012 The Guava Authors
*
* Licensed 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 com.google.common.math;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.annotations.GwtCompatible;
import java.math.BigInteger;
import java.math.RoundingMode;
import junit.framework.TestCase;
/**
* Unit tests for {@link MathPreconditions}.
*
* @author Ben Yu
*/
@GwtCompatible
public class MathPreconditionsTest extends TestCase {
public void testCheckPositive_zeroInt() {
try {
MathPreconditions.checkPositive("int", 0);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_maxInt() {
MathPreconditions.checkPositive("int", Integer.MAX_VALUE);
}
public void testCheckPositive_minInt() {
try {
MathPreconditions.checkPositive("int", Integer.MIN_VALUE);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_positiveInt() {
MathPreconditions.checkPositive("int", 1);
}
public void testCheckPositive_negativeInt() {
try {
MathPreconditions.checkPositive("int", -1);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_zeroLong() {
try {
MathPreconditions.checkPositive("long", 0L);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_maxLong() {
MathPreconditions.checkPositive("long", Long.MAX_VALUE);
}
public void testCheckPositive_minLong() {
try {
MathPreconditions.checkPositive("long", Long.MIN_VALUE);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_positiveLong() {
MathPreconditions.checkPositive("long", 1);
}
public void testCheckPositive_negativeLong() {
try {
MathPreconditions.checkPositive("long", -1L);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_zeroBigInteger() {
try {
MathPreconditions.checkPositive("BigInteger", BigInteger.ZERO);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckPositive_postiveBigInteger() {
MathPreconditions.checkPositive("BigInteger", BigInteger.ONE);
}
public void testCheckPositive_negativeBigInteger() {
try {
MathPreconditions.checkPositive("BigInteger", BigInteger.ZERO.negate());
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_zeroInt() {
MathPreconditions.checkNonNegative("int", 0);
}
public void testCheckNonNegative_maxInt() {
MathPreconditions.checkNonNegative("int", Integer.MAX_VALUE);
}
public void testCheckNonNegative_minInt() {
try {
MathPreconditions.checkNonNegative("int", Integer.MIN_VALUE);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_positiveInt() {
MathPreconditions.checkNonNegative("int", 1);
}
public void testCheckNonNegative_negativeInt() {
try {
MathPreconditions.checkNonNegative("int", -1);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_zeroLong() {
MathPreconditions.checkNonNegative("long", 0L);
}
public void testCheckNonNegative_maxLong() {
MathPreconditions.checkNonNegative("long", Long.MAX_VALUE);
}
public void testCheckNonNegative_minLong() {
try {
MathPreconditions.checkNonNegative("long", Long.MIN_VALUE);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_positiveLong() {
MathPreconditions.checkNonNegative("long", 1L);
}
public void testCheckNonNegative_negativeLong() {
try {
MathPreconditions.checkNonNegative("int", -1L);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_zeroBigInteger() {
MathPreconditions.checkNonNegative("BigInteger", BigInteger.ZERO);
}
public void testCheckNonNegative_positiveBigInteger() {
MathPreconditions.checkNonNegative("BigInteger", BigInteger.ONE);
}
public void testCheckNonNegative_negativeBigInteger() {
try {
MathPreconditions.checkNonNegative("int", BigInteger.ONE.negate());
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_zeroFloat() {
MathPreconditions.checkNonNegative("float", 0f);
}
public void testCheckNonNegative_maxFloat() {
MathPreconditions.checkNonNegative("float", Float.MAX_VALUE);
}
public void testCheckNonNegative_minFloat() {
MathPreconditions.checkNonNegative("float", Float.MIN_VALUE);
}
public void testCheckNonNegative_positiveFloat() {
MathPreconditions.checkNonNegative("float", 1f);
}
public void testCheckNonNegative_negativeFloat() {
try {
MathPreconditions.checkNonNegative("float", -1f);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_nanFloat() {
try {
MathPreconditions.checkNonNegative("float", Float.NaN);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_zeroDouble() {
MathPreconditions.checkNonNegative("double", 0d);
}
public void testCheckNonNegative_maxDouble() {
MathPreconditions.checkNonNegative("double", Double.MAX_VALUE);
}
public void testCheckNonNegative_minDouble() {
MathPreconditions.checkNonNegative("double", Double.MIN_VALUE);
}
public void testCheckNonNegative_positiveDouble() {
MathPreconditions.checkNonNegative("double", 1d);
}
public void testCheckNonNegative_negativeDouble() {
try {
MathPreconditions.checkNonNegative("double", -1d);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckNonNegative_nanDouble() {
try {
MathPreconditions.checkNonNegative("double", Double.NaN);
fail();
} catch (IllegalArgumentException expected) {
}
}
public void testCheckRoundingUnnnecessary_success() {
MathPreconditions.checkRoundingUnnecessary(true);
}
public void testCheckRoundingUnnecessary_failure() {
try {
MathPreconditions.checkRoundingUnnecessary(false);
fail();
} catch (ArithmeticException expected) {
}
}
public void testCheckInRange_success() {
MathPreconditions.checkInRangeForRoundingInputs(true, 1.0, RoundingMode.UP);
}
public void testCheckInRange_failure() {
try {
MathPreconditions.checkInRangeForRoundingInputs(false, 1.0, RoundingMode.UP);
fail();
} catch (ArithmeticException expected) {
assertThat(expected).hasMessageThat().contains("1.0");
assertThat(expected).hasMessageThat().contains("UP");
}
}
public void testCheckNoOverflow_success() {
MathPreconditions.checkNoOverflow(true, "testCheckNoOverflow_success", 0, 0);
}
public void testCheckNoOverflow_failure() {
try {
MathPreconditions.checkNoOverflow(false, "testCheckNoOverflow_failure", 0, 0);
fail();
} catch (ArithmeticException expected) {
assertThat(expected).hasMessageThat().contains("testCheckNoOverflow_failure(0, 0)");
}
}
public void testNulls() {
/*
* Don't bother testing. All non-primitive parameters are used only to construct error messages.
* We never want to pass null for them, so we haven't annotated them to say that null is
* allowed. But at the same time, it seems wasteful to bother inserting the checkNotNull calls
* that NullPointerTester wants.
*
* (This empty method disables the automatic null testing provided by PackageSanityTests.)
*/
}
}
|