Hi @djohn98390536 For private static method you can use Reflection API like this - @Test
void checkMethod() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException {
String input = "Hello, world!";
InputStream is = new ByteArrayInputStream(input.getBytes...