Skip to content

Commit

Permalink
fix: Add RunWith annotation (#678)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpcollins-google committed Jun 8, 2021
1 parent 5eef903 commit ef85581
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -44,9 +44,12 @@
import java.util.function.Consumer;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.mockito.InOrder;
import org.mockito.stubbing.Answer;

@RunWith(JUnit4.class)
public class BlockingPullSubscriberImplTest {
private final SubscriberFactory underlyingFactory = mock(SubscriberFactory.class);
private final Subscriber underlying = mock(Subscriber.class);
Expand Down

0 comments on commit ef85581

Please sign in to comment.