Multiple runwith for a junit test class
You can't use two runners as it noted in the commented post. You should use the Parameterized
runner as use Spring's TestContextManager to load the Spring context.
@Before
public void before() throws Exception {
new TestContextManager(getClass()).prepareTestInstance(this);
}