📜  testng 框架中的 ddt - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:46.909000             🧑  作者: Mango

代码示例1
HOW DO YOU IMPLEMENT DATA DRIVEN TESTING IN YOUR FRAMEWORK?
    
    TESTNG:
    1. @DataProvider annotation
    2. Excel file with the help of Apache POI
    3. JSON or CSV file for API testing
    4. Data which comes from Database and stores in collections

    To use the DataProvider feature in the test cases, 
    you have to declare a method annotated by
    @DataProvider and then use the said method 
    in the test method using the ‘dataProvider‘ 
    attribute in the @Test annotation.