This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit 306dbb0cb01f565bf04d8879cad9b413d94d4af5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jun 13 16:06:26 2020 -0400 Add missiing "test --- src/test/java/org/apache/commons/lang3/FunctionsTest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/java/org/apache/commons/lang3/FunctionsTest.java b/src/test/java/org/apache/commons/lang3/FunctionsTest.java index bf73add..51699c2 100644 --- a/src/test/java/org/apache/commons/lang3/FunctionsTest.java +++ b/src/test/java/org/apache/commons/lang3/FunctionsTest.java @@ -236,6 +236,12 @@ class FunctionsTest { } @Test + public void testConstructor() { + // We allow this, which must be an omission to make the ctor private. + new Functions(); + } + + @Test void testAcceptBiConsumer() { final IllegalStateException ise = new IllegalStateException(); final Testable<?, ?> testable = new Testable(null);