Skip to content

Commit af41d44

Browse files
Packages structure refactoreed
1 parent 5cb5ec8 commit af41d44

12 files changed

+13
-17
lines changed

src/test/java/com/pgasync/impl/ArrayConversionsTest.java renamed to src/test/java/com/github/pgasync/ArrayConversionsTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
package com.pgasync.impl;
1+
package com.github.pgasync;
22

3-
import com.github.pgasync.PgRow;
43
import com.pgasync.Row;
54
import org.junit.*;
65

src/test/java/com/pgasync/impl/AuthenticationTest.java renamed to src/test/java/com/github/pgasync/AuthenticationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package com.pgasync.impl;
1+
package com.github.pgasync;
22

33
import com.pgasync.ConnectionPool;
44
import com.pgasync.ResultSet;
55
import com.pgasync.SqlException;
66
import org.junit.ClassRule;
77
import org.junit.Test;
88

9-
import static com.pgasync.impl.DatabaseRule.createPoolBuilder;
9+
import static com.github.pgasync.DatabaseRule.createPoolBuilder;
1010
import static org.junit.Assert.assertEquals;
1111
import static org.junit.Assert.fail;
1212

src/test/java/com/pgasync/impl/ConnectionPoolingTest.java renamed to src/test/java/com/github/pgasync/ConnectionPoolingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

1717
import com.pgasync.ResultSet;
1818
import org.junit.After;

src/test/java/com/pgasync/impl/CustomConverterTest.java renamed to src/test/java/com/github/pgasync/CustomConverterTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
package com.pgasync.impl;
1+
package com.github.pgasync;
22

3-
import com.github.pgasync.Oid;
43
import com.pgasync.Converter;
54
import org.junit.AfterClass;
65
import org.junit.BeforeClass;

src/test/java/com/pgasync/impl/DatabaseRule.java renamed to src/test/java/com/github/pgasync/DatabaseRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.pgasync.impl;
1+
package com.github.pgasync;
22

33
import static java.lang.System.getenv;
44

src/test/java/com/pgasync/impl/ListenNotifyTest.java renamed to src/test/java/com/github/pgasync/ListenNotifyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.pgasync.impl;
1+
package com.github.pgasync;
22

33
import com.pgasync.ConnectionPool;
44
import com.pgasync.Listening;

src/test/java/com/pgasync/impl/ParametersBindingTest.java renamed to src/test/java/com/github/pgasync/ParametersBindingTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

17-
import com.github.pgasync.PgRow;
1817
import org.junit.AfterClass;
1918
import org.junit.BeforeClass;
2019
import org.junit.ClassRule;

src/test/java/com/pgasync/impl/PerformanceTest.java renamed to src/test/java/com/github/pgasync/PerformanceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

1717
import com.pgasync.Connection;
1818
import com.pgasync.ConnectionPool;

src/test/java/com/pgasync/impl/PipelineTest.java renamed to src/test/java/com/github/pgasync/PipelineTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

1717
import com.pgasync.Connection;
1818
import com.pgasync.ConnectionPool;

src/test/java/com/pgasync/impl/QueryResultTest.java renamed to src/test/java/com/github/pgasync/QueryResultTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

1717
import com.pgasync.ResultSet;
1818
import com.pgasync.Row;

src/test/java/com/pgasync/impl/TransactionTest.java renamed to src/test/java/com/github/pgasync/TransactionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

1717
import com.pgasync.ResultSet;
1818
import com.pgasync.SqlException;

src/test/java/com/pgasync/impl/TypeConverterTest.java renamed to src/test/java/com/github/pgasync/TypeConverterTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.pgasync.impl;
15+
package com.github.pgasync;
1616

17-
import com.github.pgasync.PgRow;
1817
import org.junit.ClassRule;
1918
import org.junit.Test;
2019

0 commit comments

Comments
 (0)