context: add RunWith annotation

This commit is contained in:
Eric Gribkoff 2017-08-28 12:11:02 -07:00 committed by GitHub
parent 97c625fa79
commit 812e65a5ca
1 changed files with 3 additions and 0 deletions

View File

@ -25,7 +25,10 @@ import io.grpc.PersistentHashArrayMappedTrie.CompressedIndex;
import io.grpc.PersistentHashArrayMappedTrie.Leaf; import io.grpc.PersistentHashArrayMappedTrie.Leaf;
import io.grpc.PersistentHashArrayMappedTrie.Node; import io.grpc.PersistentHashArrayMappedTrie.Node;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class PersistentHashArrayMappedTrieTest { public class PersistentHashArrayMappedTrieTest {
@Test @Test
public void leaf_replace() { public void leaf_replace() {