List<String> list = mock(List<String>.class);
here is a invalid syntax,how to pass a List<String> type to mock()?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Short answer is you can’t. At runtime it’s just
List.classdue to type erasure. If your mocking framework needs to know the type parameter there must be a different way to pass it in.