Rename configuration.interfaces package to config.interfaces

This commit renames the
org.springframework.test.context.configuration.interfaces package to
org.springframework.test.context.config.interfaces in order to colocate
"config" related tests under the same package.
This commit is contained in:
Sam Brannen
2026-03-02 16:07:43 +01:00
parent a87b2e0146
commit ab7a2c4e70
16 changed files with 19 additions and 19 deletions
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.test.context.ActiveProfiles;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import java.util.List;
import org.springframework.test.context.BootstrapWith;
import org.springframework.test.context.ContextCustomizerFactory;
import org.springframework.test.context.configuration.interfaces.BootstrapWithTestInterface.CustomTestContextBootstrapper;
import org.springframework.test.context.config.interfaces.BootstrapWithTestInterface.CustomTestContextBootstrapper;
import org.springframework.test.context.support.DefaultTestContextBootstrapper;
import static java.util.Collections.singletonList;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.beans.testfixture.beans.Employee;
import org.springframework.context.annotation.Bean;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.configuration.interfaces.ContextConfigurationTestInterface.Config;
import org.springframework.test.context.config.interfaces.ContextConfigurationTestInterface.Config;
/**
* @author Sam Brannen
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.ContextHierarchy;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import java.util.concurrent.atomic.AtomicInteger;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.test.annotation.DirtiesContext;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import javax.sql.DataSource;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.test.context.TestPropertySource;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.test.context.configuration.interfaces;
package org.springframework.test.context.config.interfaces;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.configuration.interfaces.WebAppConfigurationTestInterface.Config;
import org.springframework.test.context.config.interfaces.WebAppConfigurationTestInterface.Config;
import org.springframework.test.context.web.WebAppConfiguration;
/**