|
1 | 1 | /*
|
2 |
| - * Copyright 2012-2023 the original author or authors. |
| 2 | + * Copyright 2012-2025 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
14 | 14 | * limitations under the License.
|
15 | 15 | */
|
16 | 16 |
|
17 |
| -package org.springframework.boot.autoconfigure.data.jpa; |
| 17 | +package org.springframework.boot.autoconfigure.data.web; |
18 | 18 |
|
19 | 19 | import org.junit.jupiter.api.Test;
|
20 | 20 |
|
21 | 21 | import org.springframework.boot.autoconfigure.AutoConfigurations;
|
22 | 22 | import org.springframework.boot.autoconfigure.TestAutoConfigurationPackage;
|
| 23 | +import org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration; |
23 | 24 | import org.springframework.boot.autoconfigure.data.jpa.city.City;
|
24 | 25 | import org.springframework.boot.autoconfigure.data.jpa.city.CityRepository;
|
25 |
| -import org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration; |
26 | 26 | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
27 | 27 | import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
|
28 | 28 | import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
|
42 | 42 | * @author Dave Syer
|
43 | 43 | * @author Stephane Nicoll
|
44 | 44 | */
|
45 |
| -class JpaWebAutoConfigurationTests { |
| 45 | +class SpringDataWebAutoConfigurationJpaTests { |
46 | 46 |
|
47 | 47 | private final WebApplicationContextRunner contextRunner = new WebApplicationContextRunner()
|
48 | 48 | .withConfiguration(AutoConfigurations.of(DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class,
|
|
0 commit comments