aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/apache/commons/lang3/ValidateTest.java
AgeCommit message (Expand)Author
2022-09-21Handle error messages with special characters.Piotr Stawirej
2022-08-16Add a bunch of test in order to increase the coverage. (#904)Arturo Bernal
2022-07-05Inline some single-use local variables.Gary Gregory
2022-07-05Whitespace, Javadoc, tests are public.Gary Gregory
2022-05-02Make Validate.isAssignableFrom() check null inputs.Gary Gregory
2022-03-07Deprecate Validate#notNull(Object) in favor of usingGary Gregory
2021-05-25Create array with curly.Gary Gregory
2020-06-24Clean up imports.Gary Gregory
2020-02-14Use final.Gary Gregory
2018-09-06Convert util class convention tests to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.isAssignable overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.isInstanceOf overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.exclusiveBetween overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.inclusiveBetween overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.finite overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.notNaN overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.matchesPattern overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.validIndex overloads to @Nested testBenedikt Ritter
2018-09-06Move constructor test to topBenedikt Ritter
2018-09-06Convert tests for Validate.noNullElements overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.notBlank overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.notEmpty overloads to @Nested testBenedikt Ritter
2018-09-06Convert tests for Validate.notNull overloads to @Nested testBenedikt Ritter
2018-09-05Convert tests for Validate.isTrue overloads to @Nested testBenedikt Ritter
2018-09-05JUnit 5 tests do not need to be publicBenedikt Ritter
2018-09-04LANG-1416: Update ValidateTest to JUnit 5 APIBenedikt Ritter
2017-06-06Make sure placement of curly braces is consistentBenedikt Ritter
2017-06-06Prevent redundant modifiersBenedikt Ritter
2016-10-23Remove redundant type arguments.Gary Gregory
2016-09-19Revert parts of LANG-1134 to polish the API after 3.5Benedikt Ritter
2016-09-15LANG-1134: New methods for lang3.Validate (closes #190)Lady-Stardust
2016-04-23LANG-1134: New methods for lang3.ValidateChas 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-06-06Add some missing tests.Gary D. Gregory
2014-01-28Resolved compiler warnings shown in Eclipse and when compiling with -Xlint:un...Duncan Jones
2014-01-12LANG-834: Validate: add inclusiveBetween and exclusiveBetween overloads for p...Benedikt Ritter
2013-01-22Add final modifier to local variables.Gary D. Gregory
2012-09-19Simplify boolean tests and avoid boxingSebastian Bazley
2012-09-18[LANG-824] Conversion of 3.x JUnit tests to 4.x; thanks to Duncan JonesMatthew Jason Benson
2011-11-09Unnecessary Integer creation; actually wants longSebastian Bazley
2011-09-08[LANG-751] Include the actual type in the Validate.isInstance and isAssignabl...Gary D. Gregory
2011-08-03Use more efficient Integer cache: Use "Integer.valueOf(int)" instead of "new ...Gary D. Gregory
2011-04-05Removing @author tags per thread on dev@: http://mail-archives.apache.org/mod...Henri Yandell
2010-03-03Applying Valentin Rocher's patch from LANG-559, adding isInstanceOf and isAss...Henri Yandell
2010-02-07Applying Valentin Rocher's patch to LANG-579, adding new regexp and in range ...Henri Yandell
2010-01-03Move test source into src/test/javaPaul C. Benedict Jr