I am trying to run an integration test using junit4 for which I need to use @RunWith(SpringRunner.class) but I also need to use @RunWith(RunIfRunner.class) for implementing the solution mentioned here
How to ensure the use of both on these? Or is there any other way to deal with this other than using @RunWith()?
Note: I need to use the solution mentioned in the link above(check here - 1).