aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/apache/commons
AgeCommit message (Collapse)Author
2018-08-23Convert JavaDoc license headers to block commentsBenedikt Ritter
2018-08-23Merge branch 'LANG-1415'Benedikt Ritter
2018-08-23LANG-1415: Update Java Language requirement to 1.8Benedikt Ritter
2018-08-22(fix) Add missing @Test annotationEitan Adler
2018-08-17LANG-1411: Add empty checks to ObjectUtilsAlexander Tsvetkov
2018-08-14LANG-1408: Rounding utilities for converting to BigDecimalRob Tompkins
2018-08-14LANG-1408: add toDouble(BigDecimal), toDouble(BigDecimal, double)Rob Tompkins
2018-08-09Merge branch 'LANG-1402' of https://github.com/MarkDacek/commons-langRob Tompkins
2018-07-14removed ArrayUtils.getMarkDacek
2018-07-13Raw TypesSebb
2018-07-08LANG-1402: refactored to return default value on negative indexMarkDacek
2018-07-08refactored to Generics and added isArrayIndexValidMarkDacek
2018-07-07LANG-1402: added get methods to ArrayUtilsMarkDacek
2018-07-02LANG-1380: FastDateParser too strict on abbreviated short month symbolsChas Honton
2018-06-25replaces primitive comparison with x.compare() where x is a wrapper class of ↵Igor Curdvanovschi
the primitive
2018-06-08LANG-1392: Methods for getting first non empty or non blank value (closes #325)Jeff Nelson
2018-05-22[LANG-1290] StringUtils.join() with support for List<?> withJochen Schalanda
configurable start/end indices.
2018-05-18[LANG-1397] WordUtils.wrap throws StringIndexOutOfBoundsException whenTakanobu Asanuma
wrapLength is Integer.MAX_VALUE.
2018-05-17[LANG-1238] Add RegexUtils class instead of overloadinh methods inGary Gregory
StringUtils that take a regex to take precompiled Pattern. Use 120 chars per line.
2018-05-17[LANG-1238] Add RegexUtils class instead of overloadinh methods inGary Gregory
StringUtils that take a regex to take precompiled Pattern. Sort methods.
2018-05-17[LANG-1238] Add RegexUtils class instead of overloadinh methods inOleg Chubaryov
StringUtils that take a regex to take precompiled Pattern.
2018-05-10LANG-1396 - JsonToStringStyle does not escape string namesSebb
2018-05-09LANG-1395 - JsonToStringStyle does not escape double quote in a stringSebb
value
2018-04-20[LANG-1393] Add API SystemUtils.String getEnvironmentVariable(finalGary Gregory
String name, final String defaultValue).
2018-04-04SerializatoinUtilsTest assertArraysEquals (closes #321)Allon Mureinik
Utilize assertArraysEquals to compare arrays instead of boiler plate implementing it with a for loop. This change both makes the test code cleaner and improves the output in case of an assertion failure by showing all the differences between the two arrays instead of stopping at the first.
2018-04-04SerializationUtilsTest expected exceptionsAllon Mureinik
Use the expected argument of the @Test annotation instead of boiler-plate implementing this behavior with a try-catch-fail construct in order to clean up the code and make it more obvious to the reader.
2018-04-04SerializationUtilsTest identity assertionsAllon Mureinik
Replaced calls to assertTrue with a != condition with calls to assertNotSame calls. This change retains the functionality, but will produce a more detailed error message in case the assertion fails. It also (arguably) makes the test code more straight-forward.
2018-03-29Some reflection tests must account for classes files being instrumentedGary Gregory
by Jacoco.
2018-03-29Some reflection tests must account for classes files being instrumentedGary Gregory
by Jacoco.
2018-03-29Update test for Java 11 EA.Gary Gregory
2018-03-10[LANG-1385] NumberUtils.createNumber() throwsGary Gregory
StringIndexOutOfBoundsException instead of NumberFormatException.
2018-03-09Predictable randomness in shuffle tests. Closes #317 from AllonGary Gregory
Murienik's PR https://github.com/apache/commons-lang/pull/317
2018-03-08LANG-1384: Version "11" is available.Gilles Sadowski
2018-03-08LANG-1384: Fix NPE when version >= 11Gilles Sadowski
The fix is likely to be insufficient if the version naming scheme changes.
2018-02-11LANG-1356: Add bypass option for classes to recursive and reflective ↵pascalschumacher
EqualsBuilder Patch supplied by Yathos UG
2018-02-11LANG-1060: NumberUtils.isNumber assumes number starting with Zero is octalPiotr Kosmala
Add additional tests (closes #314)
2018-02-11LANG-1364: ExceptionUtils#getRootCause(Throwable t) should return t if no ↵pascalschumacher
lower level cause exists This makes the behavior of getRootCause consistent with getRootCauseMessage and getRootCauseStackTrace.
2018-02-11LANG-1060: NumberUtils.isNumber assumes number starting with Zero is octal ↵Piotr Kosmala
(closes #313)
2018-02-11NumberUtils#isCreatable: remove java 6 only code, as commons-lang requires ↵pascalschumacher
at java 7+ now
2018-01-14SystemDefaultsSwitch: fix javadoc code examplepascalschumacher
2018-01-12LANG-1372: Add ToStringSummary annotation (closes #281)Sergio Ozaki
2018-01-12LANG-1352: EnumUtils.getEnumIgnoreCase and isValidEnumIgnoreCase methods ↵Ruslan Sibgatullin
added (closes #286)
2018-01-04LANG-1374: fix logic in isJsonArray method of JsonToStringStyleBruno P. Kinoshita
2017-12-20LANG-1371: Fix TypeUtils.parameterize to work correctly with narrower-typed ↵Dmitry Ovchinnikov
varargs array (closes #307)
2017-11-25LANG-1370 Fix EventCountCircuitBreaker increment batchAndre Dieb Martins
Fixes #incrementAndCheckState(Integer increment) by passing the increment downstream.
2017-11-10[LANG-1367] ObjectUtils.identityToString(Object) and friends shouldGary Gregory
allocate builders and buffers with a size
2017-11-10Break up testIdentityToStringStringBuilder into multiple test methods.Gary Gregory
2017-11-10Break up testIdentityToStringStringBuilder into multiple test methods.Gary Gregory
2017-11-07Remove unnecessary testing comments (closes #305)Haoliang Quan
2017-11-04Fix DateUtilsTest to work reliably on Java 9. This closes #304.Stephen Colebourne