zoukankan      html  css  js  c++  java
  • TestNG笔记

    使用前要引用testng的库(我没引也可以用,就把eclise配置了testng而已见 https://www.cnblogs.com/kaibindirver/p/12150455.html)

    后记: 确定得导包,并且注意maven得导包代码中要把 <scope>test </scope>去掉,不然导包不全,参考: https://blog.csdn.net/jiuweihu521/article/details/85293234

    好像这2种都是包,后面再研究下

    一、常规套路 参考:https://www.yiibai.com/testng/basic-annotations.html

    //测试用例

    @Test

    public void testTwo(){

    System.out.print("lucax02");

    }

     

    //每个用例执行前执行

    @BeforeMethod

    public void beforeMethod(){

    System.out.println("Before Method");

    }

     

    //每个用例执行后执行

    @AfterMethod

    public void afterMethod(){

    System.out.println("After Method");

    }

     

     

    //套件运行前仅执行一次

    @BeforeSuite
    public void beforeSuite(){
    System.out.println("Before Suite Method");
    }


    //套件运行后仅执行一次
    @AfterSuite
    public void afterSuite(){
    System.out.println("After Suite Method");
    }

  • 相关阅读:
    20191017-1 每周例行报告
    20191010-2 每周例行报告
    20190919-1 每周例行报告
    彭思雨20190919-3效能分析
    zipfile
    subprocess
    configparser
    hashlib
    json & pickle
    headpq
  • 原文地址:https://www.cnblogs.com/kaibindirver/p/12155186.html
Copyright © 2011-2022 走看看