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.
当我在 java 中编译我的测试时出现这个错误 - package org.mockito does not exist 和
package org.mockito does not exist
class Mock does not exist
虽然org包已经导入。
org
这样做的具体原因是什么?
这意味着包含这些类的 JAR 不在您的测试 CLASSPATH 中。添加它们,它会工作。
import与加载类完全无关。它所做的只是节省您的输入:您可以在代码 java.lang.String中引用。String
import
java.lang.String
String