mirror of https://github.com/grpc/grpc-java.git
core: add RunWith annotation to OverrideAuthorityNameResolverTest
This commit is contained in:
parent
b3c1a5c8c3
commit
3dce2ee84b
|
|
@ -27,7 +27,11 @@ import io.grpc.Attributes;
|
||||||
import io.grpc.NameResolver;
|
import io.grpc.NameResolver;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.junit.runners.JUnit4;
|
||||||
|
|
||||||
|
/** Unit tests for {@link OverrideAuthorityNameResolverFactory}. */
|
||||||
|
@RunWith(JUnit4.class)
|
||||||
public class OverrideAuthorityNameResolverTest {
|
public class OverrideAuthorityNameResolverTest {
|
||||||
@Test
|
@Test
|
||||||
public void overridesAuthority() {
|
public void overridesAuthority() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue