mirror of https://github.com/grpc/grpc-java.git
stub: Add RunWith(JUnit4) to support varied environments
Some JUnit environments require the RunWith annotation. Notably Blaze/Bazel needs it.
This commit is contained in:
parent
a13fca2bf2
commit
aae52de3b8
|
@ -17,9 +17,12 @@
|
|||
package io.grpc.stub;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.JUnit4;
|
||||
import org.mockito.InOrder;
|
||||
import org.mockito.Mockito;
|
||||
|
||||
@RunWith(JUnit4.class)
|
||||
public class StreamObserversTest {
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue