xds: annotate XdsRoutingLoadBalancerTest with RunWith (#6855)

This is required inside google for all tests.
This commit is contained in:
Kun Zhang 2020-03-24 11:48:28 -07:00 committed by GitHub
parent 2e3ad1de25
commit fc53747f1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -61,11 +61,14 @@ import java.util.List;
import org.junit.After; import org.junit.After;
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 org.mockito.ArgumentCaptor; import org.mockito.ArgumentCaptor;
import org.mockito.Mock; import org.mockito.Mock;
import org.mockito.MockitoAnnotations; import org.mockito.MockitoAnnotations;
/** Tests for {@link XdsRoutingLoadBalancer}. */ /** Tests for {@link XdsRoutingLoadBalancer}. */
@RunWith(JUnit4.class)
public class XdsRoutingLoadBalancerTest { public class XdsRoutingLoadBalancerTest {
private final List<LoadBalancer> fooBalancers = new ArrayList<>(); private final List<LoadBalancer> fooBalancers = new ArrayList<>();