I have a Spring Boot application which is capable of running Integration tests using Rest Assured.
There is a single test class which has multiple test cases. I wish to run the test cases serially as given in the class.
public class ItemControllerTest{
    @Before
    public void setUp(){
     ...
    }
    @Test
    public void test1(){
     ...
    }
    @Test
    public void test2(){
     ...
    }
}
When I run integration test,it seems test2 is getting executed before test1.
But I want them to run in the order they are written
 
    