zoukankan      html  css  js  c++  java
  • TestNG指南

    转载自:http://blog.csdn.net/bigapplestar/article/details/7300137


    今天突然收到通知,统一改用TestNG写测试用例,开始查这方面的资料,学习一下。

        TestNG需要有自己的配置文件,最方便的办法即是从eclipse上直接下载一下插件。直接下载跟插件下载的地址都可以在http://testng.org/doc/download.html上找到。

        http://www.mkyong.com/tutorials/testng-tutorials/ 这个教程写得很好,挺通俗易懂的。

        大致摘抄记录一下:

        1. 基本用法。

    [java] view plaincopy
    1. import java.util.*;  
    2. import org.testng.Assert;  
    3. import org.testng.annotations.*;  
    4.    
    5. public class TestNGTest1 {  
    6.    
    7.     private Collection collection;  
    8.    
    9.     @BeforeClass  
    10.     public void oneTimeSetUp() {  
    11.         // one-time initialization code     
    12.         System.out.println("@BeforeClass - oneTimeSetUp");  
    13.     }  
    14.    
    15.     @AfterClass  
    16.     public void oneTimeTearDown() {  
    17.         // one-time cleanup code  
    18.         System.out.println("@AfterClass - oneTimeTearDown");  
    19.     }  
    20.    
    21.     @BeforeMethod  
    22.     public void setUp() {  
    23.         collection = new ArrayList();  
    24.         System.out.println("@BeforeMethod - setUp");  
    25.     }  
    26.    
    27.     @AfterMethod  
    28.     public void tearDown() {  
    29.         collection.clear();  
    30.         System.out.println("@AfterMethod - tearDown");  
    31.     }  
    32.    
    33.     @Test  
    34.     public void testEmptyCollection() {  
    35.         Assert.assertEquals(collection.isEmpty(),true);  
    36.         System.out.println("@Test - testEmptyCollection");  
    37.     }  
    38.    
    39.     @Test  
    40.     public void testOneItemCollection() {  
    41.         collection.add("itemA");  
    42.         Assert.assertEquals(collection.size(),1);  
    43.         System.out.println("@Test - testOneItemCollection");  
    44.     }  
    45. }  

        @BeforeClass @AfterClass 等这些从字面上都可以很好理解,Class是整个测试类运行时的前后,而Method则在每个测试方法被调用前都会被调用。

        所以这一段代码执行后的结果如下:


    [java] view plaincopy
    1. @BeforeClass - oneTimeSetUp  
    2. @BeforeMethod - setUp  
    3. @Test - testEmptyCollection  
    4. @AfterMethod - tearDown  
    5. @BeforeMethod - setUp  
    6. @Test - testOneItemCollection  
    7. @AfterMethod - tearDown  
    8. @AfterClass - oneTimeTearDown  
    9. PASSED: testEmptyCollection  
    10. PASSED: testOneItemCollection  

        2.测试预期的异常

        可以检测某一方法检测到某一异常时是否能按预期地抛出。

       

    [java] view plaincopy
    1. import org.testng.annotations.*;  
    2.    
    3. /** 
    4.  * TestNG Expected Exception Test 
    5.  * @author mkyong 
    6.  * 
    7.  */  
    8. public class TestNGTest2 {  
    9.    
    10.     @Test(expectedExceptions = ArithmeticException.class)    
    11.     public void divisionWithException() {    
    12.       int i = 1/0;  
    13.     }    
    14.    
    15. }  

        在这一示例中,divisionWithException()将会抛出一个ArithmetricException的预期异常,这个单元测试也将顺利通过。

        3. 忽略某一测试方法

        TestNG是通过直接在方法上加标注的方式来进行测试,而这里也可以设置某个测试方法不工作。可以通过如下方式:

    [java] view plaincopy
    1. import org.testng.annotations.*;  
    2.    
    3. /** 
    4.  * TestNG Ignore Test 
    5.  * @author mkyong 
    6.  * 
    7.  */  
    8. public class TestNGTest3 {  
    9.    
    10.     @Test(enabled=false)  
    11.     public void divisionWithException() {    
    12.       System.out.println("Method is not ready yet");  
    13.     }    
    14.    
    15. }  

        4. 时限测试

        可以设置一个特定时长的限制(以毫秒ms为单位),一旦测试的内容运行超过了该 时间长度,那么将会终止,同时标记为failed。

       

    [java] view plaincopy
    1. import org.testng.annotations.*;  
    2.    
    3. /** 
    4.  * TestNG TimeOut Test 
    5.  * @author mkyong 
    6.  * 
    7.  */  
    8. public class TestNGTest4 {  
    9.    
    10.     @Test(timeOut = 1000)    
    11.     public void infinity() {    
    12.         while (true);    
    13.     }    
    14.    
    15. }  

        运行后将会有如下的提示:

       

    [java] view plaincopy
    1. FAILED: infinity  
    2. org.testng.internal.thread.ThreadTimeoutException:   
    3. Method public void TestNGTest4.infinity() didn't finish within the time-out 1000  
    4. ... Removed 18 stack frames  

        5. 测试套件(Suite Test)

       即是将一些单元测试用例绑定并一起运行。定义suite test是在xml文件中,参见如下文件,表示将TestNG1和TestNG2一起执行。

    [html] view plaincopy
    1. <!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >  
    2. <suite name="My test suite">  
    3.   <test name="testing">  
    4.     <classes>  
    5.        <class name="TestNG1" />  
    6.        <class name="TestNG2" />  
    7.     </classes>  
    8.   </test>  
    9. </suite>  

       6. 依赖测试(Dependency Test)

        这也可以用于解决如何决定一个测试类中各测试方法调用顺序的问题,可以指定某一个方法依赖于另一个方法的预先执行。

       

    [java] view plaincopy
    1. import org.testng.annotations.*;  
    2.    
    3. /** 
    4.  * TestNG Dependency Test 
    5.  * @author mkyong 
    6.  * 
    7.  */  
    8. public class TestNGTest7 {  
    9.    
    10.     @Test  
    11.     public void method1() {  
    12.        System.out.println("This is method 1");  
    13.     }  
    14.    
    15.     @Test(dependsOnMethods={"method1"})  
    16.     public void method2() {  
    17.         System.out.println("This is method 2");  
    18.     }  
    19.    
    20.    
    21. }  

        运行的结果为:

       

    [java] view plaincopy
    1. PASSED: method1  
    2. PASSED: method2  

    method仅当在method1方法执行成功的前提下才会运行。



        这里翻译得顺序有些调整,关于参数传递的6,7小节下次再翻译,还没有具体测试过,同时也还有一些疑问,若传递的是数据,类等,试试再来整理出来了。


  • 相关阅读:
    用例图会不会
    存储过程进阶(vb.net+SQL Server2008环境)
    众说纷纭,我也说“云”
    三层架构之抽象工厂加反射实现数据库转换
    三层架构之抽象工厂加反射&mdash;&mdash;实现数据库转换
    存储过程懂不懂
    8个对于Web设计和开发人员非常有用的在线工具
    TexturePacker的使用(图片打包再一起)
    cocos2dx游戏摇杆的实现方法
    cocos2dx 矩形碰撞检测
  • 原文地址:https://www.cnblogs.com/ycpanda/p/3637161.html
Copyright © 2011-2022 走看看