+ Repackaging test codebase from .config.java.* -> .context.annotation.*

This commit is contained in:
Chris Beams
2009-03-23 04:14:20 +00:00
parent b8f712621d
commit 3f196517f9
16 changed files with 23 additions and 24 deletions
@@ -1,5 +1,7 @@
/**
* Unit tests for classes in
* {@literal org.springframework.context.annotation.support}
* Unit tests for support classes related to
* {@link org.springframework.config.java.Configuration} class processing.
*
* @author Chris Beams
*/
package org.springframework.config.java.support;
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.basic;
package org.springframework.context.annotation.configuration;
import static org.junit.Assert.*;
import static org.springframework.beans.factory.support.BeanDefinitionBuilder.*;
@@ -1,4 +1,4 @@
package test.basic;
package org.springframework.context.annotation.configuration;
import org.junit.Before;
@@ -1,4 +1,4 @@
package test.basic;
package org.springframework.context.annotation.configuration;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
@@ -1,4 +1,4 @@
package test.basic;
package org.springframework.context.annotation.configuration;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
@@ -1,4 +1,4 @@
package test.basic;
package org.springframework.context.annotation.configuration;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.feature.atimport;
package org.springframework.context.annotation.configuration;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.basic;
package org.springframework.context.annotation.configuration;
import java.lang.annotation.Inherited;
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.feature.lifecycle.scoping;
package org.springframework.context.annotation.configuration;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
@@ -0,0 +1,10 @@
/**
* Integration tests for {@link org.springframework.config.java.Configuration}
* class processing.
*
* @author Chris Beams
* @see org.springframework.config.java.Configuration
* @see org.springframework.config.java.Bean
* @see org.springframework.config.java.support.ConfigurationClassPostProcessor
*/
package org.springframework.context.annotation.configuration;