aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/apache/commons/lang3/BooleanUtilsTest.java
AgeCommit message (Expand)Author
2022-09-16Add BooleanUtils.values() and forEach().Gary Gregory
2022-07-05Add ArrayUtils.oneHot().Gary Gregory
2022-07-05All tests should leave the ToStringStyle registry empty.Gary Gregory
2022-05-04Add BooleanUtilsTest tests.Gary Gregory
2021-12-08ArrayUtils.toPrimitive(Boolean...) null array elements map to false,Gary Gregory
2021-08-29Simplify assertions with equivalent but more simple. (#792)Arturo Bernal
2021-05-25Create array with curly.Gary Gregory
2021-02-25Add and use ObjectUtils.requireNonEmpty().Gary Gregory
2020-12-21Move new sort methods to a new class and add primitive versions.Gary Gregory
2020-11-21Use a String instead of building one.Gary Gregory
2020-11-14Add fluent-style ArrayUtils.sort(Object[]).Gary Gregory
2020-09-28Add BooleanUtils.booleanValues().Gary Gregory
2020-09-28Sort members.Gary Gregory
2020-03-07 Added 1 and 0 in toBooleanObject(final String str) (#502)Dominik Schramm
2018-11-19Make whitespace use after tokens consistent and add a checkstyle rule to enfo...pascalschumacher
2018-10-13Clean up assertions (closes #376)Allon Mureinik
2018-10-11Update tests to JUnit Jupiter (closes #375)Allon Mureinik
2017-10-15use assertNull where possiblepascalschumacher
2017-06-06Make sure lines in files don't have trailing white spaces and remove all trai...Benedikt Ritter
2017-02-14Remove redundant casts (closes #235)Allon Mureinik
2015-07-14LANG-1057Chas Honton
2015-05-05Removed spurious * lines before a */; mostly created by removing the @version...Henri Yandell
2015-05-05Removed @version $ from source per LANG-1129Henri Yandell
2014-10-19LANG-536 - Add isSorted() to ArrayUtils. Patch supplied by James Sawle. Close...Duncan Jones
2014-02-06Additional samplesSebastian Bazley
2013-10-22Removing isExactlyOneTrue, since there is no consensus about this method. See...Benedikt Ritter
2013-10-20Use less confusing method nameBenedikt Ritter
2013-10-15LANG-922 - Add isOneTrue(booleans...) to BooleanUtils to preserve old behavio...Benedikt Ritter
2013-10-15LANG-921 - BooleanUtils.xor(boolean...) produces wrong resultsBenedikt Ritter
2013-05-30LANG-896 BooleanUtils.toBoolean(String str) javadoc is not updatedSebastian Bazley
2013-01-22Add final modifier to local variables.Gary D. Gregory
2012-04-05Do not import *Gary D. Gregory
2011-11-09Avoid boolean boxing in asserts where possibleSebastian Bazley
2011-08-03Use more efficient Integer cache: Use "Integer.valueOf(int)" instead of "new ...Gary D. Gregory
2011-07-17[LANG-722] Add BooleanUtils.and/or varargs methods to complement xorMatthew Jason Benson
2011-07-17use exception expectationsMatthew Jason Benson
2011-07-17junit 4Matthew Jason Benson
2011-06-08Fix Javadoc bug; Improve implementation and testsStephen Colebourne
2011-04-05Removing @author tags per thread on dev@: http://mail-archives.apache.org/mod...Henri Yandell
2010-09-13Adding t/f and y/n options to toBooleanObject(String). LANG-649Henri Yandell
2010-07-20Refactoring toBoolean(String) and toBooleanObject(String) so that the latter ...Henri Yandell
2010-01-03Move test source into src/test/javaPaul C. Benedict Jr