mirror of https://github.com/grpc/grpc-java.git
Add missing @RunWith, it is required internally
This commit is contained in:
parent
a1ed98fbae
commit
c3e7541731
|
|
@ -37,12 +37,15 @@ import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.junit.runners.JUnit4;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
|
@RunWith(JUnit4.class)
|
||||||
public class SerializeReentrantCallsDirectExecutorTest {
|
public class SerializeReentrantCallsDirectExecutorTest {
|
||||||
|
|
||||||
SerializeReentrantCallsDirectExecutor executor;
|
SerializeReentrantCallsDirectExecutor executor;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue