Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public class JMockitTest { @Injectable private Manager manager; @Injectable private User user; interface Manager { <T extends Entity> T find(Class<T> clazz); } interface Entity { } static class User implements Entity { } @Test public void test() throws Exception { new Expectations() {{ manager.find(User.class); result = user; }}; final Entity actual = manager.find(User.class); assertSame(actual, user); } }
produces NPE in MockedTypeCascade.getGenericReturnType, version 1.28, 1.25. Is this not supported? Thank you.
The text was updated successfully, but these errors were encountered:
Thanks for reporting, it's a bug.
Sorry, something went wrong.
jmockit/jmockit1@e563ef6
rliesenfeld
No branches or pull requests
produces NPE in MockedTypeCascade.getGenericReturnType, version 1.28, 1.25. Is this not supported? Thank you.
The text was updated successfully, but these errors were encountered: