|
28 | 28 | import org.springframework.context.annotation.Configuration;
|
29 | 29 | import org.springframework.data.jpa.domain.sample.User;
|
30 | 30 | import org.springframework.data.jpa.repository.config.InfrastructureConfig;
|
31 |
| -import org.springframework.data.jpa.repository.support.QueryDslRepositorySupportTests.UserRepository; |
32 |
| -import org.springframework.data.jpa.repository.support.QueryDslRepositorySupportTests.UserRepositoryImpl; |
| 31 | +import org.springframework.data.jpa.repository.support.QueryDslRepositorySupportTests.QuerydslRepositorySupport; |
| 32 | +import org.springframework.data.jpa.repository.support.QueryDslRepositorySupportTests.QuerydslRepositorySupport; |
33 | 33 | import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
|
34 | 34 | import org.springframework.test.context.ContextConfiguration;
|
35 | 35 | import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
36 | 36 | import org.springframework.transaction.annotation.EnableTransactionManagement;
|
37 | 37 | import org.springframework.transaction.annotation.Transactional;
|
38 | 38 |
|
39 | 39 | /**
|
40 |
| - * Integration test for the setup of beans extending {@link QueryDslRepositorySupport}. |
| 40 | + * Integration test for the setup of beans extending {@link QuerydslRepositorySupport}. |
41 | 41 | *
|
42 | 42 | * @author Oliver Gierke
|
43 | 43 | * @author Thomas Darimont
|
44 | 44 | */
|
45 | 45 | @Transactional
|
46 | 46 | @ContextConfiguration
|
47 | 47 | @RunWith(SpringJUnit4ClassRunner.class)
|
48 |
| -public class QueryDslRepositorySupportIntegrationTests { |
| 48 | +public class QuerydslRepositorySupportIntegrationTests { |
49 | 49 |
|
50 | 50 | @Configuration
|
51 | 51 | @EnableTransactionManagement
|
@@ -98,7 +98,7 @@ public void createsReconfiguredRepoAccordingly() {
|
98 | 98 | assertThat(reconfiguredRepo.getEntityManager().getEntityManagerFactory(), is(em.getEntityManagerFactory()));
|
99 | 99 | }
|
100 | 100 |
|
101 |
| - static class ReconfiguringUserRepositoryImpl extends QueryDslRepositorySupport { |
| 101 | + static class ReconfiguringUserRepositoryImpl extends QuerydslRepositorySupport { |
102 | 102 |
|
103 | 103 | public ReconfiguringUserRepositoryImpl() {
|
104 | 104 | super(User.class);
|
|
0 commit comments