Answers for "beust testng"

2

what is testng

TESTNG: TestNextGeneration
    -> What is TestNG?
        - TestNG is a UNIT TESTING TOOL.
        - It was inspired by JUNIT, but a little bit more advanced than JUNIT.
        - TESTNG helps us create certain testing flow/structure using 
        its ANNOTATIONS.
-->  some of the annotation from TestNG are
    @Test
    @BeforeSuite
    @AfterSuite
    @BeforeTest
    @AfterTest
    @BeforeGroups
    @AfterGroups
    @BeforeClass
    @AfterClass
    @BeforeMethod
    @AfterMethod
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language