Custom runner for a test method, not at class level - Is it possible?

36 Views Asked by At

Is it possible to specify a custom runner per test method within a test class? That is:


Class SomeTests {

public void test1() {

}

public void test2() {
}


// For this test only, is it possible
// to specify a different runner, for 
// example : `PowerMockRunner`
public void test3() {  
}

}

0

There are 0 best solutions below