Skip to content

Commit

Permalink
Changed . in Java test URI
Browse files Browse the repository at this point in the history
  • Loading branch information
Hovsep Mkrtchyan committed May 19, 2016
1 parent 8fa3955 commit a1ac974
Show file tree
Hide file tree
Showing 41 changed files with 41 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ParameterGroupingTests {

@BeforeClass
public static void setup() {
client = new AutoRestParameterGroupingTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestParameterGroupingTestServiceImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class ApiVersionDefaultTests {

@BeforeClass
public static void setup() {
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost.:3000", null);
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class ApiVersionLocalTests {

@BeforeClass
public static void setup() {
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost.:3000", null);
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class HeaderOperationsTests {

@BeforeClass
public static void setup() {
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost.:3000", null);
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class SkipUrlEncodingTests {
private static final int OK_STATUS_CODE = 200;
private static final int NOT_FOUND_STATUS_CODE = 404;

private static String baseUrl = "http://localhost.:3000";
private static String baseUrl = "http://localhost:3000";
private static String unencodedPath = "path1/path2/path3";
private static String unencodedQuery = "value1&q2=value2&q3=value3";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SubscriptionInCredentialsTests {

@BeforeClass
public static void setup() {
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost.:3000", new TokenCredentials(null, UUID.randomUUID().toString()));
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost:3000", new TokenCredentials(null, UUID.randomUUID().toString()));
client.setSubscriptionId("1234-5678-9012-3456");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class SubscriptionInMethodTests {

@BeforeClass
public static void setup() {
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost.:3000", new TokenCredentials(null, UUID.randomUUID().toString()));
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost:3000", new TokenCredentials(null, UUID.randomUUID().toString()));
client.setSubscriptionId("1234-5678-9012-3456");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class XMsClientRequestIdTests {

@BeforeClass
public static void setup() {
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost.:3000", new TokenCredentials(null, UUID.randomUUID().toString()));
client = new AutoRestAzureSpecialParametersTestClientImpl("http://localhost:3000", new TokenCredentials(null, UUID.randomUUID().toString()));
client.setSubscriptionId("1234-5678-9012-3456");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class HttpSuccessTests {

@BeforeClass
public static void setup() {
client = new AutoRestHeadTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestHeadTestServiceImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class HeadExceptionTests {

@BeforeClass
public static void setup() {
client = new AutoRestHeadExceptionTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestHeadExceptionTestServiceImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class LRORetrysTests {

@BeforeClass
public static void setup() {
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost:3000", null);
client.getAzureClient().setLongRunningOperationRetryTimeout(0);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class LROSADsTests {

@BeforeClass
public static void setup() {
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost:3000", null);
client.getAzureClient().setLongRunningOperationRetryTimeout(0);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void setup() {
customHeaders.put("x-ms-client-request-id", "9C4D50EE-2D56-4CD3-8152-34347DC9F2B0");
customHeaderInterceptor = new CustomHeaderInterceptor().addHeaderMap(customHeaders);

client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost.:3000", null, clientBuilder, new Retrofit.Builder());
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost:3000", null, clientBuilder, new Retrofit.Builder());
client.getClientInterceptors().add(customHeaderInterceptor);
client.getAzureClient().setLongRunningOperationRetryTimeout(0);
client.setLogLevel(HttpLoggingInterceptor.Level.BODY);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class LROsTests {

@BeforeClass
public static void setup() {
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestLongRunningOperationTestServiceImpl("http://localhost:3000", null);
client.getAzureClient().setLongRunningOperationRetryTimeout(0);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class PagingTests {

@BeforeClass
public static void setup() {
client = new AutoRestPagingTestServiceImpl("http://localhost.:3000", null);
client = new AutoRestPagingTestServiceImpl("http://localhost:3000", null);
client.setLogLevel(HttpLoggingInterceptor.Level.BASIC);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class GroupTests {

@BeforeClass
public static void setup() {
client = new MicrosoftAzureTestUrlImpl("http://localhost.:3000", null);
client = new MicrosoftAzureTestUrlImpl("http://localhost:3000", null);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ArrayTests {

@BeforeClass
public static void setup() {
client = new AutoRestSwaggerBATArrayServiceImpl("http://localhost.:3000");
client = new AutoRestSwaggerBATArrayServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DictionaryTests {

@BeforeClass
public static void setup() {
client = new AutoRestComplexTestServiceImpl("http://localhost.:3000");
client = new AutoRestComplexTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class PolymorphismTests {

@BeforeClass
public static void setup() {
client = new AutoRestComplexTestServiceImpl("http://localhost.:3000");
client = new AutoRestComplexTestServiceImpl("http://localhost:3000");
client.setLogLevel(HttpLoggingInterceptor.Level.BODY);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class PolymorphismrecursiveTests {

@BeforeClass
public static void setup() {
client = new AutoRestComplexTestServiceImpl("http://localhost.:3000");
client = new AutoRestComplexTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class PrimitiveTests {

@BeforeClass
public static void setup() {
client = new AutoRestComplexTestServiceImpl("http://localhost.:3000");
client = new AutoRestComplexTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ReadonlypropertyTests {

@BeforeClass
public static void setup() {
client = new AutoRestComplexTestServiceImpl("http://localhost.:3000");
client = new AutoRestComplexTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class DateOperationsTests {

@BeforeClass
public static void setup() {
client = new AutoRestDateTestServiceImpl("http://localhost.:3000");
client = new AutoRestDateTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class DatetimeOperationsTests {

@BeforeClass
public static void setup() {
client = new AutoRestDateTimeTestServiceImpl("http://localhost.:3000");
client = new AutoRestDateTimeTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DateTimeRfc1123OperationsTests {

@BeforeClass
public static void setup() {
client = new AutoRestRFC1123DateTimeTestServiceImpl("http://localhost.:3000");
client = new AutoRestRFC1123DateTimeTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class DictionaryTests {

@BeforeClass
public static void setup() {
client = new AutoRestSwaggerBATdictionaryServiceImpl("http://localhost.:3000");
client = new AutoRestSwaggerBATdictionaryServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class DurationOperationsTests {

@BeforeClass
public static void setup() {
client = new AutoRestDurationTestServiceImpl("http://localhost.:3000");
client = new AutoRestDurationTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class FilesTests {
@BeforeClass
public static void setup() {
OkHttpClient.Builder builder = new OkHttpClient.Builder().readTimeout(1, TimeUnit.MINUTES);
client = new AutoRestSwaggerBATFileServiceImpl("http://localhost.:3000", builder, new Retrofit.Builder());
client = new AutoRestSwaggerBATFileServiceImpl("http://localhost:3000", builder, new Retrofit.Builder());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class FormdataTests {

@BeforeClass
public static void setup() {
client = new AutoRestSwaggerBATFormDataServiceImpl("http://localhost.:3000");
client = new AutoRestSwaggerBATFormDataServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class HeaderOperationsTests {

@BeforeClass
public static void setup() {
client = new AutoRestSwaggerBATHeaderServiceImpl("http://localhost.:3000");
client = new AutoRestSwaggerBATHeaderServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class HttpRedirectsTests {

@BeforeClass
public static void setup() {
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost.:3000");
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class HttpRetryTests {

@BeforeClass
public static void setup() {
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost.:3000");
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class HttpServerFailureTests {

@BeforeClass
public static void setup() {
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost.:3000");
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class HttpSuccessTests {

@BeforeClass
public static void setup() {
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost.:3000");
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MultipleResponsesTests {

@BeforeClass
public static void setup() {
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost.:3000");
client = new AutoRestHttpInfrastructureTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class ModelFlatteningTests {

@BeforeClass
public static void setup() {
client = new AutoRestResourceFlatteningTestServiceImpl("http://localhost.:3000");
client = new AutoRestResourceFlatteningTestServiceImpl("http://localhost:3000");
client.setLogLevel(HttpLoggingInterceptor.Level.BODY);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ExplicitTests {

@BeforeClass
public static void setup() {
client = new AutoRestRequiredOptionalTestServiceImpl("http://localhost.:3000");
client = new AutoRestRequiredOptionalTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ImplicitTests {

@BeforeClass
public static void setup() {
client = new AutoRestRequiredOptionalTestServiceImpl("http://localhost.:3000");
client = new AutoRestRequiredOptionalTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class PathItemsTests {

@BeforeClass
public static void setup() {
client = new AutoRestUrlTestServiceImpl("http://localhost.:3000");
client = new AutoRestUrlTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class PathsTests {

@BeforeClass
public static void setup() {
client = new AutoRestUrlTestServiceImpl("http://localhost.:3000");
client = new AutoRestUrlTestServiceImpl("http://localhost:3000");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class QueriesTests {

@BeforeClass
public static void setup() {
client = new AutoRestUrlTestServiceImpl("http://localhost.:3000");
client = new AutoRestUrlTestServiceImpl("http://localhost:3000");
client.setLogLevel(HttpLoggingInterceptor.Level.HEADERS);
}

Expand Down

0 comments on commit a1ac974

Please sign in to comment.