aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/apache/commons/lang3
AgeCommit message (Collapse)Author
2020-06-24[LANG-1542] ToStringBuilder.reflectionToString - Wrong JSON format whenGary Gregory
object has a List/Array of Enum.
2020-06-23Add ObjectUtils.toString(Object, Supplier<String>).Gary Gregory
2020-06-23Added ImmutablePair factory methods left() and right().Gary Gregory
2020-06-22Undo "fix", @DefaultLocale is used in this test.Gary Gregory
2020-06-22Fix typos.Gary Gregory
2020-06-22Fix bug in test.Gary Gregory
2020-06-22Formatting.Gary Gregory
2020-06-19Better method names.Gary Gregory
2020-06-18Tests are public by convention on Commons Lang.Gary Gregory
2020-06-18Remove redundant importaherbert
2020-06-18Use upper case L on long declarationsaherbert
2020-06-17Centralize stream code in our own 'stream' package asGary Gregory
a parallel to the JRE's java.util.stream package. - Re-implement use of failable function interfaces based on our function package. - Deprecate old class. - Remove trainling whitespace.
2020-06-17Follow current style: @Test methods are public.Gary Gregory
2020-06-17We have a concurrent package, and JRE locks live in a similar package,Gary Gregory
so let's put our new code in there.
2020-06-17Centralize failable functional interfaces in our 'function' package asGary Gregory
the parallel to the JRE's java.util.function package. Deprecate old class.
2020-06-17Fix checkstyle: End files in a new line.Gary Gregory
2020-06-17Create the new package org.apache.commons.function to parallel the JRE'sGary Gregory
java.util.function to provide home for our "failable" version of the JRE's functional interfaces.
2020-06-17[LANG-1568] More failable functional interfaces to match JRE functionalGary Gregory
interfaces.
2020-06-15Add edge case.Gary Gregory
2020-06-14[LANG-1568] More failable functional interfaces to match JRE functionalGary Gregory
interfaces.
2020-06-14Sort members.Gary Gregory
2020-06-14fix checkstyle.XenoAmess
2020-06-13[LANG-1556] Use Java 8 lambdas and Map operations. (#541)XenoAmess
* java8 * refine * rebase
2020-06-13Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.gitGary Gregory
2020-06-13[LANG-1570] JavaVersion enum constants for Java 14 and 15. (#553)Edgar Asatryan
2020-06-13Add missiing "testGary Gregory
2020-06-13Sort methods.Gary Gregory
2020-06-13[LANG-1528] replaceEachRepeatedly gives IllegalStateException (#505)Edwin Delgado H
* Fix https://issues.apache.org/jira/browse/LANG-1528 * Fix https://issues.apache.org/jira/browse/LANG-1528 Co-authored-by: Edwin DH <peo_ehuaynalaya@uolinc.com>
2020-06-13Sting_to_StringBuilder (#544)XenoAmess
2020-06-13simplify_if (#543)XenoAmess
2020-06-13fix_typos (#539)XenoAmess
2020-06-13addAll_to_constructor (#536)XenoAmess
2020-06-13array_style (#537)XenoAmess
2020-06-13fix javadoc (#545)XenoAmess
2020-06-13[LANG-1564] use Collections.singletonList insteadof Arrays.asList when there ↵XenoAmess
be only one element. (#549) * asList * Update TypeUtilsTest.java
2020-06-13Simplify lambdas.Gary Gregory
2020-06-13[LANG-1563] use StandardCharsets.UTF_8 (#548)XenoAmess
* use_StandardCharsets_UTF_8 * Update StringEscapeUtilsTest.java
2020-06-13[LANG-1561] use List.sort instead of Collection.sort (#546)XenoAmess
* use_List_sort * Update MethodUtils.java * Update ObjectToStringComparatorTest.java
2020-06-12Remove trailing white space.Gary Gregory
2020-06-12[LANG-1569] Add ArrayUtils.get(T[], index, T) to provide anGary Gregory
out-of-bounds default value
2020-06-12Sort members.Gary Gregory
2020-06-12[LANG-1568] Add more failable Consumers to match JRE stock Consumers.Gary Gregory
2020-06-12Sort members.Gary Gregory
2020-06-12[LANG-1568] FailableBooleanSupplier, FailableIntSupplier,Gary Gregory
FailableLongSupplier, FailableDoubleSupplier.
2020-06-11Simplify lambads.Gary Gregory
Fix Javadoc.
2020-06-01StreamsTest junit-jupiterJohn Patrick
2020-05-31Fixing Checkstyle warnings.Jochen Wiedmann
Closes #532.
2020-05-28Adding the Locks class.Jochen Wiedmann
2020-05-25[LANG-1545] CharSequenceUtils.regionMatches is wrong dealing withGary Gregory
Georgian.
2020-05-25[LANG-1545] CharSequenceUtils.regionMatches is wrong dealing with Georgian. ↵XenoAmess
(#529) * CharSequenceUtils.regionMatches is wrong dealing with Georgian. see details in tests. * refine tests