File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
eventhubs/azure-messaging-eventhubs/src/test/java/com/azure/messaging/eventhubs
maps/azure-maps-search/src/test/java/com/azure/maps/search Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 88import com .azure .core .amqp .ProxyOptions ;
99import com .azure .core .credential .TokenCredential ;
1010import com .azure .core .experimental .util .tracing .LoggingTracerProvider ;
11- import com .azure .core .test .TestBase ;
11+ import com .azure .core .test .TestProxyTestBase ;
1212import com .azure .core .test .TestContextManager ;
1313import com .azure .core .test .TestMode ;
1414import com .azure .core .util .ClientOptions ;
4444/**
4545 * Test base for running integration tests.
4646 */
47- public abstract class IntegrationTestBase extends TestBase {
47+ public abstract class IntegrationTestBase extends TestProxyTestBase {
4848 // The number of partitions we create in test-resources.json.
4949 // Partitions 0 and 1 are used for consume-only operations. 2, 3, and 4 are used to publish or consume events.
5050 protected static final int NUMBER_OF_PARTITIONS = 5 ;
Original file line number Diff line number Diff line change 44package com .azure .maps .search ;
55
66import com .azure .core .http .HttpClient ;
7- import com .azure .core .test .TestBase ;
7+ import com .azure .core .test .TestProxyTestBase ;
88import org .junit .jupiter .params .provider .Arguments ;
99
1010import java .time .Duration ;
@@ -21,7 +21,7 @@ public class TestUtils {
2121 * @return A stream of HttpClient and service version combinations to test.
2222 */
2323 public static Stream <Arguments > getTestParameters () {
24- return TestBase .getHttpClients ()
24+ return TestProxyTestBase .getHttpClients ()
2525 .flatMap (httpClient -> Arrays .stream (MapsSearchServiceVersion .values ())
2626 .map (serviceVersion -> Arguments .of (httpClient , serviceVersion )));
2727 }
You can’t perform that action at this time.
0 commit comments