Please enable JavaScript.
Coggle requires JavaScript to display documents.
TestNG - Coggle Diagram
TestNG
Annotations
BeforeSuite
will run before all tests in test suite
AfterSuite
will run after all tests in the test suite
BeforeTest
runs before each and every test methood with<test> tag in xml file
AfterTest
run after each and every test method with <test> tag in xml file
BeforeClass
run before first test methd in the class
AfterClass
run after last test methd
BeforeMethod
run before each and every test method
AfterMEthod
run after each and every test method
Test
methd that belng to the test class/test case
DataProvider
passes the data frm dataprovider methd to test method
Download testng jar file and configure the build path
TestNG
Jcommander
Guice
Snakeyaml
Assertion
AssertEquals
AssertTrue
AssertFalse
SoftAssert
framework that can execute multiple test scripts simultaneously and provides reporting features
Open-source testing framework, NG means Next Generation
JUNIT and NUNIT
Annotations, Grouping, Sequencing and Paramterizing, Prioritize
Parallel testing
Install the plugin for eclipse
DataProvider