core/tests: add missing RunWith annotation

This commit is contained in:
Carl Mastrangelo 2016-08-29 12:53:52 -07:00
parent 6d28a93e21
commit 3bf8d94f02
1 changed files with 3 additions and 0 deletions

View File

@ -37,9 +37,12 @@ import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.fail;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import java.net.InetSocketAddress;
@RunWith(JUnit4.class)
public class ResolvedServerInfoTest {
private static final Attributes.Key<String> FOO = Attributes.Key.of("foo");
private static final Attributes ATTRS = Attributes.newBuilder().set(FOO, "bar").build();