我有一个项目结构:
├── main
│ ├── java
│ │ └── qbs
│ │ ├── QbsApplication.java
│ └── resources
│ ├── application.properties
|
└── test
└── java
└── qbs
└── QbsApplicationTests.java
我用mvn clean:install
构建它并创建了jar文件。现在我想使用命令行运行QbsApplicationTests
。
为此,我将两个罐放入一个目录中:
-rw-rw-r--. 1 a a 29M 04-05 10:30 fi.qbs-0.0.1-SNAPSHOT.jar
-rw-rw-r--. 1 a a 1M 2014-12-04 junit-4.12.jar
并执行以下命令:
java -cp .:fi.qbs-0.0.1-SNAPSHOT.jar:junit-4.12.jar org.junit.runner.JUnitCore qbs.QbsApplication
但是,我一直收到以下错误
JUnit version 4.12
.E
Time: 0,003
There was 1 failure:
1) initializationError(org.junit.runner.JUnitCommandLineParseResult)
java.lang.IllegalArgumentException: Could not find class [qbs.QbsApplication]
at org.junit.runner.JUnitCommandLineParseResult.parseParameters(JUnitCommandLineParseResult.java:102)
at org.junit.runner.JUnitCommandLineParseResult.parseArgs(JUnitCommandLineParseResult.java:50)
at org.junit.runner.JUnitCommandLineParseResult.parse(JUnitCommandLineParseResult.java:44)
at org.junit.runner.JUnitCore.runMain(JUnitCore.java:72)
at org.junit.runner.JUnitCore.main(JUnitCore.java:36)
Caused by: java.lang.ClassNotFoundException: qbs.QbsApplication
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at org.junit.internal.Classes.getClass(Classes.java:16)
at org.junit.runner.JUnitCommandLineParseResult.parseParameters(JUnitCommandLineParseResult.java:100)
... 4 more
FAILURES!!!
Tests run: 1, Failures: 1
问题:
QbsApplicationTests
测试表单控件?EDIT 我还尝试添加以下内容:
@SpringBootApplication
public class QbsApplication {
public static void main(String[] args) {
SpringApplication.run(QbsApplication.class, args);
System.out.println("Running tests!");
JUnitCore engine = new JUnitCore();
engine.addListener(new TextListener(System.out) ); // required to print reports
engine.run( QbsApplicationTests.class);
}
}
到主类,但Intellij一直说QbsApplicationTests
无法解析。
答案 0 :(得分:0)
您在树结构中拆分源代码和测试类的原因是因为在运送最终jar时,您的客户对测试类不感兴趣。他们只关心你写的实际代码。
这就是为什么用maven构建jar会自动排除你的测试目录。
但是,您想要测试代码的正确性是正确的。但是你想要在之前为你制作运输罐。
而是像建议的here
一样运行mvn test
或者,既然您正在使用IntelliJ,只需右键单击测试类并单击"运行"。