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
The following example test fails with a CCE:
public interface GenericInterface<T> { <S extends T> S save(S entity); } public interface ConcreteInterface extends GenericInterface<String> {} @Test public void cascadingFromGenericMethodWhoseTypeParameterExtendsAnother(@Mocked ConcreteInterface mock) { String value = "test"; String saved = mock.save(value); assertNull(saved); }
The text was updated successfully, but these errors were encountered:
jmockit/jmockit1@3d41a35
rliesenfeld
No branches or pull requests
The following example test fails with a CCE:
The text was updated successfully, but these errors were encountered: