Skip to content

Commit

Permalink
Run test only on HsqlDb.
Browse files Browse the repository at this point in the history
JdbcRepositoryEmbeddedIntegrationTests no longer runs for all databases, since it doesn't tests anything specific to differen RDBMSs.
Therefore the test also got renamed.

See #1565
  • Loading branch information
schauder committed Jul 17, 2024
1 parent 9214f9a commit a28f471
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 177 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import org.springframework.data.annotation.Id;
import org.springframework.data.domain.Sort;
import org.springframework.data.jdbc.repository.support.JdbcRepositoryFactory;
import org.springframework.data.jdbc.testing.DatabaseType;
import org.springframework.data.jdbc.testing.EnabledOnDatabase;
import org.springframework.data.jdbc.testing.IntegrationTest;
import org.springframework.data.jdbc.testing.TestConfiguration;
import org.springframework.data.relational.core.mapping.Column;
Expand All @@ -50,7 +52,8 @@
* @author Jens Schauder
*/
@IntegrationTest
public class JdbcRepositoryEmbeddedIntegrationTests {
@EnabledOnDatabase(DatabaseType.HSQL)
public class JdbcRepositoryEmbeddedHsqlIntegrationTests {

@Configuration
@Import(TestConfiguration.class)
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit a28f471

Please sign in to comment.