Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> 命令行中運行junit

命令行中運行junit

日期:2017/2/7 14:31:47      編輯:Linux教程
 

做過的項目一般都是在eclipse和ant裡面跑的,今天要跑個小測試,單獨寫個ant就沒必要了,查了下命令行裡跑的命令。

junit3裡面的如下

# To run your TestCase suite:

java -cp whatever:/path/to/junit.jar junit.textui.TestRunner MyTestClass

# To run your TestCase suite in a Gui:
java -cp whatever:/path/to/junit.jar junit.swingui.TestRunner MyTestClass

# To run the TestRunner Gui and select your suite or test methods
# from within the Gui:
java -cp whatever:/path/to/junit.jar junit.swingui.TestRunner

junit4的話有一點不一樣:

java org.junit.runner.JUnitCore TestClass1 [...other test classes...]
 

Copyright © Windows教程網 All Rights Reserved