I have a test class in java and there are several methods annotated by @Test in it, somehow, i want to Junit run method A before method B when i run the whole tests. Is it p
use the following to setup thing before and after tests
@Before public void setUp() throws MWException { } @After public void tearDown() { }