[FAQ]如何安裝JUnit? 軟件測試工具
First, download the latest version of JUnit, referred to below as junit.zip.
Then install JUnit on your platform of choice:
1.Windows
To install JUnit on Windows, follow these steps:
Unzip the junit.zip distribution file to a directory referred to as %JUNIT_HOME%.
Add JUnit to the classpath:
set CLASSPATH=%CLASSPATH%;%JUNIT_HOME%\junit.jar
2.Unix (bash)
To install JUnit on Unix, follow these steps:
Unzip the junit.zip distribution file to a directory referred to as $JUNIT_HOME.
Add JUnit to the classpath:
export CLASSPATH=$CLASSPATH:$JUNIT_HOME/junit.jar
(Optional) Unzip the $JUNIT_HOME/src.jar file.
Test the installation by using either the textual or graphical test runner to run the sample tests distributed with JUnit.
Note: The sample tests are not contained in the junit.jar, but in the installation directory directly. Therefore, make sure that the JUnit installation directory is in the CLASSPATH.
For the textual TestRunner, type:
java junit.textui.TestRunner junit.samples.AllTests
For the graphical TestRunner, type:
java junit.swingui.TestRunner junit.samples.AllTests
All the tests should pass with an "OK" (textual) or a green bar (graphical).
If the tests don't pass, verify that junit.jar is in the CLASSPATH.
Finally, read the documentation.
Fp:
Junit安裝步驟分解
01:首先將 Junit壓縮包解壓到一個物理目錄中(例如C:\Junit3.8.1)
02:記錄Junit.jar文件所在目錄名(例如 C:\Junit3.8.1\Junit.jar)
03:進入操作系統(以Windows2000操作系統為準),按照次序點擊“開始 -> 設置 -> 控制面板”
04:在控制面板選項中選擇“系統”,點擊“環境變量”,在“系統變量”的“變量”列表框中選擇“CLASS_PATH”關鍵字(不區分大小寫),如果該關鍵字不存在則添加
05:雙擊“CLASS_PATH” 關鍵字添加字符串“C:\Junit3.8.1\Junit.jar”(注意,如果已經有別的字符串請在該字符串的字符結尾加上分號“;”),這樣確定修改后Junit就可以在集成環境中應用了
Junit的卸載步驟如
01:首先將 Junit壓縮包刪除。
02:進入操作系統(以Windows2000操作系統為準),按照次序點擊“開始 -> 設置 -> 控制面板”。
03:在控制面板選項中選擇“系統”,點擊“環境變量”,在“系統變量”的“變量”列表框中選擇“CLASS_PATH”關鍵字(不區分大小寫)。
文章來源于領測軟件測試網 http://www.kjueaiud.com/