I'm trying to run a JUnit Cucumber test that uses Mockito. Here's the issue I'm running into. In my Cucumber Runner class, I have
@RunWith(Cucumber.class)
And in my regular JUnit tests I have
@RunWith(Mockito.class)
Given that I can only have one @RunWith at a time, how can I use Mockito in conjunction with Cucumber?