diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/DatabaseInfo.java b/src/main/java/de/softwareforge/testing/postgres/embedded/DatabaseInfo.java index a212a2b..df26042 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/DatabaseInfo.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/DatabaseInfo.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static com.google.common.base.Preconditions.checkState; diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgres.java b/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgres.java index 245dd52..7eea6a6 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgres.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgres.java @@ -228,8 +228,8 @@ public DataSource createDefaultDataSource() throws SQLException { /** * Creates a {@link DataSource} with a specific user and database name. *

- * Creating the DataSource does not create the database or the user itself. This must be done by the calling code (e.g. with a {@link - * EmbeddedPostgresPreparer}). + * Creating the DataSource does not create the database or the user itself. This must be done by the calling code (e.g. with a + * {@link EmbeddedPostgresPreparer}). */ @Nonnull public DataSource createDataSource(@Nonnull String user, @Nonnull String databaseName) throws SQLException { @@ -912,9 +912,9 @@ public Builder setNativeBinaryManager(@Nonnull NativeBinaryManager nativeBinaryM /** * Use a locally installed PostgreSQL server for tests. The tests will still spin up a new instance and locate the data in the data directory but it - * will use the locally installed binaries for starting and stopping. Calling this method sets a binary manager, so it overrides {@link - * Builder#setNativeBinaryManager(NativeBinaryManager)}. Calling this method makes the builder ignore the {@link - * Builder#setInstallationBaseDirectory(File)} setting. + * will use the locally installed binaries for starting and stopping. Calling this method sets a binary manager, so it overrides + * {@link Builder#setNativeBinaryManager(NativeBinaryManager)}. Calling this method makes the builder ignore the + * {@link Builder#setInstallationBaseDirectory(File)} setting. * * @param directory A local directory that contains a standard PostgreSQL installation. The directory must exist and read and executable. * @return The builder itself. diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresPreparer.java b/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresPreparer.java index cdb9c89..bea67b8 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresPreparer.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresPreparer.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import jakarta.annotation.Nonnull; diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/FlywayPreparer.java b/src/main/java/de/softwareforge/testing/postgres/embedded/FlywayPreparer.java index 89205e4..bfc74e4 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/FlywayPreparer.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/FlywayPreparer.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static com.google.common.base.Preconditions.checkNotNull; @@ -48,15 +49,15 @@ public static FlywayPreparer forClasspathLocation(String... locations) { } /** - * Create a new, uninitialized preparer instance. Use {@link FlywayPreparer#addCustomizer(Consumer)} to modify the configuration for the {@link - * FluentConfiguration} object. + * Create a new, uninitialized preparer instance. Use {@link FlywayPreparer#addCustomizer(Consumer)} to modify the configuration for the + * {@link FluentConfiguration} object. */ public FlywayPreparer() { } /** - * Add a customizer instance. Each customizer is called once with the {@link FluentConfiguration} instance before setting the datasource and calling {@link - * FluentConfiguration#load()} and {@link Flyway#migrate()}. + * Add a customizer instance. Each customizer is called once with the {@link FluentConfiguration} instance before setting the datasource and calling + * {@link FluentConfiguration#load()} and {@link Flyway#migrate()}. * * @param customizer A {@link Consumer} instance. Must not be null. * @return This object. @@ -71,8 +72,8 @@ public FlywayPreparer addCustomizer(@Nonnull Consumer custo } /** - * Add customizer instances. Each customizer is called once with the {@link FluentConfiguration} instance before setting the datasource and calling {@link - * FluentConfiguration#load()} and {@link Flyway#migrate()}. + * Add customizer instances. Each customizer is called once with the {@link FluentConfiguration} instance before setting the datasource and calling + * {@link FluentConfiguration#load()} and {@link Flyway#migrate()}. * * @param customizers A set of {@link Consumer} instances. Must not be null. * @return This object. diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryLocator.java b/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryLocator.java index f1bdb52..a31aa34 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryLocator.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryLocator.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static com.google.common.base.Preconditions.checkState; @@ -28,8 +29,8 @@ /** * Locates a native binary on the Filesystem. If necessary, it should download the binary first from the network. *

- * Implementations of this class must implement {@link Object#hashCode()} and {@link Object#equals(Object)} and should implement {@link - * Object#toString()}. + * Implementations of this class must implement {@link Object#hashCode()} and {@link Object#equals(Object)} and should implement + * {@link Object#toString()}. * * @since 3.0 */ diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryManager.java b/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryManager.java index c0fef47..254cfc2 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryManager.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/NativeBinaryManager.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import jakarta.annotation.Nonnull; diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/TarXzCompressedBinaryManager.java b/src/main/java/de/softwareforge/testing/postgres/embedded/TarXzCompressedBinaryManager.java index 695bf17..6bb71f5 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/TarXzCompressedBinaryManager.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/TarXzCompressedBinaryManager.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static com.google.common.base.Preconditions.checkNotNull; diff --git a/src/main/java/de/softwareforge/testing/postgres/embedded/package-info.java b/src/main/java/de/softwareforge/testing/postgres/embedded/package-info.java index babd868..9e3b15e 100644 --- a/src/main/java/de/softwareforge/testing/postgres/embedded/package-info.java +++ b/src/main/java/de/softwareforge/testing/postgres/embedded/package-info.java @@ -14,4 +14,5 @@ /** * PostgreSQL management code. Contains all the test-framework independent pieces to start, stop and manage database instances and schemas. */ + package de.softwareforge.testing.postgres.embedded; diff --git a/src/main/java/de/softwareforge/testing/postgres/junit5/EmbeddedPgExtension.java b/src/main/java/de/softwareforge/testing/postgres/junit5/EmbeddedPgExtension.java index 5a33fa7..4257db6 100644 --- a/src/main/java/de/softwareforge/testing/postgres/junit5/EmbeddedPgExtension.java +++ b/src/main/java/de/softwareforge/testing/postgres/junit5/EmbeddedPgExtension.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static com.google.common.base.Preconditions.checkNotNull; diff --git a/src/main/java/de/softwareforge/testing/postgres/junit5/MultiDatabaseBuilder.java b/src/main/java/de/softwareforge/testing/postgres/junit5/MultiDatabaseBuilder.java index b1e9183..5da2933 100644 --- a/src/main/java/de/softwareforge/testing/postgres/junit5/MultiDatabaseBuilder.java +++ b/src/main/java/de/softwareforge/testing/postgres/junit5/MultiDatabaseBuilder.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import de.softwareforge.testing.postgres.embedded.DatabaseManager; @@ -62,8 +63,8 @@ public static DatabaseManager.Builder preparedInstance(@Non } /** - * Create a builder with standard initializations ({@link EmbeddedPostgres.Builder#withDefaults()}) applied and register a {@link - * EmbeddedPostgresPreparer} to set up the template database. + * Create a builder with standard initializations ({@link EmbeddedPostgres.Builder#withDefaults()}) applied and register a + * {@link EmbeddedPostgresPreparer} to set up the template database. * * @param databasePreparer A {@link EmbeddedPostgresPreparer} instance. Must not be null. * @return A {@link DatabaseManager.Builder} instance that can be customized further. diff --git a/src/main/java/de/softwareforge/testing/postgres/junit5/PostgresVersionCondition.java b/src/main/java/de/softwareforge/testing/postgres/junit5/PostgresVersionCondition.java index f67cabe..ca9d176 100644 --- a/src/main/java/de/softwareforge/testing/postgres/junit5/PostgresVersionCondition.java +++ b/src/main/java/de/softwareforge/testing/postgres/junit5/PostgresVersionCondition.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static com.google.common.base.Preconditions.checkNotNull; diff --git a/src/main/java/de/softwareforge/testing/postgres/junit5/RequirePostgresVersion.java b/src/main/java/de/softwareforge/testing/postgres/junit5/RequirePostgresVersion.java index 0faad09..7d3329f 100644 --- a/src/main/java/de/softwareforge/testing/postgres/junit5/RequirePostgresVersion.java +++ b/src/main/java/de/softwareforge/testing/postgres/junit5/RequirePostgresVersion.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import java.lang.annotation.ElementType; @@ -21,8 +22,8 @@ import org.junit.jupiter.api.extension.ExtendWith; /** - * {@code RequirePostgresVersion} signals the annotated test class or method that it only should execute if the PostgreSQL server is within a specific range. - * If the version is outside the range, the annotated test class or method is skipped. + * {@code RequirePostgresVersion} signals the annotated test class or method that it only should execute if the PostgreSQL server is within a specific range. If + * the version is outside the range, the annotated test class or method is skipped. *

* PostgreSQL versions are interpreted as described in the Versioning Policy and structured as * "major.minor.patch". Versions can be abbreviated, e.g. "13" is interpreted as "13.0.0". diff --git a/src/main/java/de/softwareforge/testing/postgres/junit5/SingleDatabaseBuilder.java b/src/main/java/de/softwareforge/testing/postgres/junit5/SingleDatabaseBuilder.java index 90853d3..e58e6bd 100644 --- a/src/main/java/de/softwareforge/testing/postgres/junit5/SingleDatabaseBuilder.java +++ b/src/main/java/de/softwareforge/testing/postgres/junit5/SingleDatabaseBuilder.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import de.softwareforge.testing.postgres.embedded.DatabaseManager; @@ -21,7 +22,6 @@ import javax.sql.DataSource; - /** * Create a new PostgreSQL server that supports a single database. */ @@ -64,8 +64,8 @@ public static DatabaseManager.Builder preparedInstance(@Non } /** - * Create a builder with standard initializations ({@link EmbeddedPostgres.Builder#withDefaults()}) applied and register a {@link - * EmbeddedPostgresPreparer} to set up the database. + * Create a builder with standard initializations ({@link EmbeddedPostgres.Builder#withDefaults()}) applied and register a + * {@link EmbeddedPostgresPreparer} to set up the database. * * @param databasePreparer A {@link EmbeddedPostgresPreparer} instance. Must not be null. * @return A {@link DatabaseManager.Builder} instance that can be customized further. diff --git a/src/main/java/de/softwareforge/testing/postgres/junit5/package-info.java b/src/main/java/de/softwareforge/testing/postgres/junit5/package-info.java index 47e5deb..b2d6118 100644 --- a/src/main/java/de/softwareforge/testing/postgres/junit5/package-info.java +++ b/src/main/java/de/softwareforge/testing/postgres/junit5/package-info.java @@ -14,4 +14,5 @@ /** * JUnit 5 integration code. Requires the Jupiter API on the class path. */ + package de.softwareforge.testing.postgres.junit5; diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/ClasspathLocatorTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/ClasspathLocatorTest.java index d697435..fada1e8 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/ClasspathLocatorTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/ClasspathLocatorTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static org.junit.jupiter.api.Assertions.assertEquals; @@ -26,8 +27,7 @@ import org.junit.jupiter.api.Test; /** - * Requires a compatible postgres binary on the classpath (as part of the dependencies in test - * scope in the project pom. + * Requires a compatible postgres binary on the classpath (as part of the dependencies in test scope in the project pom. */ public class ClasspathLocatorTest { @@ -51,6 +51,7 @@ public void testClasspathLocator() throws Exception { } static class ClasspathLocator implements NativeBinaryLocator { + private final String name; ClasspathLocator(String name) { diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/ConnectConfigTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/ConnectConfigTest.java index 2588419..c276cf5 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/ConnectConfigTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/ConnectConfigTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static com.google.common.base.Preconditions.checkState; diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseInfoTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseInfoTest.java index 7d9f27f..b15a205 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseInfoTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseInfoTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseManagerTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseManagerTest.java index e328506..d7333e9 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseManagerTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/DatabaseManagerTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresTest.java index 806566e..eb851c3 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/EmbeddedPostgresTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static org.junit.jupiter.api.Assertions.assertArrayEquals; @@ -21,6 +22,8 @@ import static org.junit.jupiter.api.Assertions.fail; import static org.postgresql.PGProperty.CONNECT_TIMEOUT; +import de.softwareforge.testing.postgres.junit5.RequirePostgresVersion; + import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; @@ -31,7 +34,6 @@ import java.util.Map; import javax.sql.DataSource; -import de.softwareforge.testing.postgres.junit5.RequirePostgresVersion; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.io.TempDir; import org.postgresql.ds.PGSimpleDataSource; diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/FlywayPreparerTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/FlywayPreparerTest.java index 908e6ad..6f44eca 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/FlywayPreparerTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/FlywayPreparerTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static org.junit.jupiter.api.Assertions.assertEquals; @@ -18,13 +19,14 @@ import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; +import de.softwareforge.testing.postgres.junit5.RequirePostgresVersion; + import java.io.IOException; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; -import de.softwareforge.testing.postgres.junit5.RequirePostgresVersion; import org.flywaydb.core.api.FlywayException; import org.junit.jupiter.api.Test; @@ -59,7 +61,7 @@ public void testMissing() throws Exception { .forClasspathLocation("db/non-existing") .addCustomizer(c -> c.failOnMissingLocations(true))) .build() - ) { + ) { IOException e = assertThrows(IOException.class, manager::start); diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/LocalDirectoryPostgresTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/LocalDirectoryPostgresTest.java index e9cf442..f650ec3 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/LocalDirectoryPostgresTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/LocalDirectoryPostgresTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; import static java.lang.String.format; diff --git a/src/test/java/de/softwareforge/testing/postgres/embedded/PostgresVersionTest.java b/src/test/java/de/softwareforge/testing/postgres/embedded/PostgresVersionTest.java index ed23936..391025d 100644 --- a/src/test/java/de/softwareforge/testing/postgres/embedded/PostgresVersionTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/embedded/PostgresVersionTest.java @@ -11,18 +11,19 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.embedded; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import org.junit.jupiter.api.Test; -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertFalse; -import static org.junit.jupiter.api.Assertions.assertTrue; - public class PostgresVersionTest { @Test diff --git a/src/test/java/de/softwareforge/testing/postgres/junit5/ExtendWithTest.java b/src/test/java/de/softwareforge/testing/postgres/junit5/ExtendWithTest.java index 2517f95..492af43 100644 --- a/src/test/java/de/softwareforge/testing/postgres/junit5/ExtendWithTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/junit5/ExtendWithTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static java.lang.String.format; diff --git a/src/test/java/de/softwareforge/testing/postgres/junit5/IsolationTest.java b/src/test/java/de/softwareforge/testing/postgres/junit5/IsolationTest.java index 40cb313..54610b2 100644 --- a/src/test/java/de/softwareforge/testing/postgres/junit5/IsolationTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/junit5/IsolationTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static de.softwareforge.testing.postgres.junit5.Junit5ClassMemberTest.createTable; diff --git a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5ClassMemberTest.java b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5ClassMemberTest.java index 3fa6912..94436fe 100644 --- a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5ClassMemberTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5ClassMemberTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static java.lang.String.format; diff --git a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5FlywayTest.java b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5FlywayTest.java index 2a615c9..7b28ec4 100644 --- a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5FlywayTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5FlywayTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5InstanceMemberTest.java b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5InstanceMemberTest.java index 865cdae..83a9032 100644 --- a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5InstanceMemberTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5InstanceMemberTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static de.softwareforge.testing.postgres.junit5.Junit5ClassMemberTest.createTable; diff --git a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5NestedTest.java b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5NestedTest.java index a1c6021..1cb2052 100644 --- a/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5NestedTest.java +++ b/src/test/java/de/softwareforge/testing/postgres/junit5/Junit5NestedTest.java @@ -11,6 +11,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package de.softwareforge.testing.postgres.junit5; import static de.softwareforge.testing.postgres.junit5.Junit5ClassMemberTest.createTable;