with the code below, the tests are not executed in the order I\'d like. test_homescreen is executed before test_splashscreen.
I\'d like to specify the tests to run and t
you can name you test cases like this:
public void test1_whatever().... public void test3_other()... public void test2_mytest()...
public void test1_whatever()....
public void test3_other()...
public void test2_mytest()...
and when you run them the order will be:
test1_whatever() test2_mytest() test3_other()
test1_whatever()
test2_mytest()
test3_other()