I have a testsuite which has mutiple testcases in a class every test case is isolated So when i execute the testsuite class i want to restart the app for every testcase
How do i relaunch application from start for every individual test case in Espresso
Thanks in advance
@Test
public void testcase1() {
//from first screen
}
@Test
public void testcase2() {
//from first screen
}