Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
List<String> list = mock(List<String>.class);
これは無効な構文List<String>です。mock() に型を渡す方法は?
List<String>
簡単に言えば、できません。実行時にはList.class、型の消去が原因です。モッキング フレームワークが型パラメーターを知る必要がある場合は、別の方法で渡す必要があります。
List.class