@Test
public void null_wrapper_dont_throw_exception_from_org_mockito_package() throws Exception {
IMethods methods = mock(IMethods.class, delegatesTo(new MethodsImpl()));
try {
byte b = methods.byteObjectReturningMethod(); // real method returns null
fail();
} catch (Exception e) {
assertThat(e.toString()).doesNotContain("org.mockito");
}
}