garydgregory commented on code in PR #784:
URL: https://github.com/apache/commons-io/pull/784#discussion_r2368133774


##########
src/test/java/org/apache/commons/io/build/ByteArrayOriginTest.java:
##########
@@ -82,11 +75,24 @@ void testGetRandomAccessFile(final OpenOption openOption) {
         assertThrows(UnsupportedOperationException.class, () -> 
super.testGetRandomAccessFile(openOption));
     }
 
+    @Override
+    @Test
+    void testGetOutputStream() {
+        // Cannot convert a byte[] to an OutputStream.
+        assertThrows(UnsupportedOperationException.class, 
super::testGetOutputStream);

Review Comment:
   Good analysis, ty. Since this use case has not come up, I think we should be 
good for now.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to