I was writting JUnit test. I would like to know if the tests within a test class can run in parallel.
class TestMyClass {
    @Test
    public void test1() {
    }
    @Test
    public void test2() {
    }
}
Will Junit ever run test1() and test2() in parallel?
 
     
     
     
     
    