現在位置:首頁 > Java技術 > TestNG > TestNG Eclipse插件

TestNG Eclipse插件

來源:原創文章    由 極客書 更新版本    瀏覽:人次

eclipse設置TestNG,下麵的步驟必須遵循:

步驟1:下載TestNG的歸檔文件

下載 http://www.testng.org

OS 壓縮文件名
Windows testng-6.8.jar
Linux testng-6.8.jar
Mac testng-6.8.jar

假設你上麵複製的JAR文件到 C:\>TestNG 文件夾.

第二步:設置Eclipse環境

  • 打開 eclipse -> 右鍵單擊項目,然後單擊property > Build Path > Configure Build Path 並添加 testng-6.8.jar 在庫中使用 Add External Jar 按鈕.

Add testng-6.8.jar in liraries.
  • 我們假設你的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測試用例的開發做好準備。

步驟3:確認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());
   }
}

下麵應該是項目結構:

Project Structure

最後,通過右擊程序和TestNG的運行驗證程序的輸出。

驗證結果。

TestNG result success.
 

本站文章除注明轉載外,均為本站原創或編譯
歡迎任何形式的轉載,但請務必注明出處,尊重他人勞動,傳播學習教學;
轉載請注明:文章轉載自:極客書 [http://www.gitbook.net]
本文標題:TestNG Eclipse插件
轉載請保留原文鏈接:http://www.gitbook.net/html/testng/2013/0916311.html
上一篇:TestNG插件與ANT      下一篇:冇有了