Home
last modified time | relevance | path

Searched refs:sMax (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/time/test/java/time/temporal/
DTestDateTimeValueRange.java160 public void test_of_longlonglonglong(long sMin, long lMin, long sMax, long lMax) { in test_of_longlonglonglong() argument
161 ValueRange test = ValueRange.of(sMin, lMin, sMax, lMax); in test_of_longlonglonglong()
164 assertEquals(test.getSmallestMaximum(), sMax); in test_of_longlonglonglong() local
166 assertEquals(test.isFixed(), sMin == lMin && sMax == lMax); in test_of_longlonglonglong()
185 public void test_of_longlonglonglong_invalid(long sMin, long lMin, long sMax, long lMax) { in test_of_longlonglonglong_invalid() argument
186 ValueRange.of(sMin, lMin, sMax, lMax); in test_of_longlonglonglong_invalid()
225 public void test_of_checkValidValue(long sMin, long lMin, long sMax, long lMax) { in test_of_checkValidValue() argument
226 ValueRange test = ValueRange.of(sMin, lMin, sMax, lMax); in test_of_checkValidValue()
229 assertEquals(test.checkValidIntValue(sMax, null), sMax); in test_of_checkValidValue() local
234 public void test_of_checkValidValueMinException(long sMin, long lMin, long sMax, long lMax) { in test_of_checkValidValueMinException() argument
[all …]