I\'m trying to use @BeforeTest to get code to ... run once before every test.
This is my code:
public class TestBase {
@BeforeTest
public voi
According to documentation, a method annotated with @BeforeTest is run before any @Test method belonging to the classes inside the tag is run.
From my experience:
You could test this by setting up a simple example.