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-io.git
commit 79a7c25a20e5ad37c00ce5d1f9ef025c265d513e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Oct 11 09:17:53 2023 -0400 Add test --- .../apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java b/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java index 1ac6042a..e85287a8 100644 --- a/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java @@ -190,6 +190,7 @@ public class UnsynchronizedBufferedInputStreamTest { assertThrows(IOException.class, () -> is.read()); assertThrows(NullPointerException.class, () -> UnsynchronizedBufferedInputStream.builder().setInputStream(null).setBufferSize(100).get()); + assertThrows(NullPointerException.class, () -> UnsynchronizedBufferedInputStream.builder().setInputStream(null)); } /**