moving some tests to individual packages to clean up the structure
This commit is contained in:
parent
25a64f5d4f
commit
9ea4563680
|
@ -45,13 +45,13 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>fluent-hc</artifactId>
|
||||
<version>4.3.3</version>
|
||||
<version>${httpclient.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpmime</artifactId>
|
||||
<version>4.3.3</version>
|
||||
<version>${httpclient.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
@ -157,8 +157,8 @@
|
|||
<mysql-connector-java.version>5.1.30</mysql-connector-java.version>
|
||||
|
||||
<!-- logging -->
|
||||
<org.slf4j.version>1.7.6</org.slf4j.version>
|
||||
<logback.version>1.1.1</logback.version>
|
||||
<org.slf4j.version>1.7.7</org.slf4j.version>
|
||||
<logback.version>1.1.2</logback.version>
|
||||
|
||||
<!-- various -->
|
||||
<hibernate-validator.version>5.1.1.Final</hibernate-validator.version>
|
||||
|
@ -173,9 +173,9 @@
|
|||
<mockito.version>1.9.5</mockito.version>
|
||||
|
||||
<httpcore.version>4.3.2</httpcore.version>
|
||||
<httpclient.version>4.3.3</httpclient.version>
|
||||
<httpclient.version>4.3.4</httpclient.version>
|
||||
|
||||
<rest-assured.version>2.3.1</rest-assured.version>
|
||||
<rest-assured.version>2.3.2</rest-assured.version>
|
||||
|
||||
<!-- maven plugins -->
|
||||
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
package org.baeldung.httpclient;
|
||||
|
||||
public class HttpClientConnectionManagementTest {
|
||||
//
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.base;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.hamcrest.Matchers.notNullValue;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.base;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.base;
|
||||
|
||||
import static org.hamcrest.Matchers.emptyArray;
|
||||
import static org.hamcrest.Matchers.not;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.base;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.rare;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertThat;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.sec;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertThat;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.httpclient;
|
||||
package org.baeldung.httpclient.sec;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertThat;
|
Loading…
Reference in New Issue