Add missing @RunWith, it is required internally

This commit is contained in:
Xudong Ma 2015-12-03 17:22:36 -08:00
parent a1ed98fbae
commit c3e7541731
1 changed files with 3 additions and 0 deletions

View File

@ -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;