TestNG – Configuration Annotations Example
In TestNG, we can use the following annotations to do the configuration for your test class, like setup / clean a database, preparing the dummy data, deploy / shut down the server and etc. @BeforeSuite – For suite test, run before all tests in this suite have run. @AfterSuite – For suite test, run after …