我有一個項目結構:如何從罐子中運行JUnit測試,而JUnit的找不到測試類
├── main
│ ├── java
│ │ └── qbs
│ │ ├── QbsApplication.java
│ └── resources
│ ├── application.properties
|
└── test
└── java
└── qbs
└── QbsApplicationTests.java
我有mvn clean:install
和創建jar文件生成它。現在我想用命令行運行QbsApplicationTests
。 要做到這一點我已經把兩個jar到一個目錄:
-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
測試表單控制檯?
編輯 我也嘗試添加以下內容:
@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
不能得到解決。
測試文件夾中的所有內容都不會包含在jar中。 junit測試將在jar被構建之前正常運行在Workspace中 – Jens
@Jens這應該是一個答案。 –
這不是問題的答案。問題是'怎麼樣?' – mCs