Skip to content

Commit 9ea4563

Browse files
author
eugenp
committed
moving some tests to individual packages to clean up the structure
1 parent 25a64f5 commit 9ea4563

File tree

9 files changed

+18
-13
lines changed

9 files changed

+18
-13
lines changed

httpclient/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
<dependency>
4646
<groupId>org.apache.httpcomponents</groupId>
4747
<artifactId>fluent-hc</artifactId>
48-
<version>4.3.3</version>
48+
<version>${httpclient.version}</version>
4949
</dependency>
5050

5151
<dependency>
5252
<groupId>org.apache.httpcomponents</groupId>
5353
<artifactId>httpmime</artifactId>
54-
<version>4.3.3</version>
54+
<version>${httpclient.version}</version>
5555
</dependency>
5656

5757
<dependency>
@@ -157,8 +157,8 @@
157157
<mysql-connector-java.version>5.1.30</mysql-connector-java.version>
158158

159159
<!-- logging -->
160-
<org.slf4j.version>1.7.6</org.slf4j.version>
161-
<logback.version>1.1.1</logback.version>
160+
<org.slf4j.version>1.7.7</org.slf4j.version>
161+
<logback.version>1.1.2</logback.version>
162162

163163
<!-- various -->
164164
<hibernate-validator.version>5.1.1.Final</hibernate-validator.version>
@@ -173,9 +173,9 @@
173173
<mockito.version>1.9.5</mockito.version>
174174

175175
<httpcore.version>4.3.2</httpcore.version>
176-
<httpclient.version>4.3.3</httpclient.version>
176+
<httpclient.version>4.3.4</httpclient.version>
177177

178-
<rest-assured.version>2.3.1</rest-assured.version>
178+
<rest-assured.version>2.3.2</rest-assured.version>
179179

180180
<!-- maven plugins -->
181181
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package org.baeldung.httpclient;
2+
3+
public class HttpClientConnectionManagementTest {
4+
//
5+
}

httpclient/src/test/java/org/baeldung/httpclient/HttpClientBasicLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/base/HttpClientBasicLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.base;
22

33
import static org.hamcrest.Matchers.equalTo;
44
import static org.hamcrest.Matchers.notNullValue;

httpclient/src/test/java/org/baeldung/httpclient/HttpClientBasicPostLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/base/HttpClientBasicPostLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.base;
22

33
import java.io.IOException;
44
import java.io.InputStream;

httpclient/src/test/java/org/baeldung/httpclient/HttpClientLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/base/HttpClientLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.base;
22

33
import static org.hamcrest.Matchers.emptyArray;
44
import static org.hamcrest.Matchers.not;

httpclient/src/test/java/org/baeldung/httpclient/HttpClientSandboxLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/base/HttpClientSandboxLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.base;
22

33
import java.io.IOException;
44
import java.io.InputStream;

httpclient/src/test/java/org/baeldung/httpclient/HttpClientUnshortenLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/rare/HttpClientUnshortenLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.rare;
22

33
import static org.hamcrest.Matchers.equalTo;
44
import static org.junit.Assert.assertThat;

httpclient/src/test/java/org/baeldung/httpclient/HttpClientAuthLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/sec/HttpClientAuthLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.sec;
22

33
import static org.hamcrest.Matchers.equalTo;
44
import static org.junit.Assert.assertThat;

httpclient/src/test/java/org/baeldung/httpclient/HttpClientCookieLiveTest.java renamed to httpclient/src/test/java/org/baeldung/httpclient/sec/HttpClientCookieLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.baeldung.httpclient;
1+
package org.baeldung.httpclient.sec;
22

33
import static org.hamcrest.Matchers.equalTo;
44
import static org.junit.Assert.assertThat;

0 commit comments

Comments
 (0)