用eclipse設置TestNG,下麵的步驟必須遵循:
OS | 壓縮文件名 |
---|---|
Windows | testng-6.8.jar |
Linux | testng-6.8.jar |
Mac | testng-6.8.jar |
假設你上麵複製的JAR文件到 C:\>TestNG 文件夾.
打開 eclipse -> 右鍵單擊項目,然後單擊property > Build Path > Configure Build Path 並添加 testng-6.8.jar 在庫中使用 Add External Jar 按鈕.
我們假設你的eclipse 中 TestNG插件已經內置,如果不是,那麼請使用更新站點獲取最新版本:
在你的 eclipse IDE, 選擇 Help / Software updates / Find and Install.
搜索新功能安裝。
新的遠程站點。
For Eclipse 3.4 and above, enter http://beust.com/eclipse.
For Eclipse 3.3 and below, enter http://beust.com/eclipse1.
Make sure the check box next to URL is checked and click Next.
然後Eclipse會引導幫您完成整個過程。
現在,你的eclipse已經可以使用 TestNG測試用例的開發做好準備。
在eclipse中創建一個項目TestNGProject
創建一類MessageUtil在項目測試。
/* * This class prints the given message on console. */ public class MessageUtil { private String message; //Constructor //@param message to be printed public MessageUtil(String message){ this.message = message; } // prints the message public String printMessage(){ System.out.println(message); return message; } }
在項目中創建一個測試類TestNGExample
import org.testng.Assert; import org.testng.annotations.Test; public class TestNGExample { String message = "Hello World"; MessageUtil messageUtil = new MessageUtil(message); @Test public void testPrintMessage() { Assert.assertEquals(message,messageUtil.printMessage()); } }
下麵應該是項目結構:
最後,通過右擊程序和TestNG的運行驗證程序的輸出。
驗證結果。