I found this interesting JUnit project: https://github.com/square/burst
It's documentation only specify how to use it with class runner. However, Since JUnit only allows 1 Runner per JUnit, using Burst means user will have difficulty run it in integration test because normally we need to run other class runner too, e.g. SpringJUnit4ClassRunner.class or other class runner. BTW my question is not specific to SpringJUnit4ClassRunner, because I may need to run other class runner as well.
Is there any way to run it with other class runner? e.g. using @Rule?